/* =======================================================
   ABOUT-STYLE.CSS - UCfERI About Page
   PRIMARY COLORS: Blue #5349d6, Red #c24132
   Full mobile compatibility
   ======================================================= */

:root {
    --blue: #03224d;
    --red: #c24132;
    --blue-light: #03224d;
    --blue-dark: #03224d;
    --red-light: #d15446;
    --red-dark: #a13528;
    --dark: #1e293b;
    --text: #334155;
    --text-light: #64748b;
    --white: #ffffff;
    --light-bg: #f8fafc;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 28px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


/* Typography */
h1, h2, h3, h4 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* ===================================================================== */
/* PAGE HEADER / HERO SECTION - PERFECT CENTERING */
/* ===================================================================== */
.page-header {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

/* Slideshow Container */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #0a0a1a;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

/* Overlay - darker to cover transitions */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 25, 36, 0.85) 0%, rgba(9, 7, 26, 0.85) 100%);
    z-index: 1;
}

/* Hero Content Container - PERFECT CENTERING */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===================================================================== */
/* REDUCED WHITE GLOWING TEXT EFFECTS */
/* ===================================================================== */

/* H1 - Reduced Glow */
.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 
        0 0 5px rgba(255, 255, 255, 0.4),
        0 0 10px rgba(255, 255, 255, 0.2);
    font-family: 'Source Serif Pro', serif;
    letter-spacing: 1px;
}

/* Paragraph - Reduced Glow */
.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-family: inherit;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

/* Breadcrumb with minimal glow */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    color: var(--red);
    font-weight: 600;
}

.breadcrumb i {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Simple fade animations - no gaps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================================================== */
/* SLIDE TRANSITION ENHANCEMENTS - SMOOTH WITH NO GAPS */
/* ===================================================================== */
.hero-slide.active .hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.hero-slide.active h1 {
    animation: slideInFromLeft 0.5s ease-out;
}

.hero-slide.active p {
    animation: slideInFromRight 0.5s ease-out 0.15s both;
}

.hero-slide.active .breadcrumb {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================================================== */
/* SLIDER NAVIGATION DOTS */
/* ===================================================================== */
.slider-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 16px;
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    background: var(--red);
    width: 25px;
    border-radius: 10px;
}

.slider-dot:hover {
    transform: scale(1.2);
    background: var(--red);
}

/* ===================================================================== */
/* SCROLL INDICATOR */
/* ===================================================================== */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
    cursor: pointer;
    opacity: 0;
    animation: fadeInScroll 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-scroll-indicator span {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    opacity: 0.6;
    animation: bounceDot 1.6s infinite ease-in-out;
}

.hero-scroll-indicator span:nth-child(1) { animation-delay: 0s; }
.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounceDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.3;
    }
    30% {
        transform: translateY(-8px);
        opacity: 0.8;
    }
}

@keyframes fadeInScroll {
    from {
        opacity: 0;
        right: 20px;
    }
    to {
        opacity: 1;
        right: 40px;
    }
}

/* Font Awesome fallback */
.breadcrumb i.fa-chevron-right:before {
    content: "›";
    font-size: 1.1rem;
    font-weight: bold;
}

/* ===================================================================== */
/* RESPONSIVE DESIGN */
/* ===================================================================== */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-content {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .page-header p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .slider-nav-dots {
        bottom: 25px;
        padding: 6px 14px;
        gap: 10px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .slider-dot.active {
        width: 22px;
    }
    
    .hero-scroll-indicator {
        bottom: 25px;
        right: 25px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .hero-scroll-indicator {
        bottom: 20px;
        right: 20px;
    }
}

/* ===================================================================== */
/* UTILITY CLASSES */
/* ===================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================================== */
/* About Content Section - WITH STYLED BULLET POINTS */
/* =============================================================== */
.about-content-section {
    padding: 70px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.about-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--red);
}

.about-text p {
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.about-text strong {
    color: var(--blue);
}

/* =============================================================== */
/* Shared Section Headers */
/* =============================================================== */
.section-header {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 14px;
    padding-bottom: 15px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--red);
}

.section-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: clamp(0.98rem, 1.5vw, 1.08rem);
    line-height: 1.7;
}

/* =============================================================== */
/* Styled Bullet Points - Mission Values */
/* =============================================================== */
.mission-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 35px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 20px;
    background: var(--light-bg);
    border-radius: 14px;
    transition: var(--transition);
    border-left: 4px solid transparent;
    cursor: pointer;
}

.value-item:hover {
    transform: translateX(6px);
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-left-color: var(--blue);
}

