/* ======================================================================
   SILAKBO - Modern Neumorphism (Soft UI) Design System
   ----------------------------------------------------------------------
   Fonts:  Title/Subtitle -> Merriweather (serif)
           Body           -> Inter (sans-serif)
   ====================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== LOADING SCREEN OVERLAY ===== */
.silakbo-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.silakbo-loader-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.silakbo-loader-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: contain;
    animation: loaderLogoPulse 1.4s ease-in-out infinite;
}
.silakbo-loader-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #fde8d4;
    border-top-color: #fd7e14;
    animation: loaderRingSpin 1s linear infinite;
    position: absolute;
}
.silakbo-loader-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.silakbo-loader-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: #fd7e14;
    margin: 0;
    animation: loaderTitleFade 1.6s ease-in-out infinite;
}
.silakbo-loader-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 0;
    letter-spacing: 0.05em;
}
@keyframes loaderRingSpin { to { transform: rotate(360deg); } }
@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.92); opacity: 0.85; }
}
@keyframes loaderTitleFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

:root {
    /* Brand */
    --primary-color: #e46917;
    --primary-hover: #c95a0f;
    --primary-soft:  #fbe7d8;

    /* Text */
    --text-dark:  #2b2d33;
    --text-muted: #6c757d;
    --text-light: #adb5bd;

    /* Neumorphism surfaces */
    --bg-base:    #eef1f5;
    --bg-card:    #eef1f5;
    --bg-white:   #ffffff;
    --shadow-dark:  #c8ccd4;
    --shadow-light:#ffffff;
    --card-radius: 1.25rem;
    --pill-radius: 999px;

    /* Fonts */
    --font-heading: 'Merriweather', Georgia, serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;

    --transition-speed: 0.25s;
}

/* ----------------------------------------------------------------------
   Base
   ---------------------------------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-base);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.65;
    margin: 0;
}

main { flex: 1; }

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color var(--transition-speed);
}
a:hover { color: var(--primary-color); }

p { font-family: var(--font-body); }

/* ----------------------------------------------------------------------
   Neumorphism (Soft UI) surfaces
   ---------------------------------------------------------------------- */
.soft-card {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: 8px 8px 18px var(--shadow-dark), -8px -8px 18px var(--shadow-light);
    transition: box-shadow var(--transition-speed), transform var(--transition-speed);
    overflow: hidden;
}
.soft-card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light);
}

.soft-inset {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: inset 5px 5px 10px var(--shadow-dark), inset -5px -5px 10px var(--shadow-light);
}

.soft-btn {
    background: var(--bg-card);
    border: none;
    border-radius: var(--pill-radius);
    padding: 0.6rem 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 5px 5px 12px var(--shadow-dark), -5px -5px 12px var(--shadow-light);
    transition: box-shadow var(--transition-speed), color var(--transition-speed);
    cursor: pointer;
}
.soft-btn:hover { color: var(--primary-color); }
.soft-btn:active {
    box-shadow: inset 4px 4px 8px var(--shadow-dark), inset -4px -4px 8px var(--shadow-light);
}

/* ----------------------------------------------------------------------
   Buttons (legacy aliases kept for admin compatibility)
   ---------------------------------------------------------------------- */
.btn-orange, .btn-soft-primary {
    background-color: var(--primary-color);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: var(--pill-radius);
    padding: 0.55rem 1.5rem;
    box-shadow: 0 6px 14px rgba(228,105,23,0.35);
    transition: background var(--transition-speed), transform var(--transition-speed);
}
.btn-orange:hover, .btn-soft-primary:hover,
.btn-orange:active, .btn-soft-primary:active {
    background-color: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-orange {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background: transparent;
    border-radius: var(--pill-radius);
}
.btn-outline-orange:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.badge-orange, .badge-soft-primary {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ----------------------------------------------------------------------
   Header 1 (top bar)
   ---------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--bg-white);
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* Header 1 - main nav row */
.header-main {
    background: var(--primary-color);
    padding: 0.35rem 0;
}
.header-main .navbar-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    letter-spacing: 1px;
}

/* Mini branding block (left side of nav) */
.navbar-brand-mini {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    padding: 0.2rem 0;
    margin-right: 0.75rem;
    flex-shrink: 0;
}
.navbar-brand-mini:hover { text-decoration: none; }
.navbar-mini-logo {
    height: 32px;
    width: 32px;
    object-fit: contain;
    border-radius: 6px;
    background: rgba(255,255,255,0.15);
    padding: 2px;
    flex-shrink: 0;
}
.navbar-mini-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.navbar-mini-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 0.5px;
}
.navbar-mini-subtitle {
    font-family: var(--font-body);
    font-size: 0.55rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
@media (max-width: 1199.98px) {
    .navbar-mini-subtitle { display: none; }
}
@media (max-width: 575.98px) {
    .navbar-mini-logo { height: 28px; width: 28px; }
    .navbar-mini-title { font-size: 0.9rem; }
}
.header-main .nav-link {
    color: rgba(255,255,255,0.92) !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.76rem;
    padding: 0.4rem 0.65rem !important;
    border-radius: var(--pill-radius);
    position: relative;
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: nowrap;
}
/* Hover effect on nav links */
.header-main .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width var(--transition-speed);
}
.header-main .nav-link:hover::after,
.header-main .nav-link.active::after { width: 60%; }
.header-main .nav-link:hover,
.header-main .nav-link.active {
    color: #fff !important;
}
.header-main .social-icon {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    transition: background var(--transition-speed), transform var(--transition-speed);
}
.header-main .social-icon:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
.header-main .login-link {
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-main .login-link:hover { color: #fff; opacity: 0.85; }
.header-main .search-form .form-control {
    border: none;
    border-radius: var(--pill-radius);
    background: rgba(255,255,255,0.9);
}
.header-main .search-form .btn { border-radius: var(--pill-radius); }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .header-main .nav-link { border-radius: 0; }
    .header-main .nav-link::after { display: none; }
}

/* ----------------------------------------------------------------------
   Hero (landing page) - 3D Carousel Slider
   ---------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 56.25vw;
    max-height: calc(100vh - var(--header-h, 55px));
    min-height: 300px;
    overflow: hidden;
    background: #111;
}

/* ===== Slider container ===== */
.hero-section .slider {
    height: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* ===== Slider list + items ===== */
.hero-section .slider .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}
.hero-section .slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Dark gradient overlay for text readability */
.hero-section .slider .list .item .item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-section .slider .list .item .content {
    position: absolute;
    top: 20px;
    left: 6%;
    width: 520px;
    max-width: 55%;
    z-index: 50;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.hero-section .slider .list .item .content .type {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #e46917;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(228,105,23,0.4);
}
.hero-section .slider .list .item .content .title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hero-section .slider .list .item .content .description {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    margin-top: 0.35rem;
    max-width: 460px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-section .slider .list .item .content .meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-section .slider .list .item .content .meta i {
    color: #e46917;
    margin-right: 0.3rem;
}
.hero-section .slider .list .item .content .meta .meta-author {
    display: inline-flex;
    align-items: center;
}
.hero-section .slider .list .item .content .meta .meta-date {
    display: inline-flex;
    align-items: center;
}
.hero-section .slider .list .item .button {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.85rem;
}
.hero-section .slider .list .item .button .btn-read,
.hero-section .slider .list .item .button .btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}
.hero-section .slider .list .item .button .btn-read {
    background: #e46917;
    color: #fff;
    border: 2px solid #e46917;
    box-shadow: 0 4px 20px rgba(228,105,23,0.4);
}
.hero-section .slider .list .item .button .btn-read::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.hero-section .slider .list .item .button .btn-read:hover {
    background: #fff;
    color: #e46917;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(228,105,23,0.5);
    letter-spacing: 2px;
}
.hero-section .slider .list .item .button .btn-read:hover::after { left: 100%; }
.hero-section .slider .list .item .button .btn-explore {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
}
.hero-section .slider .list .item .button .btn-explore:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-3px);
    letter-spacing: 2px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* ===== Thumbnail Section ===== */
.hero-section .thumbnail {
    position: absolute;
    bottom: 25px;
    right: 30px;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 18px;
}
.hero-section .thumbnail .item {
    width: 150px;
    height: 210px;
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-section .thumbnail .item:hover {
    transform: translateY(-12px) scale(1.08);
}
.hero-section .thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.4s ease, border 0.4s ease;
    border: 3px solid transparent;
}
.hero-section .thumbnail .item:hover img {
    border-color: #e46917;
    box-shadow: 0 12px 35px rgba(228, 105, 23, 0.5);
}

/* ===== nextPrevArrows Section ===== */
.hero-section .nextPrevArrows {
    position: absolute;
    bottom: 25px;
    right: 30px;
    z-index: 101;
    display: flex;
    gap: 12px;
    align-items: center;
    transform: translateY(-240px);
}
.hero-section .nextPrevArrows button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e46917;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(228, 105, 23, 0.4);
}
.hero-section .nextPrevArrows button:hover {
    background-color: #fff;
    color: #e46917;
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* ===== Animation Part ===== */
.hero-section .slider .list .item:nth-child(1) {
    z-index: 1;
}

/* Hide content & overlay for ALL non-active slides — prevents overlapping/double content */
.hero-section .slider .list .item .content {
    opacity: 0;
    pointer-events: none;
}
.hero-section .slider .list .item .item-overlay {
    opacity: 0;
}
/* Show content & overlay ONLY for the active (first) slide */
.hero-section .slider .list .item:nth-child(1) .content {
    opacity: 1;
    pointer-events: auto;
    z-index: 50;
}
.hero-section .slider .list .item:nth-child(1) .item-overlay {
    opacity: 1;
}
/* Ensure buttons are always clickable on active slide */
.hero-section .slider .list .item:nth-child(1) .content .button,
.hero-section .slider .list .item:nth-child(1) .content .button a {
    pointer-events: auto;
    z-index: 60;
}

/* Animation for next button click */
.hero-section .slider.next .list .item:nth-child(1) img {
    width: 150px;
    height: 210px;
    position: absolute;
    bottom: 25px;
    right: 30px;
    left: auto;
    border-radius: 16px;
    animation: showImage .8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
@keyframes showImage {
    0% {
        bottom: 25px;
        right: 30px;
        left: auto;
        width: 150px;
        height: 210px;
        border-radius: 16px;
        filter: blur(10px) brightness(0.6);
        transform: scale(0.9);
    }
    50% {
        filter: blur(3px) brightness(0.85);
    }
    100% {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        filter: blur(0) brightness(1);
        transform: scale(1);
    }
}

.hero-section .slider.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
.hero-section .slider.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
        transform: translateY(30px) scale(0.5);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-section .slider.next .thumbnail {
    animation: effectNext .8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
@keyframes effectNext {
    from {
        transform: translateX(150px);
        opacity: 0.5;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for prev button click */
.hero-section .slider.prev .list .item:nth-child(2) {
    z-index: 2;
}
.hero-section .slider.prev .list .item:nth-child(2) img {
    animation: outFrame 0.8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame {
    0% {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        filter: blur(0) brightness(1);
        transform: scale(1);
    }
    50% {
        filter: blur(3px) brightness(0.85);
    }
    100% {
        width: 150px;
        height: 210px;
        bottom: 25px;
        right: 30px;
        left: auto;
        border-radius: 16px;
        filter: blur(10px) brightness(0.6);
        transform: scale(0.9);
    }
}

.hero-section .slider.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
.hero-section .slider.next .nextPrevArrows button,
.hero-section .slider.prev .nextPrevArrows button {
    pointer-events: none;
}

/* No contentOut animation — content stays visible */

/* ===== Fallback hero (no articles) ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 35%, rgba(0,0,0,0.15) 70%, rgba(0,0,0,0) 100%);
    z-index: 2;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding: 0 8%;
    opacity: 0;
    transition: opacity 0.9s ease;
}
.hero-content.visible { opacity: 1; }
.hero-inner { max-width: 620px; }
.hero-kicker {
    display: inline-block;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 0.75rem;
    font-weight: 500;
}
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6rem);
    color: #fff;
    line-height: 1;
    margin: 0 0 0.5rem;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.92);
    margin-bottom: 1.5rem;
}

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
    .hero-section .slider .list .item .content {
        left: 5%;
        width: 90%;
        max-width: 90%;
        top: 15px;
    }
    .hero-section .slider .list .item .content .title {
        font-size: 1.5rem;
        -webkit-line-clamp: 2;
    }
    .hero-section .slider .list .item .content .type {
        font-size: 0.65rem;
    }
    .hero-section .slider .list .item .content .description {
        font-size: 0.78rem;
        -webkit-line-clamp: 2;
    }
    .hero-section .slider .list .item .content .meta {
        gap: 0.6rem;
        font-size: 0.68rem;
    }
    .hero-section .slider .list .item .button .btn-read,
    .hero-section .slider .list .item .button .btn-explore {
        padding: 0.45rem 1.1rem;
        font-size: 0.68rem;
    }
    .hero-section .thumbnail {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }
    .hero-section .thumbnail .item {
        width: 90px;
        height: 130px;
    }
    .hero-section .thumbnail .item img {
        border-radius: 12px;
    }
    .hero-section .nextPrevArrows {
        right: 15px;
        bottom: 15px;
        transform: translateY(-150px);
    }
    .hero-section .nextPrevArrows button {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

/* ----------------------------------------------------------------------
   Latest Videos section
   ---------------------------------------------------------------------- */
.latest-videos-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}
.lv-bg-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lv-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.lv-bg-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: var(--bg-base);
    color: var(--text-muted);
    gap: 0.5rem;
}
.lv-bg-placeholder i { font-size: 3rem; opacity: 0.4; }
.lv-bg-placeholder span { font-size: 0.9rem; }
.lv-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(238,241,245,0.6) 0%, rgba(238,241,245,0.92) 100%);
    z-index: 1;
}
.lv-content { position: relative; z-index: 2; }

.video-card { display: flex; flex-direction: column; }
.video-card-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.video-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.video-card:hover .video-card-thumb img { transform: scale(1.06); }
.video-play-icon {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}
.video-card:hover .video-play-icon { background: rgba(0,0,0,0.1); }
.video-card-body { padding: 1.1rem 1.25rem 1.4rem; }
.video-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.4rem 0 0;
    line-height: 1.3;
}
.video-card-title a { color: var(--text-dark); }
.video-card-title a:hover { color: var(--primary-color); }

/* ----------------------------------------------------------------------
   Section headers / titles
   ---------------------------------------------------------------------- */
.section-title-soft {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 14px;
}
.section-title-soft::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 5px; height: 70%;
    background: var(--primary-color);
    border-radius: 3px;
}
.section-subtitle-soft {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1.05rem;
}
.section-header-soft {
    padding-bottom: 0.75rem;
    margin-bottom: 1.75rem;
    border-bottom: 1px solid #dde1e8;
}

