/* ===== NEWS PAGE STYLES - GENODENT BRAND ===== */
/* ===== GENODENT BRAND COLORS ===== */
:root {
    /* Primary Brand Colors */
    --genodent-primary: #009245;        /* Shamrock Green */
    --genodent-secondary: #4F4F4F;      /* Dark Gray */

    /* Color Variations */
    --genodent-primary-light: #00b854;
    --genodent-primary-dark: #007a38;
    --genodent-secondary-light: #6a6a6a;
    --genodent-secondary-dark: #3a3a3a;

    /* Gradients */
    --genodent-gradient-primary: linear-gradient(135deg, #009245 0%, #00b854 100%);
    --genodent-gradient-secondary: linear-gradient(135deg, #4F4F4F 0%, #6a6a6a 100%);
    --genodent-gradient-mixed: linear-gradient(135deg, #009245 0%, #4F4F4F 100%);

    /* Shadow Colors */
    --genodent-shadow-primary: rgba(0, 146, 69, 0.15);
    --genodent-shadow-secondary: rgba(79, 79, 79, 0.15);
}

/* Base Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ===== HERO SECTION ===== */
.hero-bg-image-section {
    position: relative;
    min-height: 90vh;
    padding-top: 80px;
    width: 100%;
    background: linear-gradient(135deg, #009245 0%, #4F4F4F 100%);
    background-image:
        url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?auto=format&fit=crop&w=1950&q=80'),
        url('https://images.unsplash.com/photo-1553531580-77b2a0cd3c8b?auto=format&fit=crop&q=80'),
        url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?auto=format&fit=crop&q=80');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    direction: rtl;
    overflow: hidden;
    transition: background-position 0.3s cubic-bezier(.4,1,.7,1);
    background-attachment: scroll;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,146,69,0.9) 0%, rgba(79,79,79,0.8) 100%);
    opacity: 0.85;
    z-index: 1;
}

.hero-bg-image-section .container {
    position: relative;
    z-index: 2;
}

.news-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: newsFloat 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

@keyframes newsFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    50% { transform: translateY(-8px) rotate(0deg); }
    75% { transform: translateY(-5px) rotate(-2deg); }
}

.hero-bg-title {
    color: #fff;
    font-size: 2.7rem;
    font-weight: 900;
    text-shadow: 0 4px 24px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}

.hero-bg-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-bg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-btn.main-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Hover effects only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .hero-bg-btn.main-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }
}

