/* AVO Components Styles - Секции, карточки, заголовки */

/* ========== SECTION TITLES ========== */

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
}

.section-title.centered {
    text-align: center;
    display: block;
}

.section-title.centered::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== VIEW ALL LINKS ========== */

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-accent);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    margin-top: var(--space-lg);
    text-decoration: none;
}

.view-all-link:hover {
    color: var(--color-accent-dark);
    gap: var(--space-md);
}

.view-all-link.centered {
    display: flex;
    justify-content: center;
    margin-top: var(--space-2xl);
}

/* ========== HERO SECTION ========== */

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom right, #1d4ed8, #312e81, #0f172a);
    color: white;
}

.hero-section .hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.4), transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.hero-section .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hero-section .slide.active {
    opacity: 1;
    z-index: 20;
}

.hero-section .slide-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    pointer-events: auto;
}

@media (min-width: 768px) {
    .hero-section .slide-inner {
        padding: 0 3rem;
    }
}

.hero-section .slide-content {
    max-width: 56rem;
    opacity: 0;
    transform: translateY(2.5rem);
    transition: all 1s ease 0.3s;
}

.hero-section .slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-section .slide-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(147, 197, 253, 0.3);
    color: #bfdbfe;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.hero-section .slide-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .hero-section .slide-title {
        font-size: 4.5rem;
    }
}