/* ----------------------------------------------------------------------
   Article cards (landing + category)
   ---------------------------------------------------------------------- */
.article-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.featured-card .featured-img-wrap { height: 100%; min-height: 280px; overflow: hidden; }
.featured-img-custom { width: 100%; height: 100%; object-fit: cover; display: block; }
.default-logo-img { object-fit: contain !important; padding: 2rem; background: var(--bg-base); }
.featured-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    margin: 0.5rem 0 0.75rem;
}
.featured-title a { color: var(--text-dark); }
.featured-title a:hover { color: var(--primary-color); }

.story-card { display: flex; flex-direction: column; }
.story-img-wrap { height: 180px; overflow: hidden; }
.story-img-custom { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.story-card:hover .story-img-custom { transform: scale(1.05); }
.story-card-body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.story-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.4rem 0 0.5rem;
    line-height: 1.3;
}
.story-card-title a { color: var(--text-dark); }
.story-card-title a:hover { color: var(--primary-color); }
.story-card-snippet {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0 0 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2; line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.story-card-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.72rem; color: var(--text-muted);
    margin-top: auto; padding-top: 0.6rem; border-top: 1px solid #e6e9ef;
}
.story-card-meta span.text-truncate { max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ----------------------------------------------------------------------
   Category hero carousel
   ---------------------------------------------------------------------- */
.cat-hero-carousel {
    position: relative;
    width: 100%;
    height: 56vh;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--card-radius);
    margin-bottom: 2rem;
}

