﻿.news-container {
    max-width: 1336px;
    margin: 150px auto;
    padding: 24px 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 1.05rem;
}

.news-header-section {
    position: relative;
    overflow: hidden;
}
.news-header-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: border-box; /* overlay xanh đậm, có thể chỉnh lại màu/opacity */
    z-index: 1;
}
.news-title, .news-lead {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.85), 0 1px 0 #222;
}
.news-title {
    font-weight: bold;
    font-size: 2.5rem;
    letter-spacing: 2px;
}
.news-lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in {
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.animate-fade-in-delay {
    animation: fadeInUp 1.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

/* Featured News Card Styles */
.featured-news-thumb img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #e0e0e0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    background: #fff;
    transition: box-shadow 0.2s, transform 0.2s;
}
.featured-news-thumb img:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.04);
}
.btn-social {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 4px;
    background: #222;
    color: #fff;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: none;
}
.btn-social:hover {
    background: #2956c7;
    color: #fff;
    box-shadow: 0 4px 16px rgba(41,86,199,0.15);
}

.custom-news-btn {
    background: transparent;
    color: #444 !important;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    padding: 8px 32px;
    font-weight: bold;
    box-shadow: none;
    transition: color 0.18s, transform 0.15s, text-decoration 0.18s;
    outline: none;
}
.custom-news-btn:hover, .custom-news-btn:focus {
    color: #111 !important;
    text-decoration: underline;
    transform: scale(1.04);
    background: transparent;
}

.team-member {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.team-member:hover, .team-member:focus-within {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
    background: #fff;
    z-index: 2;
}
.team-member img {
    transition: box-shadow 0.3s, transform 0.3s;
}
.team-member:hover img, .team-member:focus-within img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.03);
}
.team-member img.rounded-circle {
    transition: box-shadow 0.3s, transform 0.3s;
}
.team-member:hover img.rounded-circle,
.team-member:focus-within img.rounded-circle,
.team-member a:hover img.rounded-circle,
.team-member a:focus img.rounded-circle {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    transform: scale(1.07);
}
.team-member:hover .featured-news-thumb img,
.team-member:focus-within .featured-news-thumb img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    transform: scale(1.07);
}
.team-member h4, .news-card .card-title {
    transition: none;
}
.team-member:hover h4,
.team-member:focus-within h4,
.news-card:hover .card-title {
    color: inherit;
    transform: none;
    text-decoration: none;
}

.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: visible;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.news-card .featured-news-thumb img {
    transition: box-shadow 0.3s, transform 0.3s;
}
.news-card:hover .featured-news-thumb img {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18) !important;
    transform: scale(1.07);
}
.news-card .card-title {
    transition: none;
}
.news-card:hover .card-title {
    color: inherit;
    transform: none;
    text-decoration: none;
}

.see-all-news-link {
    font-style: italic !important;
    color: #888 !important;
    opacity: 0.85 !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: color 0.18s, opacity 0.18s;
}
.see-all-news-link:hover, .see-all-news-link:focus {
    color: #444 !important;
    opacity: 1 !important;
    text-decoration: underline !important;
}
