/* ============================================================
   MAIN CSS — Seminari Sinar Buana Fransiskus Asisi
   Redesigned in the style of the University of Chicago
   ============================================================ */

/* ─── 1. Reset & Base ─── */
*, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--sb-text);
    background-color: var(--sb-bg);
    line-height: 1.65;
    overflow-x: hidden;
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

a { 
    color: var(--sb-primary); 
    text-decoration: none; 
    transition: color 0.2s ease, opacity 0.2s ease; 
}

a:hover { 
    color: var(--sb-primary-light); 
}

ul { 
    list-style: none; 
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.25;
    color: var(--sb-text);
    font-weight: 700;
}

p { 
    margin-bottom: 1rem; 
}

p:last-child { 
    margin-bottom: 0; 
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--sb-primary);
    color: white;
    padding: 8px;
    z-index: 100px;
}
.skip-link:focus {
    top: 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ============================================================
   2. HEADER & NAVIGATION — UChicago Style Two-Tier Navbar
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}

/* Tier 1: Utility Bar */
.brand-utility-bar {
    background-color: var(--sb-primary);
    height: 38px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-body);
}

.utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.utility-links-left,
.utility-links-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-links-left a,
.utility-links-right a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.utility-links-left a:hover,
.utility-links-right a:hover {
    color: var(--sb-secondary-light);
}

.utility-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    user-select: none;
}

/* Tier 2: Main Branding Bar */
.brand-main-navbar {
    background-color: var(--sb-white);
    height: 90px;
    border-bottom: 1px solid var(--sb-border);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
}

.main-navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Left & Right Main Navigation Menus */
.nav-left,
.nav-right {
    flex: 1;
    display: flex;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sb-text);
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.nav-link:hover {
    color: var(--sb-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--sb-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.dropdown-arrow {
    font-size: 8px;
    margin-left: 5px;
    opacity: 0.6;
}

/* Submenu Dropdown */
.sub-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-xs);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 100;
}

.has-dropdown:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--sb-text);
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.sub-menu a:hover {
    background-color: var(--sb-bg-alt);
    color: var(--sb-primary);
}

/* Header UChicago CTA (Daftar PPDB button) */
.nav-menu-cta {
    list-style: none;
}

.nav-link-cta {
    display: inline-block;
    padding: 6px 14px;
    border: 2px solid var(--sb-primary);
    color: var(--sb-primary);
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.nav-link-cta:hover {
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
}

.nav-link-cta:active {
    transform: scale(0.97);
}

/* Center Logo Branding - hanging look */
.site-branding {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 240px;
}

.branding-logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--sb-white);
    padding: 12px 16px 16px 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-bottom-left-radius: var(--radius-sm);
    border-bottom-right-radius: var(--radius-sm);
    border: 1px solid var(--sb-border);
    border-top: none;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition-base);
    margin-top: -38px; /* Hangs up to top brand utility bar level */
}

.branding-logo-link:hover {
    transform: translateY(2px);
}

.branding-logo-link img,
.branding-logo-link .logo-shield {
    font-size: 28px;
    color: var(--sb-primary);
    margin-bottom: 4px;
}

.branding-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-title-top {
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--sb-text-muted);
    text-transform: uppercase;
    line-height: 1.2;
}

.brand-title-main {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--sb-primary);
    letter-spacing: -0.3px;
    line-height: 1.1;
    margin: 2px 0;
}

.brand-title-sub {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    color: var(--sb-text-light);
    letter-spacing: 0.5px;
}

/* Sticky Header Scroll Behaviors */
.site-header.scrolled .brand-main-navbar {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .branding-logo-link {
    margin-top: -38px;
    padding-top: 8px;
    padding-bottom: 10px;
}

.site-header.scrolled .brand-title-main {
    font-size: 16px;
}

/* Hamburger for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--sb-text);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { 
    transform: translateY(8px) rotate(45deg); 
}

.hamburger.active span:nth-child(2) { 
    opacity: 0; 
    transform: scaleX(0); 
}

.hamburger.active span:nth-child(3) { 
    transform: translateY(-8px) rotate(-45deg); 
}


/* Mobile Drawer Styles */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: var(--sb-white);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-drawer-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--sb-border);
    background-color: var(--sb-bg-alt);
}

.mobile-drawer-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--sb-primary);
}

.drawer-close-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--sb-text);
    cursor: pointer;
}

.mobile-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin-bottom: 16px;
}

.mobile-nav-list a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--sb-text);
    display: block;
    padding: 6px 0;
}

.mobile-drawer-cta-item {
    margin-top: 24px;
}

.mobile-drawer-cta-btn {
    display: block;
    text-align: center;
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
    padding: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   3. HERO BANNER: VIDEO/IMAGE SPOTLIGHT
   ============================================================ */
.hero-spotlight-section {
    position: relative;
    height: 85vh;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--sb-primary-dark);
    overflow: hidden;
    padding-top: 128px; /* Room for hanging logo bar */
}

.hero-spotlight-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-spotlight-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-spotlight-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-spotlight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-spotlight-slide.active .hero-spotlight-bg {
    animation: kenBurnsZoom 10s ease forwards;
}

@keyframes kenBurnsZoom {
    from { transform: scale(1); }
    to { transform: scale(1.06); }
}

.hero-spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 5, 10, 0.45) 0%,
        rgba(26, 5, 10, 0.72) 60%,
        rgba(26, 5, 10, 0.88) 100%
    );
    z-index: 3;
}

.hero-spotlight-content {
    position: relative;
    z-index: 4;
    max-width: 920px;
    text-align: center;
    color: var(--sb-white);
    padding: 0 24px;
    margin-bottom: 50px; /* Room for bottom CTA overlay */
}