/* ===== Modern category hero (non-news categories) ===== */
.cat-modern-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 320px;
    max-height: 480px;
    overflow: hidden;
    border-radius: var(--card-radius);
    margin-bottom: 1.5rem;
}
.cat-modern-hero-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.cat-modern-hero:hover .cat-modern-hero-img { transform: scale(1.05); }
.cat-modern-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}
.cat-modern-hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    z-index: 2;
    color: #fff;
}
.cat-modern-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: #e46917;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(228,105,23,0.4);
}
.cat-modern-hero-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.cat-modern-hero-content h2 a { color: #fff; text-decoration: none; }
.cat-modern-hero-content h2 a:hover { color: #e46917; }
.cat-modern-hero-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    max-width: 600px;
    margin-bottom: 0.75rem;
}
.cat-modern-hero-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}
.cat-modern-hero-meta i { color: #e46917; margin-right: 0.3rem; }

/* Featured mini cards row */
.cat-modern-featured-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.cat-modern-featured-mini {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    max-width: 280px;
    transition: transform 0.3s ease;
}
.cat-modern-featured-mini:hover { transform: translateX(4px); }
.cat-modern-featured-mini img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.cat-modern-featured-mini span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.cat-modern-featured-mini:hover span { color: #e46917; }

@media (max-width: 768px) {
    .cat-modern-hero { height: 40vh; min-height: 260px; }
    .cat-modern-hero-content { padding: 1.25rem; }
    .cat-modern-hero-content h2 { font-size: 1.3rem; }
    .cat-modern-featured-row { display: none; }
}
.cat-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.1s ease;
    background-size: cover;
    background-position: center;
}
.cat-hero-slide.active { opacity: 1; }
/* left gradient for news, bottom gradient for feature/sports */
.cat-hero-overlay-left {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 45%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.cat-hero-overlay-bottom {
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.cat-hero-caption {
    position: absolute;
    z-index: 2;
    color: #fff;
    max-width: 640px;
    padding: 0 2rem;
}
.cat-hero-caption.bottom { bottom: 2rem; left: 0; right: 0; }
.cat-hero-caption.left   { top: 50%; left: 0; transform: translateY(-50%); }
.cat-hero-caption .cat-badge {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: var(--pill-radius);
    margin-bottom: 0.75rem;
}
.cat-hero-caption h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}
.cat-hero-caption p {
    color: rgba(255,255,255,0.88);
    font-size: 0.95rem;
    margin: 0;
}
.cat-hero-dots {
    position: absolute;
    bottom: 1rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex; gap: 0.5rem;
}
.cat-hero-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.cat-hero-dot.active { background: #fff; transform: scale(1.25); }

/* ----------------------------------------------------------------------
   E-Newspaper flipbook modal
   ---------------------------------------------------------------------- */
.enews-card { border: none; transition: transform 0.3s ease, box-shadow 0.3s ease; overflow: hidden; border-radius: var(--card-radius); }
.enews-card img { height: 260px; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.enews-card:hover img { transform: scale(1.05); }
.enews-card .card-body { background: var(--bg-base); padding: 0.85rem; }
.enews-title { font-family: var(--font-body); font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }
.enews-date { font-family: var(--font-body); font-size: 0.8rem; color: var(--text-muted); }

.flipbook-modal .modal-dialog { max-width: 96vw; margin: 1vh auto; }
.flipbook-modal .modal-content { background: transparent; border: none; }
.flipbook-stage {
    position: relative;
    width: 100%;
    height: 88vh;
    background: #1a1a1a;
    border-radius: var(--card-radius);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.flipbook-iframe { width: 100%; height: 100%; border: none; border-radius: var(--card-radius); }
.flipbook-canvas-wrap { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.flipbook-canvas { max-width: 100%; max-height: 100%; transition: transform 0.3s ease; }
.flipbook-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    color: #fff; border: none;
    width: 48px; height: 48px; border-radius: 50%;
    font-size: 1.4rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s; z-index: 5;
}
.flipbook-nav:hover { background: rgba(255,255,255,0.3); }
.flipbook-nav.prev { left: 12px; }
.flipbook-nav.next { right: 12px; }
.flipbook-toolbar {
    position: absolute; top: 10px; right: 12px;
    display: flex; gap: 0.5rem; z-index: 5;
}
.flipbook-tool {
    background: rgba(255,255,255,0.15); color: #fff; border: none;
    width: 40px; height: 40px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
}
.flipbook-tool:hover { background: rgba(255,255,255,0.3); }
.flipbook-page-num {
    position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 0.85rem; background: rgba(0,0,0,0.4);
    padding: 0.25rem 0.9rem; border-radius: var(--pill-radius); z-index: 5;
}

/* ----------------------------------------------------------------------
   Article page
   ---------------------------------------------------------------------- */
.article-cover-container { border-radius: var(--card-radius); overflow: hidden; box-shadow: 8px 8px 18px var(--shadow-dark), -8px -8px 18px var(--shadow-light); position: relative; width: 100%; padding-top: 56.25%; background-color: #f8f9fa; }
.article-cover-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; display: block; }
.article-cover-image.default-logo-img { object-fit: contain; padding: 2rem; background: var(--bg-base); }
.article-content { font-family: var(--font-body); font-size: 1.1rem; line-height: 1.85; color: var(--text-dark); }
.article-card-soft {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: 10px 10px 22px var(--shadow-dark), -10px -10px 22px var(--shadow-light);
    padding: 2.5rem;
}
.comments-outer {
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: inset 5px 5px 12px var(--shadow-dark), inset -5px -5px 12px var(--shadow-light);
    padding: 2rem;
    margin-top: 2rem;
}

/* ----------------------------------------------------------------------
   Login page
   ---------------------------------------------------------------------- */
body.login-page-bg { background: var(--bg-base); }
.login-form-container {
    background: var(--bg-card);
    padding: 3rem 2.5rem;
    border-radius: var(--card-radius);
    box-shadow: 12px 12px 28px var(--shadow-dark), -12px -12px 28px var(--shadow-light);
    max-width: 420px; width: 100%;
    color: var(--text-dark);
}
.login-logo {
    background: var(--bg-card);
    width: 90px; height: 90px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: inset 4px 4px 10px var(--shadow-dark), inset -4px -4px 10px var(--shadow-light);
}
.login-logo img { height: 42px; filter: none; }
.form-control-minimal {
    background-color: var(--bg-card);
    border: none;
    border-radius: var(--card-radius);
    padding: 0.85rem 1rem 0.85rem 2.6rem;
    color: var(--text-dark);
    box-shadow: inset 3px 3px 7px var(--shadow-dark), inset -3px -3px 7px var(--shadow-light);
}
.form-control-minimal:focus {
    background-color: var(--bg-card);
    box-shadow: inset 4px 4px 9px var(--shadow-dark), inset -4px -4px 9px var(--shadow-light);
    color: var(--text-dark);
    outline: none;
}
.form-group-icon { position: relative; }
.form-group-icon .form-icon {
    position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
}

/* ======================================================================
   SILAKBO LANDING PAGE DESIGN SYSTEM (v2)
   Based on Figma/Landing Page reference designs
   ====================================================================== */

:root {
    --sl-bg-page:      #F0F0F3;
    --sl-bg-card:      #FFFFFF;
    --sl-bg-dark:      #1C1F26;
    --sl-bg-dark-2:    #2A2E38;
    --sl-brand:        #F24822;
    --sl-brand-hover:  #D93D1C;
    --sl-brand-soft:   rgba(242, 72, 34, 0.1);
    --sl-text-dark:    #1A1C20;
    --sl-text-body:    #4A4E5A;
    --sl-text-muted:   #8B8F9A;
    --sl-border:       #E8E8EC;
    --sl-radius:       16px;
    --sl-radius-sm:    10px;
    --sl-shadow:       0 2px 12px rgba(0,0,0,0.06);
    --sl-shadow-hover: 0 12px 32px rgba(0,0,0,0.12);
    --sl-transition:   0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Page background */
.sl-page {
    background: var(--sl-bg-page);
    min-height: 100vh;
}

/* ===== Section title ===== */
.sl-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--sl-border);
    gap: 1rem;
    flex-wrap: wrap;
}
.sl-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--sl-text-dark);
    margin: 0;
    line-height: 1.2;
}
.sl-section-subtitle {
    font-size: 0.9rem;
    color: var(--sl-text-muted);
    margin-top: 0.3rem;
}
.sl-section-accent {
    display: inline-block;
    width: 48px;
    height: 4px;
    background: var(--sl-brand);
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

/* ===== Dark hero banner ===== */
.sl-hero {
    position: relative;
    width: 100%;
    height: 52vh;
    min-height: 340px;
    max-height: 520px;
    overflow: hidden;
    border-radius: var(--sl-radius);
    margin-bottom: 2.5rem;
}
.sl-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}
.sl-hero:hover .sl-hero-bg { transform: scale(1.06); }
.sl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,31,38,0.3) 0%, rgba(28,31,38,0.6) 50%, rgba(28,31,38,0.92) 100%);
    z-index: 1;
}
.sl-hero-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem;
    z-index: 2;
    color: #fff;
}
.sl-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(242,72,34,0.4);
}
.sl-hero-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 700px;
}
.sl-hero-title a { color: #fff; text-decoration: none; }
.sl-hero-title a:hover { color: var(--sl-brand); }
.sl-hero-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1rem;
}
.sl-hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
}
.sl-hero-meta i { color: var(--sl-brand); margin-right: 0.35rem; }

/* ===== Card grid ===== */
.sl-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}
.sl-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.sl-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.sl-card-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 60%;
    overflow: hidden;
    background: var(--sl-bg-dark-2);
}
.sl-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.sl-card:hover .sl-card-img { transform: scale(1.08); }
.sl-card-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.sl-card-body {
    padding: 1.1rem 1.25rem 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.sl-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sl-card-title a { color: inherit; text-decoration: none; }
.sl-card-title a:hover { color: var(--sl-brand); }
.sl-card-desc {
    font-size: 0.82rem;
    color: var(--sl-text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}
.sl-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid var(--sl-border);
    margin-top: auto;
}
.sl-card-meta i { color: var(--sl-brand); margin-right: 0.25rem; }

/* ===== Play button overlay (for videos) ===== */
.sl-play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(242,72,34,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 3;
    transition: transform var(--sl-transition), background var(--sl-transition);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.sl-card:hover .sl-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--sl-brand);
}

/* ===== Document card (memorandum) ===== */
.sl-doc-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 1.5rem;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.sl-doc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--sl-brand);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--sl-transition);
}
.sl-doc-card:hover::before { transform: scaleY(1); }
.sl-doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.sl-doc-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.sl-doc-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.sl-doc-meta {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
    margin-bottom: 0.5rem;
}
.sl-doc-meta i { color: var(--sl-brand); margin-right: 0.3rem; }
.sl-doc-content {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--sl-text-body);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.sl-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--sl-brand);
    text-decoration: none;
    transition: color 0.2s;
}
.sl-doc-link:hover { color: var(--sl-brand-hover); text-decoration: underline; }

/* ===== Empty state ===== */
.sl-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--sl-text-muted);
}
.sl-empty i {
    font-size: 3.5rem;
    color: var(--sl-border);
    margin-bottom: 1rem;
    display: block;
}
.sl-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--sl-text-dark);
    margin-bottom: 0.5rem;
}

/* ===== Section spacing ===== */
.sl-section {
    padding: 2rem 0;
}
.sl-section + .sl-section { padding-top: 0; }

/* ===== Featured mini cards row ===== */
.sl-featured-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.sl-featured-mini {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    max-width: 300px;
    transition: transform 0.3s ease;
}
.sl-featured-mini:hover { transform: translateX(4px); }
.sl-featured-mini img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--sl-radius-sm);
    flex-shrink: 0;
}
.sl-featured-mini span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--sl-text-dark);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sl-featured-mini:hover span { color: var(--sl-brand); }

