/* Section */
.news-section {
    margin-top: 10px;
    padding: 60px 0;
    background: #f9fafb;
    z-index: 200;
}

/* Container */
.news-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    color:var(--color-primary ,  #1f2937);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title span {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--color-primary ,#16a34a);
    margin: 0 auto;
}

/* Cards Layout */
.news-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-bottom: 50px;
}

.news-col {
    width: 100%;
    max-width: 360px;
}

/* Card */
.news-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--color-primary-light , rgba(0, 0, 0, 0.08));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px var(--color-primary, rgba(0, 0, 0, 0.12));
}

/* Image */
.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Content */
.news-content {
    padding: 20px;
}

.news-content h5 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--color-primary ,#111827);
}

.news-content h5 a {
    text-decoration: none;
    color: inherit;
}

.news-content p {
    font-size: 14px;
    color: var(--color-primary ,#6b7280);
    margin: 0;
}

/* Explore Button */
.explore-btn-wrapper {
    text-align: center;
}

.explore-btn {
    display: inline-block;
    padding: 12px 32px;
    border: 2px solid var(--color-primary ,#16a34a);
    color: var(--color-primary ,#16a34a);
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.explore-btn:hover {
    background: var(--color-primary ,#16a34a);
    color: #ffffff;
}
.blog-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.blog-wrapper .image-area a {
    position: relative;
    z-index: 1;
    display: block;
}
.blog-wrapper .image-area a::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.78%, #000000 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
.blog-wrapper .author-area {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}
.blog-wrapper .author-area .text {
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
}
.blog-wrapper .author-area .text span {
    font-size: 16px;
}
.blog-wrapper .content-area {
    position: absolute;
    z-index: 1;
    bottom: 34px;
    left: 34px;
    max-width: 340px;
}
.blog-wrapper .blog-meta {
    margin-bottom: 12px;
}
.blog-wrapper .blog-meta ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-wrapper .blog-meta ul li {
    padding: 0;
    margin: 0;
    color: var(--color-white);
    font-weight: 500;
}
.blog-wrapper .blog-meta ul li.mid {
    width: 5px;
    height: 5px;
    line-height: 5px;
    border-radius: 50%;
    background: var(--color-white);
}
.blog-wrapper .blog-title {
    text-transform: capitalize;
    letter-spacing: -0.64px;
    font-weight: 500;
}
.blog-wrapper .blog-title a {
    color: var(--color-white);
}
.blog-wrapper .tags {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin: 0;
}
.blog-wrapper .tags li {
    padding: 0;
    margin: 0;
}
.blog-wrapper .tags li a {
    display: block;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1;
    padding: 8px 12px;
    background: rgba(239, 239, 239, 0.1);
    border-radius: 4px;
}

.blog-wrapper2 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.blog-wrapper2 .image-area a {
    position: relative;
    z-index: 1;
    display: block;
}
.blog-wrapper2 .image-area a::after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 27.58%, #000000 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}
.blog-wrapper2 .content-area {
    position: absolute;
    z-index: 1;
    bottom: 34px;
    left: 34px;
    max-width: 508px;
}
.blog-wrapper2 .content-area .blog-meta {
    margin-bottom: 15px;
}
.blog-wrapper2 .content-area .blog-meta p {
    margin-bottom: 0;
    color: var(--color-white);
    font-weight: 500;
}
.blog-wrapper2 .content-area .blog-title {
    font-size: 36px;
    text-transform: uppercase;
}
.blog-wrapper2 .content-area .blog-title a {
    color: var(--color-white);
}
.blog-wrapper2 .content-area .author-area {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-wrapper2 .content-area .author-area li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-weight: 500;
    padding: 0;
    margin: 0;
}
.blog-wrapper2 .content-area .author-area li p {
    color: var(--color-primary);
}
.blog-wrapper2 .content-area .author-area li.mid {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: block;
    background: var(--color-primary);
}
.blog-wrapper2.list-style {
    display: flex;
    gap: 30px;
    align-items: center;
}
.blog-wrapper2.list-style .image-area {
    flex-basis: 25%;
}
.blog-wrapper2.list-style .image-area a::after {
    display: none;
}
.blog-wrapper2.list-style .content-area {
    position: unset;
    flex-basis: 75%;
}
.blog-wrapper2.list-style .content-area .blog-meta {
    margin-bottom: 10px;
}
.blog-wrapper2.list-style .content-area .blog-meta p {
    color: var(--color-body-1);
    line-height: 1;
}
.blog-wrapper2.list-style .content-area .blog-title {
    font-size: 22px;
    margin-bottom: 18px;
}
.blog-wrapper2.list-style .content-area .blog-title a {
    color: var(--color-primary);
}
.blog-wrapper2.list-style .content-area .author-area li {
    color: var(--color-body-1);
}

.blog-wrapper3:hover .text-btn {
    color: var(--color-primary);
}
.blog-wrapper3 .content-area {
    padding-top: 30px;
    padding-right: 35px;
}
.blog-wrapper3 .content-area .meta {
    margin-bottom: 15px;
}

.rts-blog-area.wild .section-top-area {
    display: flex;
    justify-content: space-between;
}
.rts-blog-area.wild .section-top-area .button-area {
    max-width: 471px;
}
.rts-blog-area.wild .section-top-area .button-area .desc {
    margin-bottom: 20px;
}
.rts-blog-area.wild .section-top-area .button-area .text-btn {
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-primary);
}
.rts-blog-area.wild .small-post-area {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Parent dropdown */
.dropdownParent {
    position: relative;
    width: max-content;
}
.dropdownParent:hover{
    color: black !important;
}
.desktop-head{
    color: var(--color-primary);
}
.desktop-head:hover{
    color: black!important;
}
.dropdown-toggle:hover{
    color: black !important;

}
/* Dropdown menu */
.dropdownChildren {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 6px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);*/
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    color: var(--color-primary , black);

}
.dropdownChildren li:hover{
    color: var(--color-primary-hover);
}
.dropdownChildren li a:hover{
    color:var(--color-primary-hover ,black);
}
/* Show dropdown on hover */
.dropdownParent:hover .dropdownChildren {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}
.social:hover{
    background:black!important;
}
/* Dropdown items */
.dropdownChildren li {
    list-style: none;
}

/* Dropdown links */
.dropdownChildren li a {
    display: block;
    padding: 10px 20px;
    /*color: #222;*/
    font-size: 15px;
    text-decoration: none;
    width: 100%;
    white-space: nowrap;
    /*transition: background 0.2s ease, color 0.2s ease;*/
}
.navigation li:hover{
    background:none ;
}

/*multicolor theme template for letsGo*/
.text-gray-700{
    color:var(--color-primary ,black) !important;
}
.text-black-50{
    color: var(--color-primary , black) !important;
}
.mainSearchForm input::placeholder {
    color: var(--color-primary ,black)!important;
}
..text-gray-701{
    color: var(--color-primary , black) !important;
}
.text-gray-701:hover{
    background: var(--color-primary-light , green) !important;
}
.text-white *, .text-white a, .text-white .read-more, .text-white .counter-text-wrap .count-text{
    color:var(--color-primary ,white) !important;
}
.bg-green-500{
    background-color: var(--color-primary , green) !important;
}
.bg-green-500:hover{
    background-color: var(--color-primary-hover , green) !important;
}

.fa-info-circle:before{
    color: var(--color-primary ,green) !important;
}