.spotlight-badge {
    display: inline-block;
    color: var(--sb-secondary-light);
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.spotlight-headline {
    font-family: var(--font-heading);
    font-size: clamp(30px, 4.8vw, 52px);
    font-weight: 700;
    color: var(--sb-white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.spotlight-subheadline {
    font-family: var(--font-body);
    font-size: clamp(14.5px, 1.8vw, 17.5px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Bottom Spotlight CTA Bar */
.spotlight-cta-bar {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background-color: rgba(122, 16, 36, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-dark);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    z-index: 4;
    transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.spotlight-cta-bar:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: var(--shadow-glow-crimson);
}

.cta-bar-inner {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: 54px;
}

.cta-bar-btn {
    flex: 1;
    max-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sb-white) !important;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: all var(--transition-base);
}

.cta-bar-btn:active {
    transform: scale(0.97);
}

.cta-bar-btn:first-child {
    border-left: none;
}

.cta-bar-btn:hover {
    background-color: var(--sb-white);
    color: var(--sb-primary) !important;
}

/* ============================================================
   4. ALERTS / QUOTE TICKER BAR
   ============================================================ */
.sb-ticker-bar {
    display: flex;
    align-items: center;
    background-color: var(--sb-bg-alt);
    border-bottom: 1px solid var(--sb-border);
    height: 48px;
    padding: 0 24px;
    overflow: hidden;
}

.sb-ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--sb-primary);
    color: var(--sb-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 20px;
    border-radius: var(--radius-xs);
}

.sb-ticker-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.sb-ticker-track {
    display: flex;
    width: max-content;
    white-space: nowrap;
    align-items: center;
    animation: sbMarquee 40s linear infinite;
}

.sb-ticker-track:hover,
.sb-ticker-track.paused {
    animation-play-state: paused;
}

.sb-ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 48px;
}

.sb-ticker-text {
    font-family: var(--font-body);
    color: var(--sb-text);
    font-size: 13.5px;
    font-weight: 500;
}

.sb-ticker-source {
    font-family: var(--font-heading);
    color: var(--sb-primary);
    font-weight: 600;
    font-size: 13px;
    margin-left: 6px;
}

.sb-ticker-sep {
    color: var(--sb-secondary);
    font-size: 14px;
    margin-left: 24px;
}

@keyframes sbMarquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   5. LATEST NEWS (4-Column Borderless Grid)
   ============================================================ */
.uchicago-news-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-white);
}

.section-headline-bar {
    margin-bottom: 48px;
}

.section-headline-bar h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--sb-primary);
    letter-spacing: -0.5px;
    margin: 0;
}

.headline-underline {
    width: 60px;
    height: 4px;
    background-color: var(--sb-secondary);
    margin-top: 12px;
}

.section-headline-bar.centered {
    text-align: center;
}

.section-headline-bar.centered .headline-underline {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--sb-text-light);
    max-width: 640px;
    margin: 12px 0 0 0;
    line-height: 1.6;
}

.section-headline-bar.centered .section-subtitle-desc {
    margin-left: auto;
    margin-right: auto;
}

.uchicago-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.news-card-borderless {
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-base);
}

.news-card-image {
    aspect-ratio: 3/2;
    overflow: hidden;
    position: relative;
    background-color: var(--sb-bg-alt);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.news-card-borderless:hover .news-card-image {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.news-card-borderless:hover .news-card-image img {
    transform: scale(1.05);
}

.news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sb-primary);
    color: var(--sb-white);
    font-size: 32px;
}

.news-card-body {
    display: flex;
    flex-direction: column;
}

.news-source-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--sb-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}

.news-title a {
    color: var(--sb-text);
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--sb-primary);
}

.news-date {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--sb-text-muted);
}

.section-more-btn-wrap {
    text-align: center;
    margin-top: 24px;
}

.btn-uchicago-maroon {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-bounce);
}

.btn-uchicago-maroon:hover {
    background-color: var(--sb-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-crimson);
}

.btn-uchicago-maroon:active {
    transform: scale(0.97);
}

.btn-uchicago-outline {
    display: inline-block;
    padding: 11px 26px;
    border: 2px solid var(--sb-primary);
    color: var(--sb-primary) !important;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-xl);
    transition: all var(--transition-bounce);
}

.btn-uchicago-outline:hover {
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-crimson);
}

.btn-uchicago-outline:active {
    transform: scale(0.97);
}

/* ============================================================
   6. DISTINCTLY SINAR BUANA (3-Column Tile Grid)
   ============================================================ */
.distinctly-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-bg-alt);
}

.distinctly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

@media (min-width: 992px) {
    .distinctly-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
    }
    .distinctly-tile:nth-child(1) {
        grid-row: span 2;
        display: flex;
        flex-direction: column;
    }
    .distinctly-tile:nth-child(1) .tile-image-wrap {
        flex: 1;
        aspect-ratio: auto;
    }
    .distinctly-tile:nth-child(2),
    .distinctly-tile:nth-child(3) {
        display: grid;
        grid-template-columns: 180px 1fr;
        align-items: stretch;
    }
    .distinctly-tile:nth-child(2) .tile-image-wrap,
    .distinctly-tile:nth-child(3) .tile-image-wrap {
        aspect-ratio: auto;
        height: 100%;
    }
}

.distinctly-tile {
    display: flex;
    flex-direction: column;
    background-color: var(--sb-white);
    padding: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--sb-border);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base), border-color var(--transition-base);
}

.distinctly-tile:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.tile-image-wrap {
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: var(--sb-border);
}

.tile-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.distinctly-tile:hover .tile-image-wrap img {
    transform: scale(1.04);
}

.tile-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tile-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 24px 24px 12px 24px;
    line-height: 1.3;
}

.tile-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--sb-text-light);
    line-height: 1.65;
    margin: 0 24px 24px 24px;
    flex: 1;
}

.tile-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0 24px 24px 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.tile-link:hover {
    color: var(--sb-primary-dark);
}

/* ============================================================
   7. STATISTIK DALAM ANGKA (4-Column Counter Grid)
   ============================================================ */
.uchicago-stats-section {
    padding: 60px 0;
    background-color: var(--sb-primary);
    color: var(--sb-white);
}

.stats-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stats-number-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--sb-secondary-light);
    margin-bottom: 8px;
}

.stats-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.stats-suffix {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-left: 2px;
}

.stats-label {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   8. FORMASI / PILAR PEMBINAAN (UChicago Callout Tiles)
   ============================================================ */
.formasi-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-white);
}

.formasi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .formasi-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .formasi-grid {
        grid-template-columns: 1fr;
    }
}

.formasi-card {
    background-color: var(--sb-bg-alt);
    border: 1px solid var(--sb-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base), background-color 0.25s ease, border-color var(--transition-base);
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .formasi-card {
        flex-direction: row;
        align-items: stretch;
    }
}

.formasi-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-premium);
    background-color: var(--sb-white);
    border-color: transparent;
}

.formasi-card-banner {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    background-color: var(--sb-primary-dark);
    color: var(--sb-white);
}