/* ===== E-Newspaper card ===== */
.sl-enews-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
    height: 100%;
    cursor: pointer;
}
.sl-enews-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.sl-enews-thumb-wrap {
    position: relative;
    width: 100%;
    padding-top: 133%;
    overflow: hidden;
    background: var(--sl-bg-page);
}
.sl-enews-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.sl-enews-card:hover .sl-enews-thumb { transform: scale(1.05); }
.sl-enews-overlay {
    position: absolute;
    inset: 0;
    background: rgba(242,72,34,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--sl-transition);
    z-index: 2;
}
.sl-enews-card:hover .sl-enews-overlay { background: rgba(242,72,34,0.25); }
.sl-enews-overlay i {
    font-size: 2.5rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.sl-enews-card:hover .sl-enews-overlay i { opacity: 1; transform: scale(1); }
.sl-enews-card-body {
    padding: 0.85rem 1rem 1rem;
    text-align: center;
}
.sl-enews-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sl-enews-date {
    font-size: 0.72rem;
    color: var(--sl-brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Video modal ===== */
.sl-video-modal .modal-dialog { max-width: 860px; }
.sl-video-modal .modal-content { background: transparent; border: none; }
.sl-video-modal .modal-body { padding: 0; background: #000; border-radius: 14px; overflow: hidden; }
.sl-video-modal-iframe { width: 100%; height: 480px; border: none; display: block; }
.sl-video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: #111;
    color: #fff;
}
.sl-video-modal-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; }
.sl-video-modal-close { background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .sl-hero { height: 42vh; min-height: 280px; }
    .sl-hero-title { font-size: 1.6rem; }
    .sl-hero-content { padding: 1.5rem; }
    .sl-card-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}
@media (max-width: 768px) {
    .sl-hero { height: 36vh; min-height: 240px; }
    .sl-hero-title { font-size: 1.3rem; }
    .sl-hero-content { padding: 1.25rem; }
    .sl-section-title { font-size: 1.5rem; }
    .sl-card-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; }
    .sl-featured-row { display: none; }
    .sl-video-modal-iframe { height: 280px; }
}

/* ======================================================================
   MAGAZINE LAYOUT (Category pages: feature, literary, opinion, sports)
   ====================================================================== */

/* Category-specific accent colors — ALL ORANGE only */
.cat-feature, .cat-literary, .cat-opinion, .cat-sports {
    --cat-accent: #F24822;
    --cat-accent-soft: rgba(242,72,34,0.1);
}

/* Magazine hero: large lead article + 2 smaller on right */
.mag-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.mag-hero-lead {
    position: relative;
    border-radius: var(--sl-radius);
    overflow: hidden;
    min-height: 420px;
    background: var(--sl-bg-dark);
}
.mag-hero-lead-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.mag-hero-lead:hover .mag-hero-lead-img { transform: scale(1.05); }
.mag-hero-lead-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,31,38,0.1) 0%, rgba(28,31,38,0.5) 60%, rgba(28,31,38,0.95) 100%);
}
.mag-hero-lead-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2rem;
    color: #fff;
}
.mag-hero-lead-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: var(--cat-accent, var(--sl-brand));
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}
.mag-hero-lead-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.mag-hero-lead-title a { color: #fff; text-decoration: none; }
.mag-hero-lead-title a:hover { color: var(--cat-accent, var(--sl-brand)); }
.mag-hero-lead-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mag-hero-lead-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
}
.mag-hero-lead-meta i { color: var(--cat-accent, var(--sl-brand)); margin-right: 0.3rem; }

/* Magazine sidebar: 2 stacked smaller articles */
.mag-hero-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mag-hero-side-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
    flex: 1;
    display: flex;
}
.mag-hero-side-card:hover {
    transform: translateX(4px);
    box-shadow: var(--sl-shadow-hover);
}
.mag-hero-side-img {
    width: 120px;
    min-height: 140px;
    object-fit: cover;
    flex-shrink: 0;
}
.mag-hero-side-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mag-hero-side-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--cat-accent, var(--sl-brand));
    margin-bottom: 0.4rem;
}
.mag-hero-side-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mag-hero-side-title a { color: inherit; text-decoration: none; }
.mag-hero-side-title a:hover { color: var(--cat-accent, var(--sl-brand)); }
.mag-hero-side-meta {
    font-size: 0.72rem;
    color: var(--sl-text-muted);
    margin-top: auto;
}

/* Magazine section divider */
.mag-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.mag-divider-line {
    flex: 1;
    height: 1px;
    background: var(--sl-border);
}
.mag-divider-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cat-accent, var(--sl-brand));
}

/* Category accent on section header */
.sl-section-header.cat-accent .sl-section-accent { background: var(--cat-accent, var(--sl-brand)); }
.sl-section-header.cat-accent .sl-section-title { color: var(--sl-text-dark); }

/* Card badge with category color */
.cat-accent .sl-card-badge { background: var(--cat-accent, var(--sl-brand)); }
.cat-accent .sl-card:hover { border-color: var(--cat-accent, var(--sl-brand)); }
.cat-accent .sl-card-meta i { color: var(--cat-accent, var(--sl-brand)); }

@media (max-width: 992px) {
    .mag-hero { grid-template-columns: 1fr; }
    .mag-hero-lead { min-height: 300px; }
    .mag-hero-side { flex-direction: row; }
    .mag-hero-side-card { flex: 1; }
}
@media (max-width: 768px) {
    .mag-hero { grid-template-columns: 1fr; }
    .mag-hero-side { flex-direction: column; }
    .mag-hero-lead { min-height: 240px; }
    .mag-hero-lead-title { font-size: 1.3rem; }
    .mag-hero-side-card { flex-direction: column; }
    .mag-hero-side-img { width: 100%; min-height: 120px; }
}

/* ======================================================================
   MAGAZINE RACK LAYOUT (E-Newspaper)
   ====================================================================== */
.rack-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.rack-featured {
    position: relative;
    margin-bottom: 2.5rem;
}
.rack-featured-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sl-brand);
    margin-bottom: 0.75rem;
}
.rack-featured-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
    cursor: pointer;
    display: flex;
    gap: 0;
}
.rack-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
/* Landscape container: portrait image on left, details centered on right */
.rack-featured-card.rack-featured-landscape {
    flex-direction: row;
    min-height: 80px;
    max-width: 100%;
    align-items: stretch;
}
.rack-featured-img-wrap.rack-featured-img-landscape {
    width: 18%;
    min-height: 80px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rack-featured-img-wrap {
    width: 50%;
    position: relative;
    overflow: hidden;
    background: var(--sl-bg-page);
}
.rack-featured-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}
.rack-featured-card:hover .rack-featured-img { transform: scale(1.05); }
.rack-featured-body {
    width: 82%;
    padding: 0.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    align-items: flex-start;
}
.rack-featured-badge {
    display: inline-block;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.1rem 0.4rem;
    border-radius: 50px;
    margin-bottom: 0.2rem;
}
.rack-featured-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--sl-text-dark);
    line-height: 1.2;
    margin: 0 0 0.15rem;
}
.rack-featured-date {
    font-size: 0.68rem;
    color: var(--sl-brand);
    font-weight: 600;
    margin: 0 0 0.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.rack-featured-date::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    background: var(--sl-brand);
    border-radius: 2px;
}
.rack-featured-desc {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
    line-height: 1.45;
    margin: 0 0 0.4rem;
    padding-left: 0.6rem;
    border-left: 3px solid var(--sl-brand);
    font-style: italic;
    font-weight: 700;
    text-align: left;
    width: 100%;
}
.rack-featured-desc i.bi-quote {
    color: var(--sl-brand);
    font-size: 0.9rem;
    font-style: normal;
    margin-right: 0.15rem;
    vertical-align: -0.05rem;
}
.rack-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.28rem 0.7rem;
    background: var(--sl-brand);
    color: #fff;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.rack-featured-btn:hover { background: var(--sl-brand-hover); color: #fff; }

/* Previous editions section */
.rack-previous-section {
    margin-top: 2rem;
}
.rack-grid-label {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sl-text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--sl-border);
}
.rack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
/* Portrait grid: 5 per row, portrait aspect ratio */
.rack-grid-portrait {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.sl-enews-card-portrait {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.sl-enews-card-portrait:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.sl-enews-thumb-portrait {
    padding-top: 140%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}
.sl-enews-thumb-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sl-enews-card-portrait:hover .sl-enews-thumb-portrait img {
    transform: scale(1.05);
}
.sl-enews-card-portrait .sl-enews-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
}
.sl-enews-card-portrait:hover .sl-enews-overlay {
    background: rgba(242,72,34,0.25);
}
.sl-enews-card-portrait .sl-enews-overlay i {
    font-size: 2rem;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}
.sl-enews-card-portrait:hover .sl-enews-overlay i {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 992px) {
    .rack-grid-portrait { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .rack-featured-card.rack-featured-landscape { flex-direction: column; }
    .rack-featured-img-wrap.rack-featured-img-landscape { width: 100%; min-height: 100px; }
    .rack-featured-body { width: 100%; }
    .rack-grid-portrait { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
    .rack-grid-portrait { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Recent Stories section ===== */
.recent-stories-section {
    margin-top: 2.5rem;
}
.recent-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.recent-story-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
    display: flex;
    flex-direction: column;
}
.recent-story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.recent-story-thumb {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}
.recent-story-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.recent-story-card:hover .recent-story-thumb img {
    transform: scale(1.06);
}
.recent-story-body {
    padding: 0.75rem 1rem 1rem;
}
.recent-story-cat {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sl-brand);
    margin-bottom: 0.4rem;
}
.recent-story-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin: 0 0 0.35rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-story-date {
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    margin: 0;
}
@media (max-width: 992px) {
    .recent-stories-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .recent-stories-grid { grid-template-columns: repeat(2, 1fr); }
    .rack-featured-landscape { max-width: 100%; }
}
@media (max-width: 480px) {
    .recent-stories-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   VIDEO PAGE — CINEMATIC HERO + GRID (REDESIGNED)
   Full-width cinematic hero at top + responsive video card grid below
   ====================================================================== */
.vid-page-redesign {
    margin-top: 0;
    padding-top: 0;
}

/* ===== CINEMATIC HERO ===== */
.vid-hero {
    position: relative;
    width: 100%;
    min-height: 70vh;
    background: var(--sl-bg-dark);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: min-height 0.4s ease;
}

/* When a 16:9 video is playing, switch to aspect-ratio mode */
.vid-hero.vid-hero-playing {
    min-height: auto;
    aspect-ratio: 16 / 9;
    align-items: stretch;
}

/* When a vertical video (Facebook/TikTok) is playing, use a fixed reasonable height */
.vid-hero.vid-hero-vertical {
    min-height: auto;
    height: 600px;
    align-items: center;
    justify-content: center;
}

.vid-hero-player-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Backdrop thumbnail (shown before play) */
.vid-hero-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.vid-hero-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
    transition: transform 8s ease;
}

.vid-hero:hover .vid-hero-backdrop img {
    transform: scale(1.05);
}

.vid-hero-backdrop-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(28,31,38,0.3) 0%,
        rgba(28,31,38,0.5) 40%,
        rgba(28,31,38,0.95) 100%);
}

/* Player (shown when play clicked) */
.vid-hero-player-inner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standard iframe (YouTube, Vimeo, Google Drive) — fills entire hero */
.vid-hero-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Facebook iframe — constrained width, centered, proper aspect ratio */
.vid-hero-iframe-fb {
    position: relative;
    width: 500px;
    max-width: 100%;
    height: 100%;
    max-height: 600px;
    border: none;
    margin: 0 auto;
}

/* TikTok iframe — constrained width for vertical video */
.vid-hero-iframe-tiktok {
    position: relative;
    width: 340px;
    max-width: 100%;
    height: 100%;
    max-height: 700px;
    border: none;
    margin: 0 auto;
}

/* HTML5 video element — fills hero with contain to show full video */
.vid-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    border: none;
}