.value-bullet {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.value-item:hover .value-bullet {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
}

.value-bullet i {
    font-size: 1.3rem;
    color: var(--white);
}

.value-content {
    flex: 1;
}

.value-content h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--dark);
    font-family: 'Source Serif Pro', serif;
    font-weight: 700;
}

.value-content p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* About Image Styles */
.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 12px 20px;
    background: var(--light-bg);
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* =============================================================== */
/* Responsive Design for Bullet Points */
/* =============================================================== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-values-list {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 34px;
    }

    .section-title {
        font-size: 1.7rem;
        padding-bottom: 12px;
    }
    
    .about-text h2 {
        font-size: 1.6rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .mission-values-list {
        gap: 12px;
        margin-top: 25px;
    }
    
    .value-item {
        padding: 10px 16px;
        gap: 14px;
    }
    
    .value-bullet {
        width: 40px;
        height: 40px;
    }
    
    .value-bullet i {
        font-size: 1.1rem;
    }
    
    .value-content h4 {
        font-size: 1rem;
    }
    
    .value-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .value-item {
        padding: 8px 14px;
        gap: 12px;
    }
    
    .value-bullet {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .value-bullet i {
        font-size: 0.95rem;
    }
    
    .value-content h4 {
        font-size: 0.95rem;
    }
    
    .value-content p {
        font-size: 0.8rem;
    }
}

/* =============================================================== */
/* Timeline Section - Vertical with Connected Design */
/* =============================================================== */

.timeline-section {
    padding: 70px 0;
    background: var(--light-bg, #f5f7fa);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Main vertical line */
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--blue, #03224d), var(--red, #c24132), #e0e8f0);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Year Circle - Connected to line */
.timeline-year {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue, #03224d), var(--blue-dark, #021a3a));
    color: var(--white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    flex-shrink: 0;
    z-index: 2;
}

/* Connector line from year circle to content */
.timeline-year::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--red, #c24132);
    transform: translateY(-50%);
}

/* Card Content */
.timeline-content {
    margin-left: 20px;
    flex: 1;
    background: var(--white, #fff);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--red, #c24132);
    position: relative;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Optional: Dot at connection point on the line */
.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 28px;
    width: 12px;
    height: 12px;
    background: var(--red, #c24132);
    border-radius: 50%;
    border: 2px solid var(--white, #fff);
    box-shadow: 0 0 0 3px var(--blue, #03224d);
    z-index: 3;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark, #2c3e50);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-light, #4a5568);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 16px;
        top: 24px;
        width: 10px;
        height: 10px;
    }
    
    .timeline-year {
        width: 48px;
        height: 48px;
        font-size: 0.8rem;
    }
    
    .timeline-year::after {
        width: 12px;
    }
    
    .timeline-content {
        margin-left: 12px;
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1rem;
    }
    
    .timeline-content p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .timeline-year {
        width: 42px;
        height: 42px;
        font-size: 0.7rem;
    }
    
    .timeline-year::after {
        width: 8px;
    }
    
    .timeline-content {
        margin-left: 8px;
        padding: 12px;
    }
}
/* ==================================================================== */
/* Leadership & Advisory Sections */
/* ==================================================================== */
.leadership-section,
.advisory-section {
    padding: 70px 0;
    background: var(--white);
}

.advisory-section {
    background: var(--light-bg);
}

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

.team-member {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 18px;
    border: 3px solid var(--red);
    box-shadow: var(--shadow-sm);
    background: var(--light-bg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.member-info h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--dark);
}

.member-role {
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}



/* ==================================================================== */
/* Services Section */
/* ==================================================================== */
.services-snapshot {
    padding: 70px 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.service-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--blue);
}

.service-card i {
    font-size: 2rem;
    color: var(--blue);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
}

.services-note {
    text-align: center;
    padding: 16px;
    background: rgba(194, 65, 50, 0.06);
    border-radius: 12px;
}

.services-note p {
    color: var(--text);
    font-size: 0.9rem;
}

.services-note strong {
    color: var(--red);
}

/* ==================================================================== */
/* Abbreviations Guide — Full CSS                                        */
/* Includes: grid, cards, toolbar, search, load-more, download, PDF     */
/* ==================================================================== */

/* ── Section wrapper ──────────────────────────────────────────────── */
.abbreviations-section {
    padding: 70px 0;
    background: var(--white);
}

/* ── Toolbar (search + download) ─────────────────────────────────── */
.abbr-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Search wrapper */
.abbr-search-wrap {
    position: relative;
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 380px;
}

.abbr-search-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue);
    opacity: 0.55;
    pointer-events: none;
}

.abbr-search {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.abbr-search::placeholder {
    color: #aab0bf;
}

.abbr-search:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(3, 34, 77, 0.09);
}

/* Download PDF button */
.abbr-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--blue);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 10px rgba(3, 34, 77, 0.18);
    white-space: nowrap;
    font-family: inherit;
}