@media (min-width: 992px) {
    .formasi-card-banner {
        width: 150px;
        height: auto;
        flex-shrink: 0;
    }
}

.banner-rohani { background-color: #7A1024; }
.banner-akademik { background-color: #5C1D24; }
.banner-karakter { background-color: #401019; }
.banner-pastoral { background-color: #2D050B; }

.formasi-card-banner svg {
    width: 54px;
    height: 54px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform var(--transition-bounce), color var(--transition-base);
}

.formasi-card:hover .formasi-card-banner svg {
    transform: scale(1.1) rotate(3deg);
    color: var(--sb-secondary);
}

.formasi-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.formasi-card-content h3 {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0 0 4px 0;
}

.pilar-latin {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sb-secondary-dark);
    margin-bottom: 12px;
    display: block;
}

.formasi-card-content p {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--sb-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   9. EVENTS / AGENDA (Signature UChicago Column Grid)
   ============================================================ */
.uchicago-events-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-bg-alt);
}

.uchicago-events-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.event-row-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base), border-color var(--transition-base);
}

.event-row-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.event-date-side {
    background-color: var(--sb-primary);
    color: var(--sb-white);
    padding: 0;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 4px solid var(--sb-secondary);
}

@media (min-width: 768px) {
    .event-date-side {
        width: 90px;
        height: 90px;
    }
}

.event-month {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.event-day {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

@media (min-width: 768px) {
    .event-day {
        font-size: 36px;
    }
}

.event-info-side {
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 6px;
}

@media (min-width: 768px) {
    .event-info-side {
        padding: 20px 28px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
}

.event-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

@media (min-width: 768px) {
    .event-title {
        font-size: 16.5px;
        flex: 1;
    }
}

.event-title a {
    color: var(--sb-text);
    transition: color 0.2s ease;
}

.event-title a:hover {
    color: var(--sb-primary);
}

.event-meta-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (min-width: 768px) {
    .event-meta-items {
        flex-direction: row;
        gap: 20px;
        flex-shrink: 0;
    }
}

.event-meta-time,
.event-meta-loc {
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--sb-text-muted);
}

.no-events-block {
    text-align: center;
    padding: 40px;
    background-color: var(--sb-white);
    border: 1px dashed var(--sb-border);
}

.no-events-block p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--sb-text-muted);
    margin: 0;
}

/* ============================================================
   10. GALERI FOTO (Clean Card Row Layout)
   ============================================================ */
.uchicago-gallery-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-white);
}

.uchicago-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .uchicago-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
    .gallery-tile:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }
}

.gallery-tile {
    display: block;
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background-color: var(--sb-primary-dark);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base);
}

.gallery-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

@media (min-width: 768px) {
    .gallery-tile {
        aspect-ratio: auto;
        height: 100%;
    }
}

.gallery-tile-image {
    width: 100%;
    height: 100%;
}

.gallery-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-tile:hover .gallery-tile-image img {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sb-primary-dark);
    color: var(--sb-white);
    font-size: 32px;
}

.gallery-tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0.9;
    transition: background var(--transition-base);
}

.gallery-tile:hover .gallery-tile-overlay {
    background: linear-gradient(to top, rgba(122, 16, 36, 0.95) 0%, rgba(122, 16, 36, 0.4) 60%, transparent 100%);
}

.gallery-tile-overlay span {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--sb-white);
    line-height: 1.3;
}

/* ============================================================
   11. ADMISSIONS & LOKASI (PPDB & Maps)
   ============================================================ */
.uchicago-admissions-section {
    padding: var(--section-py) 0;
    background-color: #1C1C1E;
    color: var(--sb-white);
}

.admissions-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.admissions-info-panel {
    display: flex;
    flex-direction: column;
}

.admissions-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    color: var(--sb-secondary-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.admissions-info-panel h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--sb-white);
    margin: 0 0 20px 0;
}

.admissions-info-panel p {
    font-family: var(--font-body);
    font-size: 15.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.admissions-schedule-box {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--sb-secondary);
    padding: 20px;
    margin-bottom: 30px;
}

.admissions-schedule-box h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--sb-white);
    margin: 0 0 10px 0;
}

.admissions-schedule-box p {
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
}

.admissions-schedule-box p:last-child {
    margin-bottom: 0;
}

.status-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    background-color: var(--sb-secondary);
    color: var(--sb-text);
}

.status-badge.buka,
.status-badge.open,
.status-badge.aktif {
    background-color: #243E36;
    color: var(--sb-white);
}

.admissions-action-buttons {
    display: flex;
}

.admissions-requirements-panel {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
}

.admissions-requirements-panel h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--sb-white);
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.requirements-list-checked {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.requirements-list-checked li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.req-check-icon {
    color: var(--sb-secondary-light);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.req-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ============================================================
   12. MAP & DETAIL KONTAK (Google maps & info)
   ============================================================ */
.uchicago-map-section {
    padding: var(--section-py) 0;
    background-color: var(--sb-white);
}

.map-split-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: stretch;
}

.map-details-card {
    background-color: var(--sb-bg-alt);
    border: 1px solid var(--sb-border);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.map-details-card h2 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0 0 28px 0;
}

.contact-details-lines {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-line {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.line-icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
}

.line-text strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--sb-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.line-text p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--sb-text-light);
    margin: 0;
    line-height: 1.5;
}

.line-text p a {
    color: var(--sb-text-light);
    transition: color 0.2s ease;
}

.line-text p a:hover {
    color: var(--sb-primary);
}

.map-iframe-wrapper {
    border: 1px solid var(--sb-border);
    background-color: var(--sb-bg-alt);
}

.map-iframe-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ============================================================
   13. FOOTER — Dark Corporate UChicago Style
   ============================================================ */
.site-footer {
    background-color: #1C1C1E;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 14.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    padding: 80px 0 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 0.9fr);
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-cross {
    font-size: 28px;
    color: var(--sb-secondary-light);
}

.footer-site-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--sb-white);
    letter-spacing: -0.2px;
}

.footer-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-motto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--sb-secondary);
    padding: 10px 14px;
    font-size: 12.5px;
    font-style: italic;
    color: var(--sb-white);
    margin-bottom: 20px;
}

.footer-motto-icon {
    font-size: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background-color: var(--sb-secondary);
    color: var(--sb-text);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--sb-white);
    margin: 0 0 24px 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: var(--sb-secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--sb-secondary-light);
    padding-left: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13.5px;
}