/* Play button overlay */
.vid-hero-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 1.5rem 2rem;
    border-radius: 50%;
}

.vid-hero-play-btn i {
    font-size: 5rem;
    color: var(--sl-brand);
    text-shadow: 0 4px 20px rgba(242, 72, 34, 0.5);
    transition: all 0.4s ease;
}

.vid-hero-play-btn span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.vid-hero-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.vid-hero-play-btn:hover i {
    color: #fff;
    text-shadow: 0 4px 30px rgba(242, 72, 34, 0.8);
}

/* Hero content overlay (bottom) */
.vid-hero-content {
    position: relative;
    z-index: 4;
    width: 100%;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.vid-hero-content-inner {
    max-width: 800px;
}

.vid-hero-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.vid-hero-badge-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: linear-gradient(135deg, var(--sl-brand) 0%, var(--sl-brand-hover) 100%);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(242, 72, 34, 0.4);
}

.vid-hero-badge-source {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.vid-hero-badge-source i { color: var(--sl-brand); }

.vid-hero-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.vid-hero-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 650px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.vid-hero-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    flex-wrap: wrap;
}

.vid-hero-meta i { color: var(--sl-brand); margin-right: 0.35rem; }

/* ===== VIDEO GRID SECTION ===== */
.vid-grid-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.vid-grid-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(242, 72, 34, 0.3);
}

.vid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.vid-grid-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--sl-shadow);
}

.vid-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}

.vid-grid-card-active {
    border-color: var(--sl-brand);
    box-shadow: 0 0 0 2px var(--sl-brand-soft), var(--sl-shadow-hover);
}

.vid-grid-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--sl-bg-dark);
}

.vid-grid-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.vid-grid-card:hover .vid-grid-card-thumb img {
    transform: scale(1.1);
}

.vid-grid-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
    transition: background 0.4s ease;
}

.vid-grid-card:hover .vid-grid-card-overlay {
    background: linear-gradient(180deg, rgba(242,72,34,0.1) 0%, rgba(0,0,0,0.5) 100%);
}

.vid-grid-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 52px;
    height: 52px;
    background: rgba(242, 72, 34, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(242, 72, 34, 0.4);
}

.vid-grid-card:hover .vid-grid-card-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.vid-grid-card-active .vid-grid-card-play {
    opacity: 1;
    background: var(--sl-brand);
}

.vid-grid-card-source {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.vid-grid-card-cat {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: rgba(242, 72, 34, 0.9);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.vid-grid-card-body {
    padding: 1.25rem;
}

.vid-grid-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.65rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.vid-grid-card:hover .vid-grid-card-title { color: var(--sl-brand); }

.vid-grid-card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    flex-wrap: wrap;
}

.vid-grid-card-meta i { color: var(--sl-brand); margin-right: 0.25rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .vid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .vid-hero {
        min-height: 60vh;
    }
    .vid-hero-title {
        font-size: 2.2rem;
    }
    .vid-hero-desc {
        font-size: 0.95rem;
    }
    .vid-hero.vid-hero-vertical {
        height: 500px;
    }
    .vid-hero-iframe-fb {
        width: 420px;
    }
}
@media (max-width: 768px) {
    .vid-hero {
        min-height: 50vh;
    }
    .vid-hero-title {
        font-size: 1.6rem;
    }
    .vid-hero-desc {
        font-size: 0.88rem;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .vid-hero-play-btn i {
        font-size: 3.5rem;
    }
    .vid-hero-play-btn span {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    .vid-hero.vid-hero-vertical {
        height: 420px;
    }
    .vid-hero-iframe-fb {
        width: 100%;
        max-width: 360px;
    }
    .vid-hero-iframe-tiktok {
        width: 280px;
    }
    .vid-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .vid-grid-card-body {
        padding: 0.85rem;
    }
    .vid-grid-card-title {
        font-size: 0.85rem;
    }
}
@media (max-width: 480px) {
    .vid-hero {
        min-height: 45vh;
    }
    .vid-hero-title {
        font-size: 1.3rem;
    }
    .vid-hero-content {
        padding-bottom: 1.5rem;
        padding-top: 1.5rem;
    }
    .vid-hero-meta {
        gap: 1rem;
        font-size: 0.75rem;
    }
    .vid-hero.vid-hero-vertical {
        height: 380px;
    }
    .vid-hero-iframe-fb {
        width: 100%;
        max-width: 320px;
    }
    .vid-hero-iframe-tiktok {
        width: 240px;
    }
    .vid-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .vid-grid-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

/* ======================================================================
   STAFF / EDITORIAL BOARD — ORG CHART FAMILY TREE
   ====================================================================== */
/* Hero */
.staff-hero {
    text-align: center;
    padding: 3rem 2rem 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: var(--sl-radius);
    border: 1px solid var(--sl-border);
    position: relative;
    overflow: hidden;
}
.staff-hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.05) 0%, transparent 70%);
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.staff-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.staff-hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #000000;
    margin-bottom: 0.75rem;
}
.staff-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sl-text-dark);
    margin-bottom: 0.5rem;
}
.staff-hero-subtitle {
    font-size: 1rem;
    color: var(--sl-text-muted);
    line-height: 1.6;
}

/* ===== ORG TREE CONTAINER ===== */
.org-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
}

/* ===== LEVELS ===== */
.org-level {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}
.org-level-root {
    gap: 1.5rem;
}
.org-level-1 {
    gap: 1.5rem;
}
.org-level-2 {
    gap: 2.5rem;
    align-items: flex-start;
}

/* ===== CONNECTORS (tree branches) ===== */
.org-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, #000000 0%, #dee2e6 100%);
    margin: 0 auto;
    position: relative;
}
.org-connector::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #000000;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
}
.org-connector-sm {
    height: 28px;
}

/* ===== TREE NODES ===== */
.tree-node {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Node card — portrait style */
.tree-node-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: var(--sl-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    width: 180px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}
.tree-node-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #e9ecef;
}

/* Root node — bigger */
.tree-node-card-root {
    width: 220px;
    border-width: 2px;
    border-color: #e9ecef;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.tree-node-card-root:hover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Mid-level node */
.tree-node-card-mid {
    width: 200px;
    border-color: #e9ecef;
}

/* Node photo — portrait 3:4 ratio */
.tree-node-photo {
    position: relative;
    width: 100%;
    padding-top: 120%; /* 3:4 portrait */
    overflow: hidden;
    background: #f8f9fa;
}
.tree-node-photo-lg {
    padding-top: 125%;
}
.tree-node-photo-md {
    padding-top: 122%;
}
.tree-node-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.tree-node-card:hover .tree-node-photo img {
    transform: scale(1.08);
}
.tree-node-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #000000;
    background: #f8f9fa;
}

/* Hover overlay */
.tree-node-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.75rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.tree-node-card:hover .tree-node-overlay {
    opacity: 1;
}
.tree-node-overlay span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: #000000;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Node info — name + role below photo */
.tree-node-info {
    padding: 0.75rem 0.85rem 1rem;
    text-align: center;
    position: relative;
}
.tree-node-crown {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.tree-node-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    margin: 0 0 0.15rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}
.tree-node-card:hover .tree-node-name {
    color: #000000;
}
.tree-node-role {
    font-size: 0.68rem;
    color: var(--sl-text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== DEPARTMENT GROUP ===== */
.tree-dept {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 400px;
}

/* Department header */
.tree-dept-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 50px;
    padding: 0.6rem 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tree-dept-header:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.tree-dept-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #000000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.tree-dept-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--sl-text-dark);
    margin: 0;
    white-space: nowrap;
}

/* Department members grid */
.tree-dept-members {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    justify-items: center;
    width: 100%;
    margin-top: 0.5rem;
}

/* ===== PREMIUM GRID LAYOUT ANIMATIONS & EFFECTS ===== */

/* Enhanced Hero Section */
.staff-hero-premium {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 50%, #f8f9fa 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.staff-hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/edit.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    animation: bgImageFloat 10s ease-in-out infinite;
    pointer-events: none;
    filter: brightness(1) contrast(1);
}

@keyframes bgImageFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
}

.staff-hero-bg-animation {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(228, 105, 23, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.04) 0%, transparent 50%);
    animation: heroGradientShift 10s ease-in-out infinite;
    pointer-events: none;
    border-radius: 1rem;
}

@keyframes heroGradientShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(8px, -8px) scale(1.02); }
}

/* ===== FAMILY TREE ORG CHART ===== */
.ft-tree {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    position: relative;
    gap: 3rem;
}

/* ===== RANK ROW (number + horizontal line on top, content below) ===== */
.ft-rank {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Left side: rank number + horizontal line */
.ft-rank-label {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.ft-rank-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #2b2d33;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    letter-spacing: -1px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: rankNumPulse 4s ease-in-out infinite;
    flex-shrink: 0;
    border: 2px solid #e0e0e0;
}

@keyframes rankNumPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
}

.ft-rank-label:hover .ft-rank-num {
    transform: scale(1.1) rotate(5deg);
}