.abbr-download-btn:hover {
    background: var(--red, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.25);
}

.abbr-download-btn:active {
    transform: translateY(0);
}

.abbr-download-btn svg {
    flex-shrink: 0;
}

/* ── Stats bar ────────────────────────────────────────────────────── */
.abbr-stats {
    margin: 14px 0 4px;
    font-size: 0.82rem;
    color: var(--text-light, #7a8494);
    font-style: italic;
    letter-spacing: 0.01em;
}

/* ── Grid ─────────────────────────────────────────────────────────── */
.abbreviations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 8px;
}

/* ── Cards ────────────────────────────────────────────────────────── */
.abbreviation-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 18px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease, opacity 0.25s ease;
    border-top: 4px solid var(--blue);

    /* entrance animation */
    opacity: 0;
    transform: translateY(10px);
}

/* JS adds this class to trigger the entrance */
.abbreviation-card.abbr-card-visible {
    opacity: 1;
    transform: translateY(0);
}

.abbreviation-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-top-color: var(--red, #c0392b);
}

/* Dashed-top "manual" variant */
.abbreviation-card.is-manual {
    border-top-style: dashed;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

/* Code pill */
.abbreviation-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(3, 34, 77, 0.08);
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-bottom: 12px;
}

/* Meaning text */
.abbreviation-meaning {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

/* Search highlight */
.abbreviation-meaning mark,
.abbreviation-code mark {
    background: rgba(255, 220, 40, 0.45);
    color: inherit;
    border-radius: 2px;
    padding: 0 1px;
}

/* ── No results state ─────────────────────────────────────────────── */
.abbr-no-results {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 48px 20px;
    text-align: center;
    color: var(--text-light, #7a8494);
}

.abbr-no-results svg {
    opacity: 0.35;
}

.abbr-no-results p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* ── Load controls ────────────────────────────────────────────────── */
.abbr-load-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Shared button base */
.abbr-load-btn,
.abbr-collapse-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
    border: 2px solid var(--blue);
}

/* Load More — filled */
.abbr-load-btn {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 2px 10px rgba(3, 34, 77, 0.14);
}

.abbr-load-btn:hover {
    background: transparent;
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(3, 34, 77, 0.12);
}

/* Show Less — outlined */
.abbr-collapse-btn {
    background: transparent;
    color: var(--blue);
}

.abbr-collapse-btn:hover {
    background: rgba(3, 34, 77, 0.06);
    transform: translateY(-2px);
}

/* Remaining badge on Load More */
.abbr-load-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.abbr-load-btn:hover .abbr-load-badge {
    background: rgba(3, 34, 77, 0.1);
    border-color: rgba(3, 34, 77, 0.2);
    color: var(--blue);
}

/* ── Legend note ─────────────────────────────────────────────────── */
.abbreviations-note {
    margin-top: 28px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(3, 34, 77, 0.05);
    border: 1px solid rgba(3, 34, 77, 0.12);
    color: var(--text);
    line-height: 1.7;
    font-size: 0.9rem;
}

.abbreviations-note strong {
    color: var(--blue);
    display: inline-block;
    margin-right: 6px;
}

.abbr-legend-dashed {
    display: inline-block;
    border-top: 2.5px dashed var(--blue);
    padding-top: 2px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 0.02em;
}

/* ================================================================== */
/* Responsive — Abbreviations                                          */
/* ================================================================== */

@media (max-width: 992px) {
    .abbreviations-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .abbreviations-section {
        padding: 50px 0;
    }

    .abbr-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .abbr-search-wrap {
        max-width: 100%;
    }

    .abbr-download-btn {
        justify-content: center;
    }

    .abbreviations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .abbreviation-card {
        padding: 16px 14px;
    }

    .abbreviation-meaning {
        font-size: 0.88rem;
    }

    .abbreviations-note {
        padding: 16px 18px;
        font-size: 0.88rem;
    }

    .abbr-load-btn,
    .abbr-collapse-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .abbreviations-section {
        padding: 40px 0;
    }

    .abbreviations-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .abbreviation-code {
        font-size: 0.85rem;
    }

    .abbreviations-note {
        padding: 14px 15px;
        font-size: 0.85rem;
    }

    .abbr-load-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .abbr-load-btn,
    .abbr-collapse-btn {
        justify-content: center;
        width: 100%;
    }
}