.footer-contact-icon {
    font-size: 14px;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--sb-secondary-light);
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-copyright span {
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================================
   14. POST & CONTENT PAGES (General Inner Page Styles)
   ============================================================ */
.page-hero {
    background: linear-gradient(150deg, var(--sb-primary) 0%, var(--sb-primary-dark) 100%);
    padding: 150px 0 52px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content { 
    position: relative; 
    z-index: 1; 
}

.page-hero h1 {
    font-size: clamp(26px, 4vw, 44px);
    color: #fff;
    margin-bottom: 14px;
}

.page-hero-desc {
    color: rgba(255,255,255,.78);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto;
}

/* Content Layout */
.content-wrap {
    padding: 60px 0;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
}

/* Post Card */
.post-card {
    background: var(--sb-white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--sb-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: all 0.25s ease;
}

.post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0,0,0,.09);
}

.post-card-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card-thumb img { 
    transform: scale(1.04); 
}

.post-card-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sb-primary) 0%, var(--sb-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: rgba(255,255,255,.18);
    min-height: 170px;
}

.post-card-body { 
    padding: 22px; 
}

.post-card-body h2 { 
    font-size: 17px; 
    margin-bottom: 8px; 
}

.post-card-body h2 a { 
    color: var(--sb-text); 
}

.post-card-body h2 a:hover { 
    color: var(--sb-primary); 
}

.post-card-body p { 
    color: var(--sb-text-light); 
    font-size: 13.5px; 
    margin-bottom: 14px; 
}

.post-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--sb-border);
}

/* Archive Grid */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 24px;
    margin-bottom: 44px;
}

/* Single Post */
.single-article {
    background: var(--sb-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.single-article-hero {
    aspect-ratio: 16/6;
    overflow: hidden;
}

.single-article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-article-content { 
    padding: 44px; 
}

.single-article-content h1 {
    font-size: clamp(22px, 3.5vw, 36px);
    margin-bottom: 18px;
    color: var(--sb-primary);
}

.article-body {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--sb-text-light);
}

.article-body h2,
.article-body h3 { 
    color: var(--sb-primary); 
    margin: 28px 0 14px; 
}

.article-body p { 
    margin-bottom: 18px; 
}

.article-body blockquote {
    border-left: 3px solid var(--sb-secondary);
    padding: 14px 22px;
    background: var(--sb-bg);
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--sb-text);
}

/* Sidebar */
.sidebar .widget {
    background: var(--sb-white);
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid var(--sb-border);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.sidebar .widget-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--sb-primary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sb-primary);
}

/* Breadcrumb */
.sb-breadcrumb {
    background: var(--sb-bg-alt);
    padding: 12px 0;
    border-bottom: 1px solid var(--sb-border);
}

.sb-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sb-breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--sb-text-muted);
}

.sb-breadcrumb-list li::after { 
    content: '›'; 
    color: var(--sb-border); 
}

.sb-breadcrumb-list li:last-child::after { 
    display: none; 
}

.sb-breadcrumb-list a { 
    color: var(--sb-primary); 
}

.sb-breadcrumb-list .current { 
    color: var(--sb-text); 
}

/* Post Meta */
.sb-post-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.sb-post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--sb-text-muted);
}

/* Social Share */
.sb-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--sb-border);
}

.sb-social-share span {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--sb-text-muted);
}

.sb-social-share a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.sb-share-fb { background: #1877f2; }
.sb-share-tw { background: #000; }
.sb-share-wa { background: #25d366; }

.sb-social-share a:hover { 
    transform: translateY(-2px); 
    opacity: .85; 
}

/* Pagination */
.sb-pagination { 
    margin-top: 36px; 
}

.sb-pagination .page-numbers {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sb-pagination .page-numbers li a,
.sb-pagination .page-numbers li span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid var(--sb-border);
    color: var(--sb-text);
    transition: all 0.2s ease;
}

.sb-pagination .page-numbers li a:hover {
    background: var(--sb-primary);
    color: #fff;
    border-color: var(--sb-primary);
}

.sb-pagination .page-numbers li span.current {
    background: var(--sb-primary);
    color: #fff;
    border-color: var(--sb-primary);
}

/* 404 */
.error-404-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 0;
}

.error-404-number {
    font-size: 140px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--sb-primary);
    opacity: .1;
    line-height: 1;
    display: block;
}

.error-404-section h1 {
    font-size: 28px;
    color: var(--sb-primary);
    margin-bottom: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--sb-primary);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 999;
    box-shadow: 0 4px 14px rgba(122,16,36,.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--sb-secondary);
    color: var(--sb-text);
    transform: translateY(-2px);
}

/* Animasi masuk — lebih natural, tidak terlalu dramatis */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.18s; }
[data-animate-delay="3"] { transition-delay: 0.28s; }
[data-animate-delay="4"] { transition-delay: 0.38s; }

/* ============================================================
   15. RESPONSIVE MEDIA QUERIES (Global Layout Overrides)
   ============================================================ */

/* ─── Desktop Large / Medium Navigation Adjustments ─── */
@media (max-width: 1200px) {
    .nav-left {
        padding-right: 20px;
    }
    .nav-right {
        padding-left: 20px;
    }
    .nav-menu {
        gap: 16px;
    }
    .branding-logo-link {
        padding: 10px 14px 14px 14px;
    }
    .brand-title-main {
        font-size: 16px;
    }
}

/* ─── Tablet Landscape & Portrait (max-width: 1024px) ─── */
@media (max-width: 1024px) {
    /* Hide normal desktop menus, show hamburger */
    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .site-branding {
        width: auto;
        flex: 1;
        justify-content: flex-start;
    }

    .branding-logo-link {
        margin-top: 0;
        border: none;
        box-shadow: none;
        padding: 8px 0;
        flex-direction: row;
        gap: 12px;
        align-items: center;
        background-color: transparent;
    }

    .branding-logo-link img,
    .branding-logo-link .logo-shield {
        margin-bottom: 0;
        font-size: 26px;
    }

    .branding-text {
        align-items: flex-start;
        text-align: left;
    }

    .brand-title-top,
    .brand-title-sub {
        display: none; /* Simplify on tablet/mobile */
    }

    .brand-title-main {
        font-size: 18px;
        color: var(--sb-text);
    }

    .site-header.scrolled .brand-title-main {
        color: var(--sb-primary);
    }

    .brand-main-navbar {
        height: 70px;
    }

    .site-header.scrolled .branding-logo-link {
        margin-top: 0;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    /* Grids */
    .uchicago-news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .distinctly-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .uchicago-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .uchicago-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .formasi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admissions-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-split-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }
}