/* Horizontal line extending from the number across the row */
.ft-rank-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, #2b2d33 0%, rgba(43, 45, 51, 0.2) 100%);
    border-radius: 2px;
    min-width: 100px;
}

/* Right side: content area */
.ft-rank-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
}

/* Section boxes (clickable headers) */
.ft-section-box {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    margin-bottom: 1.5rem;
    position: relative;
}
.ft-section-box::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
    opacity: 0.6;
}
.ft-section-box:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
    border-color: #cccccc;
}
.ft-section-box-editorial {
    border-width: 2.5px;
    padding: 0.75rem 2rem;
}
.ft-section-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #2b2d33;
    margin: 0;
    white-space: nowrap;
}

/* Rows of cards */
.ft-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
}
/* Leadership row: 2 per row */
.ft-leadership-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
    max-width: 500px;
    margin: 0 auto;
}
.ft-leadership-row .ft-card {
    width: 100%;
    max-width: 160px;
}
/* Editors row: 6 per row */
.ft-editors-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    justify-items: center;
    width: 100%;
    margin-top: 1.5rem;
}
.ft-editors-row .ft-card {
    width: 100%;
    max-width: 160px;
}

/* Branches row: horizontal layout of sub-sections */
.ft-branches-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
}

/* Each branch column */
.ft-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
    max-width: 360px;
}

/* Cards grid under each branch - 2 per row */
.ft-branch-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-items: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}
.ft-branch-cards .ft-card {
    width: 100%;
    max-width: 160px;
}

/* ===== Member Card (portrait) ===== */
.ft-card {
    width: 160px;
    perspective: 800px;
}
.ft-card-link {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.65rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    height: 100%;
}
.ft-card-link:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 14px 28px rgba(0,0,0,0.12);
    border-color: #cccccc;
}

/* Photo area (portrait 3:4) */
.ft-card-photo {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}
.ft-card-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ft-card-link:hover .ft-card-photo img {
    transform: scale(1.08);
}
.ft-card-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #2b2d33;
    transition: all 0.3s ease;
}
.ft-card-link:hover .ft-card-initials {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #2b2d33;
}

/* Card info */
.ft-card-info {
    padding: 0.6rem 0.5rem 0.75rem;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.ft-card-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: #2b2d33;
    margin: 0 0 0.15rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}
.ft-card-link:hover .ft-card-name {
    color: #2b2d33;
}
.ft-card-role {
    font-size: 0.6rem;
    color: #999999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-weight: 600;
}

/* Empty state */
.ft-empty {
    text-align: center;
    padding: 1.5rem;
    color: #adb5bd;
}
.ft-empty i {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.3rem;
}
.ft-empty p {
    font-size: 0.8rem;
    margin: 0;
    font-style: italic;
}

/* Page background */
.sl-page {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 50%, #f8f8f8 100%);
    min-height: 100vh;
}

html { scroll-behavior: smooth; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .ft-editors-row { grid-template-columns: repeat(4, 1fr); }
    .ft-leadership-row .ft-card,
    .ft-editors-row .ft-card,
    .ft-branch-cards .ft-card,
    .ft-card { max-width: 150px; width: 100%; }
}
@media (max-width: 992px) {
    .ft-branches-row { gap: 1.5rem; }
    .ft-branch { min-width: 160px; max-width: 280px; }
    .ft-editors-row { grid-template-columns: repeat(3, 1fr); }
    .ft-leadership-row .ft-card,
    .ft-editors-row .ft-card,
    .ft-branch-cards .ft-card,
    .ft-card { max-width: 140px; width: 100%; }
    .ft-rank-num { font-size: 2rem; width: 50px; height: 50px; }
}
@media (max-width: 768px) {
    .ft-branches-row {
        flex-direction: column;
        align-items: center;
    }
    .ft-branch { max-width: 100%; width: 100%; }
    .ft-editors-row { grid-template-columns: repeat(2, 1fr); }
    .ft-leadership-row .ft-card,
    .ft-editors-row .ft-card,
    .ft-branch-cards .ft-card,
    .ft-card { max-width: 160px; width: 100%; }
    .ft-section-title { font-size: 0.9rem; }
    .staff-hero-premium { min-height: 180px; }
    .ft-rank-num { font-size: 1.8rem; width: 46px; height: 46px; }
}
@media (max-width: 480px) {
    .ft-leadership-row { grid-template-columns: repeat(2, 1fr); }
    .ft-editors-row { grid-template-columns: repeat(2, 1fr); }
    .ft-branch-cards { grid-template-columns: repeat(2, 1fr); }
    .ft-leadership-row .ft-card,
    .ft-editors-row .ft-card,
    .ft-branch-cards .ft-card,
    .ft-card { max-width: 140px; width: 100%; }
    .ft-card-name { font-size: 0.72rem; }
    .ft-card-role { font-size: 0.55rem; }
    .ft-rank-num { font-size: 1.6rem; width: 44px; height: 44px; }
}

/* ======================================================================
   MEMORANDUM - FEATURED + BULLETIN BOARD
   ====================================================================== */

/* ===== Featured (latest) memorandum ===== */
.memo-featured {
    background: #ffffff;
    border-radius: 1.25rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 2.5rem;
    position: relative;
    border: 1px solid #f0f0f0;
}
.memo-featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #2b2d33 0%, #000000 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom-right-radius: 0.75rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.memo-featured-badge i {
    color: #f5a068;
}
.memo-featured-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    min-height: 500px;
}
/* Portrait file preview */
.memo-featured-preview {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-right: 1px solid #eee;
    padding: 1.5rem 1rem;
}
.memo-preview-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.memo-preview-iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.memo-preview-placeholder {
    text-align: center;
    color: #adb5bd;
}
.memo-preview-placeholder i {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}
.memo-preview-placeholder span {
    font-size: 0.9rem;
    font-style: italic;
}
/* Details */
.memo-featured-details {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.memo-featured-number {
    display: inline-block;
    background: #f0f2f5;
    color: #6c757d;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    align-self: flex-start;
}
.memo-featured-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #2b2d33;
    margin: 0 0 1rem;
    line-height: 1.2;
}
.memo-featured-date,
.memo-featured-author {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.memo-featured-date i,
.memo-featured-author i {
    color: #6c757d;
}
.memo-featured-content {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
    margin: 1.25rem 0 1.5rem;
}
.memo-featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2b2d33 0%, #000000 100%);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.memo-featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.2);
    color: #fff;
}
.memo-list-heading {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: #2b2d33;
    margin: 2rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0f0f0;
}

@media (max-width: 992px) {
    .memo-featured-grid {
        grid-template-columns: 1fr;
    }
    .memo-featured-preview {
        min-height: 350px;
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    .memo-featured-details {
        padding: 2rem 1.5rem;
    }
    .memo-featured-title {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .memo-featured-preview {
        min-height: 280px;
    }
    .memo-preview-iframe {
        min-height: 280px;
    }
}

/* ===== BULLETIN BOARD LAYOUT ===== */
.bulletin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.bulletin-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-left: 4px solid var(--sl-brand);
    border-radius: var(--sl-radius-sm);
    padding: 1.25rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bulletin-item:hover {
    transform: translateX(4px);
    box-shadow: var(--sl-shadow);
}
.bulletin-date-box {
    text-align: center;
    background: var(--sl-brand-soft);
    border-radius: var(--sl-radius-sm);
    padding: 0.6rem 0.85rem;
    min-width: 70px;
}
.bulletin-date-day {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sl-brand);
    line-height: 1;
}
.bulletin-date-month {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sl-brand);
    margin-top: 0.2rem;
}
.bulletin-date-year {
    font-size: 0.65rem;
    color: var(--sl-text-muted);
    margin-top: 0.1rem;
}
.bulletin-content {
    min-width: 0;
}
.bulletin-number {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sl-brand);
    margin-bottom: 0.3rem;
}
.bulletin-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}
.bulletin-text {
    font-size: 0.82rem;
    color: var(--sl-text-muted);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bulletin-author {
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    margin-top: 0.3rem;
}
.bulletin-author i { color: var(--sl-brand); margin-right: 0.25rem; }
.bulletin-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}
.bulletin-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: var(--sl-brand);
    color: #fff;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}
.bulletin-pdf-btn:hover { background: var(--sl-brand-hover); color: #fff; }
.bulletin-pdf-btn.none {
    background: var(--sl-border);
    color: var(--sl-text-muted);
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .bulletin-item {
        grid-template-columns: auto 1fr;
        gap: 1rem;
    }
    .bulletin-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
    }
    .bulletin-date-box { min-width: 56px; padding: 0.5rem 0.6rem; }
    .bulletin-date-day { font-size: 1.2rem; }
    .bulletin-title { font-size: 0.95rem; }
}

/* ======================================================================
   FEATURE CATEGORY — SPOTLIGHT + SIDEBAR LIST
   Large lead article on left + vertical sidebar list on right
   ====================================================================== */
.feat-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
/* Lead article (full width landscape) */
.feat-lead {
    position: relative;
    border-radius: var(--sl-radius);
    overflow: hidden;
    min-height: 450px;
    background: var(--sl-bg-dark);
    transition: transform var(--sl-transition), box-shadow var(--sl-transition);
}
.feat-lead:hover {
    transform: translateY(-4px);
    box-shadow: var(--sl-shadow-hover);
}
.feat-lead-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}
.feat-lead:hover .feat-lead-img { transform: scale(1.05); }
.feat-lead-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28,31,38,0.05) 0%, rgba(28,31,38,0.3) 40%, rgba(28,31,38,0.95) 100%);
}
.feat-lead-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 2.5rem 3rem;
    color: #fff;
}
.feat-lead-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.feat-lead-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    max-width: 80%;
}
.feat-lead-title a { color: #fff; text-decoration: none; }
.feat-lead-title a:hover { color: var(--sl-brand); }
.feat-lead-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 70%;
}
.feat-lead-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}
.feat-lead-meta i { color: var(--sl-brand); margin-right: 0.3rem; }