.hero-bg-btn.ghost-btn {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@media (hover: hover) and (pointer: fine) {
    .hero-bg-btn.ghost-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-bg-title {
        font-size: 2rem;
        text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    .hero-bg-desc {
        font-size: 1rem;
        text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    }
    .hero-bg-image-section {
        min-height: 85vh;
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .hero-bg-image-section {
        min-height: 80vh;
        padding-top: 60px;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

@media (max-width: 600px) {
    .hero-bg-title {
        font-size: 1.3rem;
        text-shadow: 0 3px 15px rgba(0,0,0,0.4);
    }
    .hero-bg-btn {
        padding: 10px 18px;
        font-size: 1rem;
    }
    .news-hero-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* ===== NEWS CATEGORIES SECTION ===== */
.news-categories-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.news-category-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.news-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--genodent-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* Hover effect removed for news category cards */

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--genodent-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px var(--genodent-shadow-primary);
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.category-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ===== SEARCH SECTION ===== */
.news-search-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.news-search-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.search-icon {
    position: absolute;
    left: 20px;
    z-index: 2;
    color: var(--genodent-secondary);
    font-size: 1.1rem;
}

.news-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 50px 15px 50px;
    font-size: 1rem;
    background: transparent;
    color: #333;
}

.news-search-input::placeholder {
    color: #999;
}

.news-search-btn {
    background: var(--genodent-gradient-primary);
    color: white;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover effect removed for news search button */

.news-clear-btn {
    position: absolute;
    right: 100px;
    background: #dc3545;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Hover effect removed for news clear button */

/* ===== SEARCH RESULTS HEADER ===== */
.search-results-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 146, 69, 0.1);
    border: 1px solid rgba(0, 146, 69, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.search-results-icon {
    width: 60px;
    height: 60px;
    background: var(--genodent-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.search-results-content h3 {
    color: var(--genodent-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.search-results-content p {
    color: var(--genodent-secondary);
    margin-bottom: 0;
}

/* ===== NEWS LISTING SECTION ===== */
.news-listing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* News Card Modern Design */
.news-card-modern {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 146, 69, 0.1);
}

.news-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 146, 69, 0.2);
}

/* News Image */
.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-image {
    transform: scale(1.1);
}

.news-overlay-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card-modern:hover .news-overlay-gradient {
    opacity: 1;
}

/* Category Badge */
.news-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--genodent-gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 146, 69, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.news-card-modern:hover .news-category-badge {
    transform: scale(1.05);
}

.news-category-badge i {
    font-size: 0.9rem;
}

/* News Content */
.news-content-wrapper {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Meta Info */
.news-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-date-item,
.news-time-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

.news-date-item i,
.news-time-item i {
    color: var(--genodent-primary);
    font-size: 0.9rem;
}

/* News Title */
.news-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title a:hover {
    color: var(--genodent-primary);
}

/* News Excerpt */
.news-excerpt-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Read More Button */
.btn-news-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 146, 69, 0.1) 0%, rgba(0, 182, 84, 0.1) 100%);
    border: 1px solid rgba(0, 146, 69, 0.3);
    color: var(--genodent-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-news-read:hover {
    background: var(--genodent-gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateX(-5px);
}

.btn-news-read i {
    transition: transform 0.3s ease;
}

.btn-news-read:hover i {
    transform: translateX(-3px);
}

/* ===== PAGINATION ===== */
.news-pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===== BRAND PAGINATION (NEWS) ===== */
.pagination-nav {
    display: flex;
    justify-content: center;
    direction: rtl;
}

.pagination-nav .pagination {
    margin: 0;
    gap: 8px;
}

.pagination-nav .page-item .page-link {
    color: var(--genodent-primary);
    border: 1px solid rgba(0, 146, 69, 0.25);
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 14px;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 6px 14px var(--genodent-shadow-primary);
}

/* Hover effects only for non-touch devices */
@media (hover: hover) and (pointer: fine) {
    .pagination-nav .page-item .page-link:hover {
        color: #ffffff;
        background: var(--genodent-gradient-primary);
        border-color: transparent;
        outline: none;
    }
}

.pagination-nav .page-item .page-link:focus {
    color: #ffffff;
    background: var(--genodent-gradient-primary);
    border-color: transparent;
    outline: none;
}

.pagination-nav .page-item.active .page-link {
    color: #ffffff;
    background: var(--genodent-gradient-primary);
    border-color: transparent;
}

.pagination-nav .page-item.disabled .page-link {
    color: #9aa0a6;
    background-color: #f3f4f6;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

.pagination-nav .page-link i {
    vertical-align: middle;
}

/* ===== EMPTY STATE / NO NEWS STATE ===== */
.news-empty-state,
.no-news-container {
    text-align: center;
    padding: 80px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 146, 69, 0.1);
}

.empty-state-icon,
.no-news-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 146, 69, 0.1) 0%, rgba(0, 182, 84, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 3s infinite;
}

.empty-state-icon i,
.no-news-icon i {
    font-size: 3.5rem;
    color: var(--genodent-primary);
    opacity: 0.7;
}

.news-empty-state h3,
.no-news-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
}

.news-empty-state p,
.no-news-text {
    font-size: 1.1rem;
    color: #777;
    margin: 0 0 30px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* All News Button */
.btn-all-news {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--genodent-gradient-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 146, 69, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-all-news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00b854 0%, #007a38 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-all-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 146, 69, 0.35);
    color: white;
}

.btn-all-news:hover::before {
    opacity: 1;
}

.btn-all-news span,
.btn-all-news i {
    position: relative;
    z-index: 1;
}

.btn-all-news i {
    transition: transform 0.3s ease;
}

.btn-all-news:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Animation for Pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 146, 69, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(0, 146, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 146, 69, 0);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
    .news-card-modern {
        margin-bottom: 25px;
    }

    .news-card-title {
        font-size: 1.2rem;
    }

    .news-image-wrapper {
        height: 220px;
    }

    .no-news-icon,
    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .no-news-icon i,
    .empty-state-icon i {
        font-size: 3rem;
    }

    .no-news-title,
    .news-empty-state h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .news-hero-title {
        font-size: 2.2rem;
    }

    .news-hero-desc {
        font-size: 1.1rem;
    }

    .news-hero-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .news-category-card {
        padding: 25px 15px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .news-search-wrapper {
        padding: 15px;
    }

    .news-search-input {
        padding: 12px 40px 12px 40px;
        font-size: 0.9rem;
    }

    .news-search-btn {
        padding: 12px 20px;
    }

    .news-card-modern {
        margin-bottom: 25px;
    }

    .news-image-wrapper {
        height: 200px;
    }

    .news-content-wrapper {
        padding: 20px;
    }

    .news-card-title {
        font-size: 1.1rem;
    }

    .news-excerpt-text {
        font-size: 0.95rem;
    }

    .btn-all-news {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .news-category-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        top: 15px;
        right: 15px;
    }

    .no-news-container,
    .news-empty-state {
        padding: 60px 15px;
    }

    .no-news-icon,
    .empty-state-icon {
        width: 80px;
        height: 80px;
    }

    .no-news-icon i,
    .empty-state-icon i {
        font-size: 2.5rem;
    }

    .no-news-title,
    .news-empty-state h3 {
        font-size: 1.3rem;
    }

    .no-news-text,
    .news-empty-state p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .news-hero-title {
        font-size: 1.8rem;
    }

    .news-hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .news-search-group {
        flex-direction: column;
        border-radius: 15px;
    }

    .news-search-input {
        padding: 15px 20px;
    }

    .news-search-btn {
        width: 100%;
        border-radius: 0 0 15px 15px;
    }

    .news-clear-btn {
        position: static;
        width: 100%;
        border-radius: 0;
        margin-top: 5px;
    }

    .news-image-wrapper {
        height: 180px;
    }

    .news-content-wrapper {
        padding: 18px;
    }

    .news-meta-info {
        gap: 10px;
    }

    .news-date-item,
    .news-time-item {
        font-size: 0.8rem;
    }

    .btn-news-read {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* ===== FEATURED NEWS SECTION ===== */
.featured-news-section {
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.featured-news-wrapper {
    position: relative;
    z-index: 2;
}

/* Decorative Blobs for Featured Section */
.featured-blob-1 {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 146, 69, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 15s infinite linear;
    z-index: -1;
}

.featured-blob-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 182, 84, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    animation: blob-animation 12s infinite linear reverse;
    z-index: -1;
}

@keyframes blob-animation {
    0% {
        border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    }
    25% {
        border-radius: 52% 48% 55% 45% / 35% 43% 57% 65%;
    }
    50% {
        border-radius: 38% 62% 75% 25% / 55% 23% 77% 45%;
    }
    75% {
        border-radius: 48% 52% 45% 55% / 65% 53% 47% 35%;
    }
    100% {
        border-radius: 42% 58% 65% 35% / 45% 33% 67% 55%;
    }
}

/* Section Title Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: var(--genodent-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    width: 80%;
    max-width: 300px;
}

.separator-line {
    height: 2px;
    background: linear-gradient(to right, rgba(0, 146, 69, 0), rgba(0, 146, 69, 0.5));
    flex-grow: 1;
}

.separator-line:last-child {
    background: linear-gradient(to left, rgba(0, 146, 69, 0), rgba(0, 146, 69, 0.5));
}

.separator-icon {
    width: 40px;
    height: 40px;
    background: var(--genodent-gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    box-shadow: 0 10px 20px rgba(0, 146, 69, 0.2);
}

.separator-icon i {
    color: white;
    font-size: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured News Card */
.featured-news-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 146, 69, 0.1);
}

.featured-news-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 146, 69, 0.25);
}

/* Featured Image */
.featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-news-card:hover .featured-image {
    transform: scale(1.15) rotate(2deg);
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,146,69,0.8) 0%, rgba(0,0,0,0) 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.featured-news-card:hover .featured-overlay {
    opacity: 1;
}

/* Featured Badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.featured-news-card:hover .featured-badge {
    transform: scale(1.1) rotate(-5deg);
}

.featured-badge i {
    font-size: 0.9rem;
}

/* Featured Content */
.featured-content-wrapper {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Featured Meta Info */
.featured-meta-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.featured-date-item,
.featured-time-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 500;
}

.featured-date-item i,
.featured-time-item i {
    color: var(--genodent-primary);
    font-size: 0.9rem;
}

/* Featured Title */
.featured-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.featured-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-card-title a:hover {
    color: var(--genodent-primary);
}

/* Featured Excerpt */
.featured-excerpt-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Featured Read Button */
.btn-featured-read {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 146, 69, 0.1) 0%, rgba(0, 182, 84, 0.1) 100%);
    border: 2px solid rgba(0, 146, 69, 0.3);
    color: var(--genodent-primary);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-featured-read:hover {
    background: var(--genodent-gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(0, 146, 69, 0.3);
}

.btn-featured-read i {
    transition: transform 0.3s ease;
}

.btn-featured-read:hover i {
    transform: translateX(-3px);
}

/* Responsive Design for Featured Section */
@media (max-width: 991px) {
    .featured-news-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-image-wrapper {
        height: 200px;
    }

    .featured-card-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .featured-news-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .featured-news-card {
        margin-bottom: 25px;
    }

    .featured-image-wrapper {
        height: 180px;
    }

    .featured-content-wrapper {
        padding: 20px;
    }

    .featured-card-title {
        font-size: 1.1rem;
    }

    .featured-excerpt-text {
        font-size: 0.95rem;
    }

    .featured-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        top: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .featured-image-wrapper {
        height: 160px;
    }

    .featured-content-wrapper {
        padding: 18px;
    }

    .featured-meta-info {
        gap: 10px;
    }

    .featured-date-item,
    .featured-time-item {
        font-size: 0.8rem;
    }

    .btn-featured-read {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