/* ─── Mobile Viewports (max-width: 768px) ─── */
@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    /* Hero section adjustments */
    .hero-spotlight-section {
        height: 75vh;
        min-height: 460px;
        padding-top: 80px;
    }

    .spotlight-headline {
        font-size: 28px;
    }

    .spotlight-subheadline {
        font-size: 14px;
    }

    /* Bottom CTA bar on mobile -> vertical stack or wrap */
    .cta-bar-inner {
        height: auto;
        flex-direction: column;
    }

    .cta-bar-btn {
        max-width: none;
        width: 100%;
        padding: 12px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .cta-bar-btn:first-child {
        border-left: none;
    }

    .cta-bar-btn:last-child {
        border-bottom: none;
    }

    /* News */
    .uchicago-news-grid {
        grid-template-columns: 1fr;
    }

    /* Events */
    .uchicago-events-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Formasi */
    .formasi-grid {
        grid-template-columns: 1fr;
    }

    /* Map iframe sizing */
    .map-iframe-wrapper iframe {
        min-height: 300px;
    }

    /* Content Layout */
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sidebar {
        margin-top: 20px;
    }

    .single-article-content {
        padding: 24px;
    }
}

/* ─── Extra Small Mobile (max-width: 480px) ─── */
@media (max-width: 480px) {
    .brand-utility-bar {
        display: none; /* Hide top utility bar on very small phones to save vertical space */
    }

    .brand-main-navbar {
        height: 60px;
    }

    .brand-title-main {
        font-size: 15px;
    }

    /* Stats */
    .stats-grid-clean {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Gallery */
    .uchicago-gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
    }

    .admissions-requirements-panel {
        padding: 24px;
    }

    .map-details-card {
        padding: 28px 20px;
    }
}

/* ============================================================
   DIREKTORI PEMBINA CAROUSEL
   ============================================================ */
.pembina-slider-section {
    background-color: var(--sb-bg-alt);
    padding: var(--section-py) 0;
}

.pembina-carousel-outer {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.pembina-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.pembina-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.pembina-card-slide {
    flex: 0 0 100%;
    padding: 15px;
    box-sizing: border-box;
}

@media (min-width: 769px) {
    .pembina-card-slide {
        flex: 0 0 50%;
    }
}

@media (min-width: 1025px) {
    .pembina-card-slide {
        flex: 0 0 33.333%;
    }
}

.pembina-card-inner {
    background: var(--sb-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--sb-border);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-bounce), box-shadow var(--transition-base), border-color var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.pembina-card-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.pembina-card-image-box {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 24px;
    border: 3px solid var(--sb-secondary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: var(--sb-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pembina-card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pembina-card-inner:hover .pembina-card-image-box img {
    transform: scale(1.08);
}

.pembina-avatar-placeholder {
    font-size: 44px;
    color: var(--sb-primary-light);
}

.pembina-card-info h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--sb-primary);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.pembina-card-role {
    font-size: 13.5px;
    color: var(--sb-text-light);
    font-weight: 500;
    margin-bottom: 24px;
    min-height: 40px;
}

.pembina-card-detail-btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius-xl);
    color: var(--sb-primary);
    border: 1.5px solid var(--sb-primary);
    background: transparent;
    transition: all var(--transition-bounce);
    text-decoration: none;
}

.pembina-card-detail-btn:hover {
    background-color: var(--sb-primary);
    color: var(--sb-white) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pembina-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.pembina-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--sb-text-muted);
    border: none;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.pembina-dot.active {
    opacity: 1;
    background: var(--sb-primary);
    width: 24px;
}


/* ============================================================
   HALO DUNIA CUSTOM PAGE LAYOUT (is_single('halo-dunia'))
   ============================================================ */
.halo-dunia-wrap {
    padding: 60px 0;
    background-color: var(--sb-bg);
}

.halo-dunia-main-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* WARM GREETING / SAMBUTAN CARD */
.special-greeting-card {
    background: var(--sb-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--sb-border);
    border-left: 5px solid var(--sb-primary);
}

.greeting-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.greeting-quote-icon {
    font-size: 60px;
    color: var(--sb-secondary);
    line-height: 0.7;
    font-family: Georgia, serif;
}

.greeting-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0;
    font-family: var(--font-heading);
}

.greeting-body p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--sb-text-light);
    margin-bottom: 16px;
}

.greeting-signature {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--sb-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.signature-text {
    display: flex;
    flex-direction: column;
}

.signature-text strong {
    font-size: 16px;
    color: var(--sb-primary);
}

.signature-text span {
    font-size: 13px;
    color: var(--sb-text-muted);
}

/* WIDGETS OVERRIDES FOR LITURGICAL CALENDAR */
.widget-liturgical-calendar {
    border-top: 4px solid var(--sb-secondary) !important;
}

.widget-liturgical-table-wrapper table {
    border: 2px solid var(--sb-secondary-dark) !important;
    background-color: #FFFFCC !important; /* warm yellow */
    border-collapse: collapse;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    font-family: var(--font-body);
}

.widget-liturgical-table-wrapper table td {
    padding: 8px !important;
    border: 1px solid var(--sb-border) !important;
}

.widget-liturgical-table-wrapper table img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 4px auto;
}

/* POPULAR ARTICLES LIST */
.widget-top-articles {
    border-top: 4px solid var(--sb-primary) !important;
}

.top-articles-list {
    margin-top: 15px;
}

.top-article-link:hover .top-article-title {
    color: var(--sb-primary) !important;
}

.top-article-thumb img {
    transition: transform 0.3s ease;
}

.top-article-link:hover .top-article-thumb img {
    transform: scale(1.08);
}

/* ============================================================
   16. COMMENTS & REPLY SECTION (UChicago Styled)
   ============================================================ */
#comments {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--sb-border);
}

.comments-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--sb-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
    border-left: 4px solid var(--sb-secondary);
    padding-left: 12px;
}

.comment-list {
    margin-bottom: 48px;
    padding: 0;
}

.comment-list li.comment {
    background: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    list-style: none;
    transition: transform var(--transition-base);
}

.comment-list li.comment:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.comment-body {
    position: relative;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.comment-meta img.avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 2px solid var(--sb-secondary);
}