/* Sidebar list (below, full width grid) */
.feat-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feat-side-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius-sm);
    padding: 0.85rem;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
    text-decoration: none;
    color: inherit;
    align-items: center;
}
.feat-side-item:hover {
    transform: translateX(5px);
    box-shadow: var(--sl-shadow);
    border-color: var(--sl-brand);
}
.feat-side-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--sl-radius-sm);
    flex-shrink: 0;
}
.feat-side-body {
    min-width: 0;
}
.feat-side-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--sl-brand);
    margin-bottom: 0.25rem;
}
.feat-side-title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.3rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.feat-side-meta {
    font-size: 0.72rem;
    color: var(--sl-text-muted);
}
.feat-side-meta i { color: var(--sl-brand); margin-right: 0.2rem; }

@media (max-width: 768px) {
    .feat-split { grid-template-columns: 1fr; }
    .feat-lead { min-height: 300px; }
    .feat-lead-title { font-size: 1.5rem; max-width: 100%; }
    .feat-lead-content { padding: 1.5rem; }
    .feat-lead-desc { max-width: 100%; }
    .feat-sidebar { grid-template-columns: 1fr; }
    .feat-side-item { grid-template-columns: 90px 1fr; gap: 0.75rem; }
    .feat-side-img { width: 90px; height: 65px; }
}

/* ======================================================================
   LITERARY CATEGORY — LITERARY JOURNAL
   Text-focused, large typography, minimal images, pull quotes
   ====================================================================== */
.lit-hero {
    text-align: center;
    padding: 2rem 2rem;
    margin-bottom: 0.5rem;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    position: relative;
    overflow: hidden;
}
/* Reduce gap between section header and grid for literary */
.cat-literary .sl-section-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
}
.cat-literary {
    margin-bottom: 0 !important;
}
section.cat-literary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
}
main.cat-literary {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: auto !important;
}
.opin-grid-wrap {
    margin-top: 0 !important;
}
/* Feature: same spacing fix as literary */
.cat-feature .sl-section-header {
    margin-bottom: 0.5rem;
    padding-bottom: 0.25rem;
}
section.cat-feature {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
}
main.cat-feature {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: auto !important;
}
.lit-hero::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-family: var(--font-heading);
    font-size: 12rem;
    color: var(--sl-brand-soft);
    line-height: 1;
    z-index: 0;
}
.lit-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}
.lit-hero-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--sl-brand);
    margin-bottom: 1rem;
}
.lit-hero-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--sl-text-dark);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-style: italic;
}
.lit-hero-title a { color: inherit; text-decoration: none; }
.lit-hero-title a:hover { color: var(--sl-brand); }
.lit-hero-excerpt {
    font-size: 1.05rem;
    color: var(--sl-text-body);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}
.lit-hero-author {
    font-size: 0.85rem;
    color: var(--sl-text-muted);
    letter-spacing: 1px;
}
.lit-hero-author i { color: var(--sl-brand); margin-right: 0.3rem; }

/* Literary journal list — text-focused cards */
.lit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.lit-item {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 2rem;
    align-items: center;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    padding: 1.75rem;
    transition: transform var(--sl-transition), box-shadow var(--sl-transition), border-color var(--sl-transition);
}
.lit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--sl-shadow-hover);
    border-color: var(--sl-brand);
}
.lit-item-body {
    min-width: 0;
}
.lit-item-type {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--sl-brand);
    border: 1px solid var(--sl-brand);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}
.lit-item-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.4rem;
    font-style: italic;
}
.lit-item-title a { color: inherit; text-decoration: none; }
.lit-item-title a:hover { color: var(--sl-brand); }
.lit-item-excerpt {
    font-size: 0.88rem;
    color: var(--sl-text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lit-item-meta {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
}
.lit-item-meta i { color: var(--sl-brand); margin-right: 0.25rem; }
.lit-item-img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: var(--sl-radius-sm);
    transition: transform 0.5s ease;
}
.lit-item:hover .lit-item-img { transform: scale(1.05); }

@media (max-width: 768px) {
    .lit-hero { padding: 2rem 1.25rem; }
    .lit-hero-title { font-size: 1.5rem; }
    .lit-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .lit-item-img { width: 100%; height: 160px; }
}

/* ======================================================================
   OPINION CATEGORY — SPLIT LAYOUT
   Large featured article (left) + opinion cards grid (right)
   ====================================================================== */

.opin-hero {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    align-items: center;
}

.opin-hero:hover {
    box-shadow: 0 15px 50px rgba(228, 105, 23, 0.15);
    transform: translateY(-4px);
}

/* Reduce gap between section header and opinion grid */
.cat-opinion .sl-section-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.opin-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

/* Left side: Featured article content */
.opin-hero-quote {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--sl-text-dark);
    margin: 0 0 1.5rem;
    position: relative;
    padding-left: 0;
}

.opin-hero-quote::before {
    content: '"';
    position: absolute;
    left: -1.5rem;
    top: -0.5rem;
    font-size: 3.5rem;
    color: var(--sl-brand);
    opacity: 0.3;
    line-height: 1;
}

.opin-hero-quote a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.opin-hero-quote a:hover {
    color: var(--sl-brand);
}

/* Author info */
.opin-hero-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--sl-border);
}

.opin-hero-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sl-brand-soft) 0%, rgba(242,72,34,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sl-brand);
    flex-shrink: 0;
    border: 2px solid var(--sl-brand);
}

.opin-hero-avatar-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--sl-brand);
}

.opin-card-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--sl-brand);
}

.opin-hero-author-info {
    display: flex;
    flex-direction: column;
}

.opin-hero-author-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sl-text-dark);
}

.opin-hero-author-role {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
}

/* Right side: Featured article image/visual */
.opin-hero-visual {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: var(--sl-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.opin-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.opin-hero:hover .opin-hero-visual img {
    transform: scale(1.08);
}

/* Opinion grid wrapper: landscape (left) + portrait (right) */
.opin-grid-wrap {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

/* Left column: landscape cards stacked vertically */
.opin-landscape-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Right column: portrait cards stacked vertically */
.opin-portrait-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Landscape card: image left, content right */
.opin-card-landscape {
    flex-direction: row !important;
    min-height: 220px !important;
}

/* First landscape card: BIGGER box type */
.opin-card-landscape-featured {
    min-height: 320px !important;
    border-width: 2px;
    box-shadow: 0 12px 40px rgba(228, 105, 23, 0.15);
}

.opin-card-landscape-featured .opin-card-photo-landscape {
    width: 300px !important;
    min-height: 320px;
}

.opin-card-landscape-featured .opin-card-content-landscape {
    padding: 2rem !important;
}

.opin-card-landscape-featured .opin-card-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.opin-card-landscape-featured .opin-card-bubble {
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
}

.opin-card-landscape-featured .opin-card-quote {
    font-size: 1rem;
    -webkit-line-clamp: 3;
    line-clamp: 3;
}

.opin-card-landscape-featured .opin-card-date {
    font-size: 0.82rem;
    margin-bottom: 1rem;
}

.opin-card-landscape-featured .opin-card-meta {
    font-size: 0.82rem;
}

.opin-card-landscape-featured .opin-card-photo-name {
    font-size: 1rem;
}

.opin-card-landscape-featured .opin-card-photo-role {
    font-size: 0.78rem;
}

.opin-card-photo-landscape {
    width: 220px !important;
    height: 100% !important;
    min-height: 220px;
    flex-shrink: 0;
}

.opin-card-content-landscape {
    padding: 1.5rem !important;
}

.opin-card-content-landscape .opin-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.opin-card-content-landscape .opin-card-bubble {
    margin-bottom: 0.8rem;
}

.opin-card-content-landscape .opin-card-quote {
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* Portrait card: image top, content bottom */
.opin-card-portrait {
    flex-direction: column !important;
    min-height: auto !important;
}

.opin-card-photo-portrait {
    width: 100% !important;
    height: 180px !important;
}

.opin-card-content-portrait {
    padding: 1.2rem !important;
}

.opin-card-content-portrait .opin-card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.opin-card-content-portrait .opin-card-bubble {
    padding: 0.7rem 0.9rem;
    margin-bottom: 0.6rem;
}

.opin-card-content-portrait .opin-card-quote {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

@media (max-width: 1024px) {
    .opin-grid-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    .opin-card-photo-landscape {
        width: 160px !important;
        min-height: 180px;
    }
    .opin-card-landscape-featured {
        min-height: 260px !important;
    }
    .opin-card-landscape-featured .opin-card-photo-landscape {
        width: 220px !important;
        min-height: 260px;
    }
    .opin-card-landscape-featured .opin-card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .opin-grid-wrap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .opin-card-landscape {
        min-height: 180px !important;
    }
    .opin-card-photo-landscape {
        width: 140px !important;
        min-height: 180px;
    }
    .opin-card-photo-portrait {
        height: 160px !important;
    }
    .opin-card-landscape-featured {
        min-height: 220px !important;
    }
    .opin-card-landscape-featured .opin-card-photo-landscape {
        width: 180px !important;
        min-height: 220px;
    }
    .opin-card-landscape-featured .opin-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .opin-card-landscape {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .opin-card-photo-landscape {
        width: 100% !important;
        height: 160px !important;
        min-height: 160px;
    }
    .opin-card-landscape-featured {
        min-height: auto !important;
    }
    .opin-card-landscape-featured .opin-card-photo-landscape {
        width: 100% !important;
        height: 200px !important;
        min-height: 200px;
    }
    .opin-card-landscape-featured .opin-card-content-landscape {
        padding: 1.2rem !important;
    }
    .opin-card-landscape-featured .opin-card-title {
        font-size: 1.1rem;
    }
}

.opin-card {
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 360px;
}

.opin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(228, 105, 23, 0.2);
    border-color: var(--sl-brand);
}

/* Left side: author photo */
.opin-card-photo {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--sl-brand-soft) 0%, rgba(242,72,34,0.05) 100%);
}

.opin-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.opin-card:hover .opin-card-photo img {
    transform: scale(1.08);
}

.opin-card-photo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--sl-brand);
    background: linear-gradient(135deg, var(--sl-brand-soft) 0%, rgba(242,72,34,0.05) 100%);
}

.opin-card-photo-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.opin-card-photo-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.opin-card-photo-role {
    font-size: 0.72rem;
    color: var(--sl-brand);
    font-weight: 600;
}

/* Right side: content */
.opin-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.opin-card-date {
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.opin-card-date i {
    color: var(--sl-brand);
}

.opin-card-bubble {
    background: var(--sl-brand-soft);
    border-radius: 14px;
    padding: 1rem;
    margin-bottom: 1rem;
    position: relative;
}

.opin-card-bubble::before {
    content: '\201C';
    position: absolute;
    right: 0.5rem;
    top: -0.5rem;
    font-size: 2.5rem;
    color: var(--sl-brand);
    opacity: 0.4;
    line-height: 1;
    z-index: 0;
}

.opin-card-quote {
    font-style: italic;
    font-size: 0.92rem;
    color: var(--sl-text-muted);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

.opin-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.opin-card-title a {
    color: inherit;
    text-decoration: none;
}

.opin-card-title a:hover {
    color: var(--sl-brand);
}

.opin-card-meta {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
    display: flex;
    align-items: center;
    padding-top: 0.8rem;
    border-top: 1px solid var(--sl-border);
    gap: 1rem;
}

.opin-card-meta i {
    color: var(--sl-brand);
    margin-right: 0.25rem;
}

@media (max-width: 1024px) {
    .opin-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    .opin-hero-visual {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .opin-hero {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .opin-hero-quote {
        font-size: 1.4rem;
    }
    .opin-hero-visual {
        height: 200px;
    }
    .opin-card {
        min-height: auto;
    }
    .opin-card-photo {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .opin-hero {
        padding: 1rem;
    }
    .opin-hero-quote {
        font-size: 1.2rem;
    }
    .opin-hero-visual {
        height: 150px;
    }
    .opin-card-photo {
        height: 120px;
    }
}

/* ======================================================================
   SPORTS CATEGORY — HERO + SPLIT GRID LAYOUT
   Large featured article + split news section (big article left, portraits right)
   ====================================================================== */

/* Full-width hero section */
.sp-split {
    display: block;
    margin-bottom: 3rem;
}

/* Hero article with image overlay - BIGGER */
.sp-spotlight {
    position: relative;
    background: #000;
    border-radius: var(--sl-radius);
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.25);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-spotlight:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(228, 105, 23, 0.3);
}

.sp-spotlight-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sp-spotlight-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sp-spotlight-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-spotlight:hover .sp-spotlight-img {
    transform: scale(1.1);
}

/* Dark gradient overlay with enhanced effect */
.sp-spotlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.sp-spotlight:hover::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.9) 100%);
}

.sp-spotlight-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    background: var(--sl-brand);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 6px 20px rgba(228, 105, 23, 0.5);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Content positioned at bottom - BIGGER */
.sp-spotlight-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    z-index: 2;
    color: #fff;
}

.sp-spotlight-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: titleSlideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes titleSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp-spotlight-desc {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    animation: descFadeIn 0.8s ease-out 0.2s both;
}

@keyframes descFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.sp-spotlight-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    padding-bottom: 1.2rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    margin-bottom: 1.2rem;
}