.hero-section .slide-title .gradient-text {
    background: linear-gradient(to right, #93c5fd, #a5f3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #93c5fd; /* Fallback цвет */
    display: inline-block;
    padding: 0.1em 0;
}

.hero-section .slide-title .gradient-text-green {
    background: linear-gradient(to right, #34d399, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #34d399; /* Fallback цвет */
    display: inline-block;
    padding: 0.1em 0;
}

/* Fallback для браузеров без поддержки gradient-text */
@supports not (-webkit-background-clip: text) {
    .hero-section .slide-title .gradient-text {
        color: #93c5fd;
        background: none;
    }
    .hero-section .slide-title .gradient-text-green {
        color: #34d399;
        background: none;
    }
}

.hero-section .slide-desc {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 42rem;
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-section .slide-desc {
        font-size: 1.5rem;
    }
}

.hero-section .slide-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-section .slide-buttons {
        flex-direction: row;
    }
}

.hero-section .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .btn-primary:hover {
    background: #f0f9ff;
    transform: translateY(-2px);
}

.hero-section .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 2px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-section .btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Slider Dots */
.hero-section .slider-dots {
    position: absolute;
    bottom: 8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 40;
    display: flex;
    gap: 1rem;
}

.hero-section .slider-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section .slider-dot.active {
    background: white;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.hero-section .slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* ========== QUICK ACCESS CARDS ========== */

.quick-access-section {
    position: relative;
    margin-top: -6rem;
    z-index: 30;
    padding-bottom: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.quick-access-grid {
    max-width: var(--container-xl);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .quick-access-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.quick-access-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.quick-access-card:hover {
    transform: translateY(-0.5rem);
}

.quick-access-card .card-bg-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    margin-right: -1.5rem;
    margin-top: -1.5rem;
    pointer-events: none;
    transition: all 0.5s ease;
    transform: rotate(-15deg);
    opacity: 0.08;
}

.quick-access-card:hover .card-bg-icon {
    transform: scale(1.3) rotate(-20deg);
    opacity: 0.25;
}

.quick-access-card .card-content {
    position: relative;
    z-index: 10;
}

.quick-access-card .card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: white;
}

.quick-access-card .card-icon.blue { background: #2563eb; }
.quick-access-card .card-icon.purple { background: #9333ea; }
.quick-access-card .card-icon.green { background: #059669; }

.quick-access-card .card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.quick-access-card h3 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    padding-right: 2rem;
    line-height: 1.3;
}

.quick-access-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.quick-access-card .card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.quick-access-card .card-link.blue { color: #2563eb; }
.quick-access-card .card-link.purple { color: #9333ea; }
.quick-access-card .card-link.green { color: #059669; }

.quick-access-card:hover .card-link {
    gap: 0.75rem;
}

/* ========== NEWS & EVENTS SECTION ========== */

.news-events-section {
    padding: 4rem 0;
    background: #f8fafc;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.news-events-grid {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .news-events-grid {
        grid-template-columns: 7fr 5fr;
    }
}

/* News Column */
.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.news-header h2 {
    font-family: var(--font-family-heading);
    font-size: 1.875rem;
    font-weight: 900;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.news-header .title-line {
    height: 4px;
    width: 3rem;
    background: #2563eb;
    margin-top: 0.5rem;
    border-radius: 9999px;
}

.news-header .all-news-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.news-header .all-news-link:hover {
    color: #1d4ed8;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    cursor: pointer;
}

.news-item-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-item-inner {
        flex-direction: row;
    }
}

.news-image {
    width: 100%;
    height: 8rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #e2e8f0;
    flex-shrink: 0;
    position: relative;
}

@media (min-width: 768px) {
    .news-image {
        width: 12rem;
    }
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 58, 138, 0);
    transition: background 0.3s ease;
}

.news-item:hover .news-image-overlay {
    background: rgba(30, 58, 138, 0.2);
}

.news-content {
    flex: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.news-meta .date {
    color: #2563eb;
}

.news-meta .dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.news-title {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-item:hover .news-title {
    color: #2563eb;
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

/* Calendar Column */
.calendar-card {
    border-radius: 1rem;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.calendar-card .calendar-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 20%, #1e40af 40%, #3b82f6 50%, #1e40af 60%, #0f172a 80%);
    background-attachment: fixed;
    opacity: 0.9;
}

.calendar-card .calendar-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
    background-attachment: fixed;
}

.calendar-card .calendar-glow {
    position: absolute;
    top: -6rem;
    left: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(100px);
}

.calendar-card .calendar-glow-2 {
    position: absolute;
    top: 0;
    right: -5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 50%;
    filter: blur(48px);
}

.calendar-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.calendar-header h2 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.calendar-header svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
}

.calendar-list {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calendar-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.calendar-date {
    background: rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
    min-width: 70px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    transition: background 0.3s ease;
}

.calendar-item:hover .calendar-date {
    background: #2563eb;
}

.calendar-date .month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.calendar-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.calendar-info h4 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.calendar-item:hover .calendar-info h4 {
    color: #60a5fa;
}

.calendar-info .location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calendar-info .location svg {
    width: 0.75rem;
    height: 0.75rem;
}

.calendar-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.calendar-all-link {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.calendar-all-link:hover {
    background: white;
    color: #0f172a;
}

/* ========== LEADERSHIP SECTION ========== */

.leadership-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.leader-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
}

.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.leader-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--color-gray-200);
    transition: border-color var(--transition-base);
}

.leader-card:hover .leader-photo {
    border-color: var(--color-accent);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    position: relative;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info h4 {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.leader-role {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-accent);
    margin-bottom: var(--space-sm);
}

.leader-info p {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ========== PARTNERS SECTION ========== */

.partners-section {
    padding: var(--space-3xl) 0;
    background: var(--color-gray-50);
    border-top: 1px solid var(--color-gray-200);
    overflow: hidden;
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    padding: 10px 0;
}

.partners-track {
    display: flex;
    gap: var(--space-3xl);
    animation: scrollPartners 60s linear infinite;
    width: max-content;
}

.partner-logo {
    flex-shrink: 0;
    padding: var(--space-md) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.partner-logo:hover {
    background: var(--color-white);
    color: var(--color-accent);
    transform: translateY(-2px);
}

@keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== DISEASE NAVIGATOR ========== */

.disease-navigator {
    padding: 6rem 0;
    background: linear-gradient(to bottom, white, #eff6ff);
    position: relative;
    overflow: hidden;
}

.disease-navigator .genome-container {
    position: absolute;
    width: 600px;
    height: 600px;
    opacity: 0.4;
    pointer-events: none;
}

.disease-navigator .genome-left {
    top: -100px;
    left: -150px;
}

@media (min-width: 768px) {
    .disease-navigator .genome-left {
        left: 0;
    }
}

.disease-navigator .genome-right {
    top: 200px;
    right: -100px;
    display: none;
}

@media (min-width: 1024px) {
    .disease-navigator .genome-right {
        display: block;
    }
}

.disease-navigator .nav-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 10;
    text-align: center;
}

.disease-navigator .nav-label {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.disease-navigator h2 {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .disease-navigator h2 {
        font-size: 3rem;
    }
}

.disease-navigator .nav-desc {
    color: #475569;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

.disease-navigator .search-wrapper {
    max-width: 48rem;
    margin: 0 auto 2.5rem;
    position: relative;
}

.disease-navigator .search-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, #2563eb, #06b6d4);
    border-radius: 9999px;
    filter: blur(8px);
    opacity: 0.25;
    transition: opacity 1s ease;
}

.disease-navigator .search-wrapper:focus-within .search-glow {
    opacity: 0.5;
}

.disease-navigator .search-inner {
    position: relative;
}

.disease-navigator .search-input {
    width: 100%;
    padding: 1.25rem 2rem 1.25rem 3.5rem;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #1e293b;
    transition: all 0.3s ease;
}

.disease-navigator .search-input:focus {
    outline: none;
}

.disease-navigator .search-input::placeholder {
    color: #94a3b8;
}

.disease-navigator .search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    color: #3b82f6;
}

.disease-navigator .search-btn {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    bottom: 0.5rem;
    padding: 0 1.5rem;
    background: #0f172a;
    color: white;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    display: none;
}

@media (min-width: 640px) {
    .disease-navigator .search-btn {
        display: block;
    }
}

.disease-navigator .search-btn:hover {
    background: #2563eb;
}

.disease-navigator .disease-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 56rem;
    margin: 0 auto;
}

.disease-navigator .disease-tag {
    padding: 0.625rem 1.5rem;
    background: white;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 700;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disease-navigator .disease-tag:hover {
    border-color: #3b82f6;
    color: #2563eb;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 1024px) {
    .leaders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .leader-card {
        max-width: 300px;
        margin: 0 auto;
    }
}