.comment-author-info {
    display: flex;
    flex-direction: column;
}

.comment-author-info cite.fn {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--sb-primary);
}

.comment-metadata a {
    font-size: 11.5px;
    color: var(--sb-text-muted);
}

.comment-content {
    font-size: 14.2px;
    color: var(--sb-text-light);
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 0;
}

.reply {
    margin-top: 12px;
    text-align: right;
}

.reply a {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sb-primary);
    border: 1px solid var(--sb-primary);
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
}

.reply a:hover {
    background: var(--sb-primary);
    color: var(--sb-white) !important;
}

/* Comment Form Layout (#respond) */
#respond {
    background: var(--sb-white);
    border: 1px solid var(--sb-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
}

#reply-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--sb-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

#reply-title a {
    color: var(--sb-primary);
}

.comment-notes {
    font-size: 13px;
    color: var(--sb-text-muted);
    margin-bottom: 24px;
    grid-column: span 3;
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: span 3;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--sb-text-light);
}

.comment-form-comment textarea {
    width: 100%;
    min-height: 140px;
    padding: 12px 16px;
    border: 1.5px solid var(--sb-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--sb-text);
    background-color: var(--sb-bg);
    transition: all var(--transition-fast);
    resize: vertical;
    outline: none;
}

.comment-form-comment textarea:focus {
    border-color: var(--sb-primary);
    background-color: var(--sb-white);
    box-shadow: 0 0 0 3px rgba(122, 16, 36, 0.08);
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--sb-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--sb-text);
    background-color: var(--sb-bg);
    transition: all var(--transition-fast);
    outline: none;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    border-color: var(--sb-primary);
    background-color: var(--sb-white);
    box-shadow: 0 0 0 3px rgba(122, 16, 36, 0.08);
}

/* Cookies Consent Checkbox */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
    grid-column: span 3;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    cursor: pointer;
    accent-color: var(--sb-primary);
}

.comment-form-cookies-consent label {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--sb-text-light);
    cursor: pointer;
}

/* Submit Button */
.form-submit {
    margin-top: 12px;
    grid-column: span 3;
}

.form-submit input[type="submit"] {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--sb-primary);
    color: var(--sb-white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.form-submit input[type="submit"]:hover {
    background-color: var(--sb-secondary);
    color: var(--sb-white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-submit input[type="submit"]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        grid-column: span 3;
    }
}

/* ============================================================
   17. REPLICATING PORTAL BELAJAR ARTICLE LAYOUT (UChicago Maroon/Gold style)
   ============================================================ */

/* Theme variables overrides specifically scoped to news section */
.sm-news-main {
    --primary: var(--sb-primary);
    --primary-rgb: 122, 16, 36;
    --primary-hover: var(--sb-primary-dark);
    --emerald: #10b981;
    --emerald-hover: #059669;
    --warning: var(--sb-secondary);
    --warning-hover: var(--sb-secondary-dark);
    --dark: var(--sb-text);
    --light: var(--sb-bg-alt);
    --border: var(--sb-border);
    --text-main: var(--sb-text-light);
    --text-muted: var(--sb-text-muted);
    --bg-card: var(--sb-white);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    font-family: 'Plus Jakarta Sans', var(--font-body);
}

.sm-news-main h1,
.sm-news-main h2,
.sm-news-main h3,
.sm-news-main h4 {
    font-family: 'Outfit', var(--font-heading);
}

/* Page Hero layout */
.sm-news-hero {
    position: relative;
    width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
    font-family: 'Plus Jakarta Sans', var(--font-body);
}
.sm-news-hero h1,
.sm-news-hero h2,
.sm-news-hero h3,
.sm-news-hero h4 {
    font-family: 'Outfit', var(--font-heading);
}
.sm-news-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,23,42,0.18) 0%,
        rgba(15,23,42,0.72) 55%,
        rgba(15,23,42,0.92) 100%
    );
    z-index: 1;
}
.sm-news-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 40px;
}
.sm-news-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb inside hero */
.sm-news-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    font-size: 0.85rem;
}
.sm-news-breadcrumb a {
    color: rgba(255,255,255,0.75) !important;
    text-decoration: none !important;
    transition: color 0.2s;
}
.sm-news-breadcrumb a:hover { color: #ffffff !important; }
.sm-news-breadcrumb span { color: rgba(255,255,255,0.55); }
.sm-news-breadcrumb .bc-icon { color: rgba(255,255,255,0.4); font-size: 0.7rem; }

/* Category badge */
.sm-news-kelas-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.15); 
    color: #e2e8f0; 
    border: 1px solid rgba(255,255,255,0.2);
}

.sm-news-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 16px rgba(0,0,0,0.3);
    max-width: 850px;
}

/* Hero meta */
.sm-news-hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.sm-news-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 7px 11px;
}
.sm-news-hero-meta i { color: rgba(255,255,255,0.5); }

/* Layout Grid */
.sm-news-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 46px;
    margin-top: -34px;
    position: relative;
    z-index: 4;
    align-items: start;
}

/* Article panel */
.sm-news-article {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

/* Tags Strip */
.sm-news-tags-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 24px 36px 0;
}
.sm-news-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    background: #f1f5f9;
    color: var(--sb-primary) !important;
    text-decoration: none !important;
    border: 1px solid rgba(122, 16, 36, 0.15);
    transition: all 0.2s;
}
.sm-news-tag:hover {
    background: var(--sb-primary);
    color: #fff !important;
    border-color: var(--sb-primary);
}

/* Content details formatting */
.sm-news-content {
    padding: 34px 44px 46px;
    font-size: 1.04rem;
    line-height: 1.9;
    color: #1e293b;
}
.sm-news-content h2,
.sm-news-content h3,
.sm-news-content h4 {
    color: var(--sb-primary);
    margin-top: 1.8em;
    margin-bottom: 0.6em;
    line-height: 1.25;
}
.sm-news-content h2 { font-size: 1.6rem; }
.sm-news-content h3 { font-size: 1.3rem; }
.sm-news-content p { margin-bottom: 1.3em; line-height: 1.9; }
.sm-news-content img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    margin: 1.2em 0;
}
.sm-news-content ul,
.sm-news-content ol {
    padding-left: 1.6em;
    margin-bottom: 1.3em;
}
.sm-news-content li { margin-bottom: 0.4em; }
.sm-news-content a {
    color: var(--sb-primary);
    text-decoration: underline;
}
.sm-news-content blockquote {
    border-left: 4px solid var(--sb-primary);
    padding: 12px 20px;
    margin: 1.5em 0;
    background: #fdf3f5;
    border-radius: 0 8px 8px 0;
    color: var(--sb-primary-dark);
    font-style: italic;
}