.sp-spotlight-meta i {
    color: var(--sl-brand);
    margin-right: 0.4rem;
}

.sp-spotlight-read {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--sl-brand);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s ease;
}

.sp-spotlight-read i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-spotlight:hover .sp-spotlight-read {
    color: #f5a068;
}

.sp-spotlight:hover .sp-spotlight-read i {
    transform: translateX(8px);
}

/* ===== Latest Sports News Section ===== */
.sp-list {
    margin-top: 3rem;
}

.sp-list-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sl-text-dark);
    padding-bottom: 1.2rem;
    border-bottom: 4px solid var(--sl-brand);
    margin-bottom: 2.5rem;
}

.sp-list-header i {
    color: var(--sl-brand);
    font-size: 1.5rem;
}

/* Split layout: left (big article) + right (portrait cards) */
.sp-list-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left: Large article card */
.sp-list-featured {
    display: flex;
    flex-direction: column;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.sp-list-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(228, 105, 23, 0.25);
    border-color: var(--sl-brand);
}

.sp-list-featured-thumb {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-list-featured:hover .sp-list-featured-thumb {
    transform: scale(1.08);
}

.sp-list-featured-body {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sp-list-featured-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.sp-list-featured:hover .sp-list-featured-title {
    color: var(--sl-brand);
}

.sp-list-featured-desc {
    font-size: 0.9rem;
    color: var(--sl-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-list-featured-meta {
    font-size: 0.78rem;
    color: var(--sl-text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--sl-border);
}

.sp-list-featured-meta i {
    color: var(--sl-brand);
    margin-right: 0.3rem;
}

/* Right: Portrait cards grid */
.sp-list-portraits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.sp-list-item {
    display: flex;
    flex-direction: column;
    background: var(--sl-bg-card);
    border: 1px solid var(--sl-border);
    border-radius: var(--sl-radius);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
}

.sp-list-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(228, 105, 23, 0.2);
    border-color: var(--sl-brand);
}

.sp-list-thumb {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-list-item:hover .sp-list-thumb {
    transform: scale(1.08);
}

.sp-list-body {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sp-list-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sl-text-dark);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.sp-list-item:hover .sp-list-title {
    color: var(--sl-brand);
}

.sp-list-desc {
    font-size: 0.8rem;
    color: var(--sl-text-muted);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sp-list-meta {
    font-size: 0.75rem;
    color: var(--sl-text-muted);
    padding-top: 0.8rem;
    border-top: 1px solid var(--sl-border);
}

.sp-list-meta i {
    color: var(--sl-brand);
    margin-right: 0.3rem;
}

.sp-list-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--sl-text-muted);
    font-size: 0.95rem;
}

.sp-list-empty i {
    font-size: 3rem;
    color: var(--sl-brand);
    display: block;
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .sp-spotlight {
        height: 420px;
    }
    .sp-spotlight-title {
        font-size: 2rem;
    }
    .sp-spotlight-body {
        padding: 2.5rem 2rem;
    }
    .sp-list-container {
        grid-template-columns: 1fr;
    }
    .sp-list-featured-thumb {
        height: 240px;
    }
    .sp-list-portraits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-spotlight {
        height: 350px;
    }
    .sp-spotlight-title {
        font-size: 1.5rem;
    }
    .sp-spotlight-body {
        padding: 2rem 1.5rem;
    }
    .sp-spotlight-desc {
        font-size: 0.9rem;
        -webkit-line-clamp: 1;
    }
    .sp-list-header {
        font-size: 1.1rem;
    }
    .sp-list-container {
        grid-template-columns: 1fr;
    }
    .sp-list-featured-thumb {
        height: 200px;
    }
    .sp-list-portraits {
        grid-template-columns: repeat(2, 1fr);
    }
    .sp-list-thumb {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .sp-spotlight {
        height: 280px;
    }
    .sp-spotlight-title {
        font-size: 1.2rem;
    }
    .sp-spotlight-body {
        padding: 1.5rem 1rem;
    }
    .sp-spotlight-badge {
        font-size: 0.65rem;
        padding: 0.35rem 0.8rem;
        top: 1rem;
        left: 1rem;
    }
    .sp-list-header {
        font-size: 1rem;
    }
    .sp-list-portraits {
        grid-template-columns: 1fr;
    }
    .sp-list-featured-title {
        font-size: 1.1rem;
    }
    .sp-list-title {
        font-size: 0.85rem;
    }
}
.footer-section {
    background: #000000;
    color: #adb5bd;
    padding: 4rem 0 2rem;
    margin-top: auto;
}
.footer-title { color: #fff; font-family: var(--font-heading); font-weight: 900; margin-bottom: 1rem; }
.footer-logo {
    width: 80px; height: 80px;
    object-fit: contain;
    border-radius: 12px;
    background: #000000;
    padding: 6px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.footer-logo:hover { transform: scale(1.08); }
.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
.footer-brand .footer-title {
    margin-bottom: 0;
}
.footer-heading { color: #fff; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: #adb5bd; font-size: 0.9rem; }
.footer-links a:hover { color: var(--primary-color); }
.social-icon {
    width: 38px; height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    margin-right: 0.5rem;
    transition: background var(--transition-speed), transform var(--transition-speed);
}
.social-icon:hover { background: var(--primary-color); color: #fff; transform: translateY(-3px); }

/* ----------------------------------------------------------------------
   Misc helpers
   ---------------------------------------------------------------------- */
.text-justify { text-align: justify; }
.text-orange { color: var(--primary-color) !important; }
.hover-orange:hover { color: var(--primary-color) !important; }
.bg-orange { background-color: var(--primary-color) !important; }

/* Bootstrap card override to stay consistent */
.card { border: none; border-radius: var(--card-radius); background: var(--bg-card); box-shadow: 8px 8px 18px var(--shadow-dark), -8px -8px 18px var(--shadow-light); }
.card-hover:hover { transform: translateY(-4px); box-shadow: 12px 12px 24px var(--shadow-dark), -12px -12px 24px var(--shadow-light); }
.card-img-top { height: 200px; object-fit: cover; width: 100%; }

/* ----------------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-section { height: 56.25vw; max-height: calc(100vh - var(--header-h, 55px)); min-height: 300px; }
    .cat-hero-carousel { height: 44vh; min-height: 280px; }
    .article-card-soft { padding: 1.5rem; }
}
