.Header__logo img {
    filter: invert(1);
}

.Header__navbar {
    background: rgba(0, 0, 0, 0.50) !important;
}


/* FEATURED ARTICLES */
.Featured {
    background: #f7f9fc;
    padding: 60px 20px;
}

.Featured__container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.Featured__title {
    font-size: 32px;
    color: #0b1220;
    margin-bottom: 10px;
}

.Featured__subtitle {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 40px;
}

.Featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.Featured__card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
}

.Featured__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.Featured__card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.Featured__card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #111827;
}

.Featured__card p {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 14px;
}

.Featured__card a {
    color: #f97316;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}


.Footer__footerCopyrigt {
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
    color: #94a3b8;
    padding: 48px 0 24px;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.Footer__footerCopyrigt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(251, 191, 36, 0.5) 50%, 
        transparent
    );
}

.Footer__footerGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

/* Headings */
.Footer__footerCopyrigt h5 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    padding-bottom: 12px;
}

.Footer__footerCopyrigt h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #fbbf24, transparent);
}

/* Links */
.Footer__links a {
    display: block;
    margin-bottom: 10px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.Footer__links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #fbbf24;
}

.Footer__links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

.Footer__links a:hover::before {
    left: 0;
    opacity: 1;
}

/* Brand text */
.Footer__brand {
    max-width: 400px;
}

.Footer__copyright {
    margin-bottom: 12px;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 15px;
}

.Footer__powered {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.Footer__powered a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.Footer__powered a:hover {
    color: #fcd34d;
    border-bottom-color: #fbbf24;
}

/* Contact */
.Footer__contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.Footer__contact a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.Footer__contact a:hover {
    color: #fbbf24;
    border-bottom-color: #fbbf24;
}

/* Bottom Bar (if you want to add copyright at the bottom) */
.Footer__bottomBar {
    text-align: center;
    color: #64748b;
    font-size: 13px;
    padding-top: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .Footer__footerCopyrigt {
        padding: 40px 20px 20px;
    }
    
    .Footer__footerGrid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }
    
    .Footer__footerCopyrigt h5::after {
        left: 0;
    }
    
    .Footer__brand {
        max-width: 100%;
    }
    
    .Footer__contact p {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .Footer__links a:hover {
        padding-left: 0;
    }
    
    .Footer__links a::before {
        display: none;
    }
}