/* Footer panel of article */
.sm-news-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 22px 44px 30px;
    border-top: 1px solid var(--sb-border);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Sidebar structure */
.sm-news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
    min-width: 0;
}

/* Cards style */
.sm-sidebar-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    margin-bottom: 24px;
}

.sm-sidebar-card:last-child {
    margin-bottom: 0;
}

.sm-sidebar-card .widget-title {
    color: var(--sb-primary);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px solid var(--sb-secondary);
    padding-bottom: 8px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Top popular articles meta info */
.top-article-link:hover .top-article-title {
    color: var(--sb-primary) !important;
}
.top-article-thumb img {
    transition: transform 0.3s ease;
}
.top-article-link:hover .top-article-thumb img {
    transform: scale(1.08);
}

/* ============================================================
   RESPONSIVE LAYOUT
   ============================================================ */
body.single-post .site-main-content.sm-news-main {
    background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 52%, #f8fafc 100%);
    padding-bottom: 72px;
}

@media (max-width: 1024px) {
    .sm-news-layout {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    .sm-news-sidebar {
        position: static;
    }
    body.single-post .sm-news-layout {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    body.single-post .sm-news-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .sm-news-hero {
        height: auto;
        min-height: 390px;
    }
    .sm-news-hero-content {
        padding-bottom: 34px;
        padding-top: 80px;
    }
    .sm-news-title {
        font-size: 1.8rem;
    }
    .sm-news-content {
        padding: 24px 22px 36px;
    }
    .sm-news-tags-strip {
        padding: 20px 22px 0;
    }
    .sm-news-article-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
    }
    .sm-sidebar-card {
        padding: 24px 22px;
    }
    body.single-post .sm-news-hero {
        height: auto;
        min-height: 390px;
    }
    body.single-post .sm-news-hero-content {
        padding-bottom: 34px;
        padding-top: 80px;
    }
    body.single-post .sm-news-tags-strip,
    body.single-post .sm-news-content,
    body.single-post .sm-news-article-footer {
        padding-left: 22px;
        padding-right: 22px;
    }
    body.single-post .sm-sidebar-card {
        padding: 24px 22px;
    }
}

/* ============================================================
   Tasteskill Scroll Reveal & Interaction Animations
   ============================================================ */
/* Scroll-reveal animations */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
[data-animate][data-delay="100"]  { transition-delay: 100ms; }
[data-animate][data-delay="150"]  { transition-delay: 150ms; }
[data-animate][data-delay="200"]  { transition-delay: 200ms; }
[data-animate][data-delay="250"]  { transition-delay: 250ms; }
[data-animate][data-delay="300"]  { transition-delay: 300ms; }
[data-animate][data-delay="350"]  { transition-delay: 350ms; }
[data-animate][data-delay="400"]  { transition-delay: 400ms; }
[data-animate][data-delay="450"]  { transition-delay: 450ms; }
[data-animate][data-delay="500"]  { transition-delay: 500ms; }

/* Micro-animations */
/* Smooth hover filters, scales, and shadow translations */
.news-card-borderless, 
.distinctly-tile, 
.formasi-card, 
.event-row-card, 
.gallery-tile {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sliding link arrow transition */
.tile-link, .pembina-card-detail-btn, .btn-uchicago-outline, .btn-uchicago-maroon {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Ensure standard link hover arrow slide works if arrow exists */
.tile-link:hover, .pembina-card-detail-btn:hover {
    letter-spacing: 0.8px;
}

/* Hero section animated reveal text */
.spotlight-badge,
.spotlight-headline,
.spotlight-subheadline {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spotlight-badge { animation-delay: 200ms; }
.spotlight-headline { animation-delay: 400ms; }
.spotlight-subheadline { animation-delay: 600ms; }

@keyframes heroFadeReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   18. Human Polish Pass - Front Page
   ============================================================ */
body.home,
body.front-page {
    background:
        linear-gradient(180deg, #fffdf8 0%, #f8f6ef 42%, #ffffff 100%);
    text-rendering: optimizeLegibility;
}

.site-header {
    filter: drop-shadow(0 10px 22px rgba(40, 19, 18, 0.08));
}

.brand-utility-bar {
    background: linear-gradient(90deg, #5a0b1a 0%, #7a1024 56%, #8f2031 100%);
}

.brand-main-navbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.branding-logo-link {
    border-radius: 0 0 10px 10px;
    box-shadow: 0 18px 42px rgba(40, 19, 18, 0.12);
}

.hero-spotlight-section {
    height: min(860px, 92vh);
    min-height: 640px;
    isolation: isolate;
}

.hero-spotlight-bg {
    filter: saturate(1.08) contrast(1.03);
}

.hero-spotlight-overlay {
    background:
        radial-gradient(circle at 50% 44%, rgba(201, 162, 39, 0.2), transparent 28%),
        linear-gradient(90deg, rgba(23, 8, 9, 0.72) 0%, rgba(54, 11, 20, 0.36) 48%, rgba(23, 8, 9, 0.74) 100%),
        linear-gradient(to bottom, rgba(12, 5, 6, 0.26) 0%, rgba(38, 9, 16, 0.68) 60%, rgba(20, 7, 8, 0.95) 100%);
}

.hero-spotlight-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 110px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--sb-bg) 94%);
    z-index: 3;
    pointer-events: none;
}

.hero-spotlight-content {
    max-width: 980px;
    margin-bottom: 82px;
}

.spotlight-badge {
    padding: 7px 14px;
    border: 1px solid rgba(224, 187, 74, 0.42);
    border-radius: 999px;
    background: rgba(35, 12, 12, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.spotlight-headline {
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
    text-shadow: 0 18px 50px rgba(0, 0, 0, 0.36);
}

.spotlight-subheadline {
    font-size: clamp(16px, 1.65vw, 20px);
    color: rgba(255, 255, 255, 0.92);
    text-wrap: pretty;
}

.spotlight-cta-bar {
    bottom: 34px;
    max-width: 900px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 22px 60px rgba(15, 10, 10, 0.24);
}

.cta-bar-btn {
    color: var(--sb-primary) !important;
    border-right-color: rgba(122, 16, 36, 0.14);
}

.cta-bar-btn:hover {
    background: var(--sb-primary);
    color: var(--sb-white) !important;
}

.sb-ticker-bar {
    height: 54px;
    background: #fff8e5;
    border-block: 1px solid rgba(201, 162, 39, 0.26);
}

.sb-ticker-label {
    border-radius: 6px;
    background: #243e36;
}

.rector-message-section {
    padding-block: clamp(72px, 8vw, 112px);
    background:
        linear-gradient(90deg, rgba(122, 16, 36, 0.045), rgba(201, 162, 39, 0.08)),
        #fffdf8;
}

.rector-message-grid {
    display: grid;
    grid-template-columns: minmax(260px, 390px) 1fr;
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.rector-portrait-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(54, 28, 20, 0.18);
}

.rector-portrait-wrap::after {
    content: "";
    position: absolute;
    inset: auto 20px 20px auto;
    width: 76px;
    height: 4px;
    border-radius: 999px;
    background: var(--sb-secondary);
}

.rector-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.rector-message-content {
    max-width: 720px;
}

.rector-kicker {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--sb-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.rector-message-content h2 {
    margin: 0 0 22px;
    color: var(--sb-primary-dark);
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.rector-message-text {
    position: relative;
    color: #3f3a35;
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.85;
    padding-left: 24px;
    border-left: 3px solid var(--sb-secondary);
    text-wrap: pretty;
}

.rector-signature {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 28px;
}

.rector-signature strong {
    color: var(--sb-primary);
    font-family: var(--font-heading);
    font-size: 18px;
}

.rector-signature span {
    color: var(--sb-text-light);
    font-size: 14px;
}

.uchicago-news-section,
.distinctly-section,
.formasi-section,
.pembina-slider-section,
.uchicago-events-section,
.uchicago-gallery-section,
.uchicago-admissions-section,
.uchicago-map-section {
    position: relative;
    padding-block: clamp(72px, 8vw, 118px);
}

.section-headline-bar {
    margin-bottom: 42px;
}

.section-headline-bar h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    letter-spacing: 0;
    text-wrap: balance;
}

.headline-underline {
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sb-primary), var(--sb-secondary));
}

.section-subtitle-desc {
    font-size: 17px;
    color: #55504a;
    text-wrap: pretty;
}

.news-card-image,
.tile-image-wrap,
.gallery-tile-image,
.pembina-card-image-box {
    border-radius: 8px;
}

.news-card-borderless,
.distinctly-tile,
.formasi-card,
.event-row-card,
.pembina-card-inner,
.admissions-info-panel,
.admissions-requirements-panel,
.map-details-card {
    border-radius: 8px;
}

.distinctly-section,
.uchicago-events-section {
    background:
        linear-gradient(180deg, rgba(122, 16, 36, 0.035), rgba(201, 162, 39, 0.045)),
        #fbfaf6;
}

.distinctly-tile {
    background: #ffffff;
    border: 1px solid rgba(122, 16, 36, 0.09);
    box-shadow: 0 18px 46px rgba(54, 28, 20, 0.08);
    overflow: hidden;
}

.distinctly-tile:hover,
.formasi-card:hover,
.event-row-card:hover,
.pembina-card-inner:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(54, 28, 20, 0.13);
}

.tile-title,
.formasi-card-content h3,
.news-title,
.event-title,
.pembina-card-info h3 {
    letter-spacing: 0;
}

.tile-link,
.pembina-card-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tile-link::after,
.pembina-card-detail-btn::after {
    content: "->";
    transition: transform var(--transition-base);
}

.tile-link:hover::after,
.pembina-card-detail-btn:hover::after {
    transform: translateX(4px);
}

.uchicago-stats-section {
    background: var(--sb-primary);
    color: var(--sb-white);
}

.stats-item {
    border-color: rgba(255,255,255,0.16);
}

.stats-number,
.stats-suffix,
.stats-label {
    color: var(--sb-white);
}

.formasi-card {
    overflow: hidden;
    border: 1px solid rgba(122, 16, 36, 0.1);
    box-shadow: 0 14px 34px rgba(54, 28, 20, 0.08);
}

.formasi-card-banner {
    min-height: 150px;
}

.uchicago-admissions-section {
    background:
        linear-gradient(135deg, rgba(122, 16, 36, 0.95), rgba(47, 14, 20, 0.98)),
        var(--sb-primary);
}

.admissions-info-panel,
.admissions-requirements-panel {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(12, 5, 6, 0.18);
}

.map-iframe-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 22px 56px rgba(54, 28, 20, 0.12);
}

.line-icon,
.footer-contact-icon,
.footer-motto-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(122, 16, 36, 0.08);
    color: var(--sb-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1;
}

.footer-cross {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sb-secondary);
    color: var(--sb-primary-dark);
    font-weight: 900;
    letter-spacing: 0;
}

.mobile-menu-drawer {
    width: min(360px, 88vw);
}

.mobile-drawer-header {
    background:
        linear-gradient(135deg, var(--sb-primary), var(--sb-primary-dark));
    color: var(--sb-white);
}

.mobile-drawer-title,
.drawer-close-btn {
    color: var(--sb-white);
}

.mobile-nav-list a {
    border-bottom: 1px solid rgba(122, 16, 36, 0.08);
}

.btn-uchicago-maroon,
.btn-uchicago-outline,
.nav-link-cta,
.mobile-drawer-cta-btn {
    border-radius: 6px;
    letter-spacing: 0.4px;
}

@media (max-width: 768px) {
    .hero-spotlight-section {
        min-height: 650px;
        height: auto;
        padding-top: 116px;
        padding-bottom: 150px;
    }

    .hero-spotlight-content {
        margin-bottom: 0;
    }

    .spotlight-cta-bar {
        width: calc(100% - 32px);
        bottom: 24px;
    }

    .cta-bar-inner {
        height: auto;
        flex-direction: column;
    }

    .cta-bar-btn {
        max-width: none;
        min-height: 48px;
        border-right: 0;
        border-bottom: 1px solid rgba(122, 16, 36, 0.12);
    }

    .sb-ticker-bar {
        padding-inline: 14px;
    }

    .sb-ticker-label {
        display: none;
    }

    .rector-message-grid {
        grid-template-columns: 1fr;
    }

    .rector-portrait-wrap {
        max-width: 420px;
    }

    .rector-message-text {
        padding-left: 18px;
    }
}
