/* ============================================================
   GRC THEME — main.css  v3.1
   All fixes applied:
     • Overlay: NO backdrop-filter (was causing blur on search + mobile drawer)
     • Overlay z-index lowered to 500 (clearly below header at 900)
     • Logo size increased: 88px desktop, 74px mobile
     • Hamburger pushed to far-right edge on mobile
     • Mobile accordion display logic simplified
   ============================================================ */

/* ── CSS Variables ── */
:root {
    /* Brand */
    --grc-plum: #7a2b53;
    --grc-plum-dk: #5c1f3d;
    --grc-rose: #b5488a;
    --grc-rose-lt: #d47ab0;
    --grc-blush: #f7f0f4;
    --grc-cream: #f4efe2;
    --grc-white: #ffffff;
    --grc-ink: #1e0f1a;
    --grc-muted: #6b5265;
    --grc-border: rgba(181, 72, 138, 0.15);

    /* Typography — fonts are loaded via wp_enqueue_style in functions.php */
    --font-ui: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;

    /* Spacing */
    --header-height: 88px;
    --content-max: 1366px;

    /* Motion */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --dur-fast: 0.18s;
    --dur-med: 0.28s;
    --dur-slow: 0.38s;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(122, 43, 83, 0.08);
    --shadow-md: 0 8px 32px rgba(122, 43, 83, 0.14);
    --shadow-lg: 0 20px 60px rgba(122, 43, 83, 0.18);

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
}


/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: var(--grc-ink);
    background: var(--grc-white);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}


/* ============================================================
   HEADER SHELL
   ============================================================ */
.grc-header {
    position: sticky;
    top: 0;
    /* z-index 900 > overlay z-index 500 — header always above blur overlay */
    z-index: 900;
    width: 100%;
    background: var(--grc-white);
}

/* Gradient bottom border */
.grc-header::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--grc-plum), var(--grc-rose), var(--grc-plum));
    pointer-events: none;
    z-index: 1;
}

.grc-header.is-scrolled {
    box-shadow: var(--shadow-md);
}

/* ============================================================
   NOTIFICATION TICKER
   ============================================================ */
.grc-ticker {
    background: var(--grc-plum);
    color: var(--grc-white);
    display: flex;
    align-items: center;
    position: relative;
    height: 48px;
    z-index: 800;
    transition: margin-top var(--dur-med) var(--ease), opacity var(--dur-med) var(--ease), height var(--dur-med) var(--ease);
}

.grc-ticker.is-hidden {
    height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: -48px;
}

.grc-ticker__inner {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 100%;
}

/* Replace existing grc-ticker__scroll animation */
.grc-ticker__scroll {
    display: inline-flex;
    height: 100%;
    align-items: center;
    /* Start fully off-screen to the right, end at -50% (seamless loop point) */
    animation: grc-ticker-scroll 30s linear infinite;
    /* KEY FIX: start position is the right edge */
    transform: translateX(100vw);
}

.grc-ticker__scroll:hover {
    animation-play-state: paused;
}

@keyframes grc-ticker-scroll {
    0% {
        transform: translateX(100vw);   /* starts from right edge of viewport */
    }
    100% {
        transform: translateX(-50%);    /* ends at -50% for seamless loop */
    }
}

.grc-ticker__scroll:hover {
    animation-play-state: paused;
}

.grc-ticker__item {
    display: inline-flex;
    align-items: center;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.grc-ticker__item::after {
    content: '|';
    margin-left: 20px;
    opacity: 0.5;
    font-weight: 300;
}

.grc-ticker__tag {
    background: var(--grc-rose);
    color: var(--grc-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.grc-ticker__close {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    cursor: pointer;
    transition: background var(--dur-fast);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.grc-ticker__close:hover {
    background: var(--grc-rose);
}

.grc-ticker__close svg {
    width: 20px;
    height: 20px;
}

/* Header bar */
.grc-header__bar {
    position: relative;
    z-index: 2;
    background: var(--grc-white);
}

.grc-header__inner {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--header-height);
}


/* ============================================================
   LOGO — increased to 88px on desktop
   ============================================================ */
.grc-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-right: 28px;
    transition: transform var(--dur-fast) var(--ease),
        opacity var(--dur-fast) var(--ease);
}

.grc-logo:hover,
.grc-logo:focus-visible {
    opacity: 0.88;
    outline: none;
}

.grc-logo img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    border-radius: 50%;
}


/* ============================================================
   PRIMARY NAV
   ============================================================ */
.grc-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.grc-nav__mobile-header {
    display: none;
}

.grc-nav__list {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}

/* Nav link base */
.grc-nav__link,
.grc-nav__link--btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--grc-ink);
    border-radius: var(--radius-sm);
    white-space: nowrap;
    position: relative;
    transition: color var(--dur-fast) var(--ease),
        background var(--dur-fast) var(--ease);
}

/* Animated underline */
.grc-nav__link::after,
.grc-nav__link--btn::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--grc-rose);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--dur-med) var(--ease);
    border-radius: 2px;
}

.grc-nav__link:hover,
.grc-nav__link:focus-visible,
.grc-nav__link--btn:hover,
.grc-nav__link--btn:focus-visible,
.grc-nav__item--active>.grc-nav__link,
.grc-nav__item.is-open>.grc-nav__link--btn {
    color: var(--grc-plum);
    background: var(--grc-blush);
}

.grc-nav__link:hover::after,
.grc-nav__link:focus-visible::after,
.grc-nav__link--btn:hover::after,
.grc-nav__link--btn:focus-visible::after,
.grc-nav__item--active>.grc-nav__link::after,
.grc-nav__item.is-open>.grc-nav__link--btn::after {
    transform: scaleX(1);
}

.grc-nav__link--btn:focus-visible {
    outline: 2px solid var(--grc-rose);
    outline-offset: 2px;
}

/* Chevron */
.grc-nav__chevron {
    display: flex;
    align-items: center;
    line-height: 1;
    transition: transform var(--dur-med) var(--ease);
}

.grc-nav__chevron svg {
    width: 13px;
    height: 13px;
    stroke: var(--grc-rose);
}

.grc-nav__item.is-open .grc-nav__chevron,
.grc-nav__item.is-open>.grc-nav__link--btn .grc-nav__chevron {
    transform: rotate(180deg);
}
/* ============================================================
   DROPDOWN MENU FIX
   ============================================================ */

/* Parent LI */
.grc-nav__list li {
    position: relative;
    list-style: none;
}

/* ============================================================
   DESKTOP DROPDOWN — Styled
   ============================================================ */

.grc-nav__list .sub-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(80, 30, 60, 0.13), 0 2px 8px rgba(80,30,60,0.07);
    border: 1px solid rgba(180, 80, 120, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.grc-nav__list li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Decorative top accent line */
.grc-nav__list .sub-menu::before {
    content: '';
    display: block;
    height: 3px;
    margin: 0 12px 8px;
    background: linear-gradient(90deg, var(--grc-plum), var(--grc-rose));
    border-radius: 2px;
}

.grc-nav__list .sub-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(180, 80, 120, 0.07);
}

.grc-nav__list .sub-menu li:last-child {
    border-bottom: none;
}

.grc-nav__list .sub-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--grc-ink);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    transition: all 0.2s ease;
    position: relative;
}

/* Left accent bar on hover */
.grc-nav__list .sub-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 3px;
    background: var(--grc-rose);
    border-radius: 0 2px 2px 0;
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.grc-nav__list .sub-menu li a:hover {
    background: linear-gradient(90deg, rgba(180,80,120,0.06) 0%, transparent 100%);
    color: var(--grc-plum);
    padding-left: 26px;
}

.grc-nav__list .sub-menu li a:hover::before {
    transform: scaleY(1);
}

/* Second level */
.grc-nav__list .sub-menu .sub-menu {
    top: -8px;
    left: calc(100% + 6px);
    margin-left: 0;
}

.grc-nav__list .sub-menu .sub-menu::before {
    display: none;
}

/* Prevent wrapping */
.grc-nav__list {
    flex-wrap: nowrap;
}

.grc-nav {
    margin-left: auto;
}
/* ============================================================
   MOBILE MENU
   ============================================================ */

@media (max-width: 991px) {

    .grc-nav__list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        flex-wrap: wrap;
    }

    .grc-nav__list li {
        width: 100%;
    }

    .grc-nav__list .sub-menu {
        display: none;
        width: 100%;
        position: static !important;
        top: auto !important;
        left: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        min-width: unset !important;
        padding: 4px 0 8px 0 !important;
        margin-top: 0 !important;
    }

    /* Remove desktop accent line on mobile */
    .grc-nav__list .sub-menu::before {
        display: none !important;
    }

    /* Show when JS adds inline display:block */
    .grc-nav__list li.menu-open > .sub-menu {
        display: block !important;
    }

    .grc-nav__list .sub-menu li {
        border-bottom: none !important;
        width: 100%;
    }

    .grc-nav__list .sub-menu li a {
        display: block !important;
        padding: 10px 14px !important;
        font-size: 0.78rem !important;
        white-space: normal !important;
        border-left: 3px solid var(--grc-rose) !important;
        margin: 3px 0 !important;
        border-radius: 0 6px 6px 0 !important;
        background: rgba(180, 80, 120, 0.04) !important;
        color: var(--grc-ink) !important;
        letter-spacing: 0.05em !important;
    }

    /* Remove the ::before bar on mobile since we use border-left */
    .grc-nav__list .sub-menu li a::before {
        display: none !important;
    }

    .grc-nav__list .sub-menu li a:hover {
        background: rgba(180, 80, 120, 0.1) !important;
        color: var(--grc-plum) !important;
        padding-left: 18px !important;
    }

    .grc-nav__list .menu-item-has-children > a,
    .grc-nav__list .menu-item-has-children > button,
    .grc-nav__list .grc-nav__item--mega > a,
    .grc-nav__list .grc-nav__item--mega > button {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .menu-open > a .grc-nav__chevron,
    .menu-open > button .grc-nav__chevron {
        transform: rotate(180deg);
    }

}
/* ============================================================
   SEARCH PAGE
   ============================================================ */

.grc-search-page {
    padding: 80px 0;
    background: #f7f3f6;
    min-height: 100vh;
}

/* ============================================================
   TOP
   ============================================================ */

.grc-search-top h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #34104c;
    margin-bottom: 16px;
}

.grc-search-top span {
    color: #c22f8f;
}

.grc-search-line {
    width: 60px;
    height: 4px;
    background: #c22f8f;
    border-radius: 20px;
    margin-bottom: 40px;
}

/* ============================================================
   META
   ============================================================ */

.grc-search-meta {
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.grc-search-count {
    display: flex;
    align-items: center;
    gap: 18px;
}

.grc-search-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f7e8f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c22f8f;
    font-size: 22px;
}

.grc-search-count p {
    margin: 0;
    font-size: 18px;
    color: #4b3d56;
}

.grc-search-count strong {
    color: #c22f8f;
}

.grc-search-count span {
    color: #c22f8f;
    font-weight: 600;
}

/* ============================================================
   SORT
   ============================================================ */

.grc-search-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.grc-search-sort label {
    font-size: 15px;
    color: #4b3d56;
}

.grc-search-sort select {
    border: 1px solid #ead7e4;
    border-radius: 12px;
    padding: 12px 18px;
    background: #fff;
    color: #4b3d56;
    outline: none;
}

/* ============================================================
   SEARCH LIST
   ============================================================ */

.grc-search-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ============================================================
   ITEM
   ============================================================ */

.grc-search-item {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: 0.35s ease;
    border: 1px solid #f0e5ec;
}

.grc-search-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(97, 17, 61, 0.08);
}

.grc-search-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* ============================================================
   INNER
   ============================================================ */

.grc-search-item-inner {
    padding: 34px;
}

/* ============================================================
   TYPE
   ============================================================ */

.grc-search-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f9e6f1;
    color: #c22f8f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

/* ============================================================
   TITLE
   ============================================================ */

.grc-search-item h2 {
    font-size: 34px;
    line-height: 1.3;
    color: #34104c;
    margin-bottom: 18px;
    transition: 0.3s ease;
}

.grc-search-item:hover h2 {
    color: #c22f8f;
}

/* ============================================================
   EXCERPT
   ============================================================ */

.grc-search-item p {
    color: #5e5564;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 900px;
}

/* ============================================================
   META
   ============================================================ */

.grc-search-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.grc-search-date {
    color: #8a7f91;
    font-size: 15px;
}

.grc-read-more {
    color: #c22f8f;
    font-weight: 700;
    transition: 0.3s ease;
}

.grc-search-item:hover .grc-read-more {
    transform: translateX(5px);
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .grc-search-item-inner {
        padding: 24px;
    }

    .grc-search-item h2 {
        font-size: 26px;
    }

    .grc-search-item p {
        font-size: 15px;
    }

}

.grc-search-content {
    padding: 24px;
}

.grc-search-badge {
    display: inline-block;
    padding: 6px 10px;
    background: #fde8f4;
    color: #c22f8f;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.grc-search-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 16px;
}

.grc-search-content h2 {
    font-size: 30px;
    line-height: 1.4;
    color: #34104c;
    margin-bottom: 16px;
}

.grc-search-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.grc-read-more {
    color: #c22f8f;
    font-weight: 700;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.grc-pagination {
    margin-top: 60px;
    text-align: center;
}

.grc-pagination .page-numbers {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin: 0 5px;
    background: #fff;
    color: #4b3d56;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.grc-pagination .current,
.grc-pagination .page-numbers:hover {
    background: #c22f8f;
    color: #fff;
}

/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 991px) {

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

}

@media (max-width: 767px) {

    .grc-search-grid {
        grid-template-columns: 1fr;
    }

    .grc-search-top h1 {
        font-size: 42px;
    }

    .grc-search-meta {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

}

/* ============================================================
   SEARCH PAGE LAYOUT FIX
   ============================================================ */

.grc-search-page .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Mobile */
@media (max-width: 767px) {

    .grc-search-page .container {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* ============================================================
   SEARCH PANEL
   ============================================================ */

.grc-search-panel[hidden] {
    display: none !important;
}

.grc-search-panel {
    background: linear-gradient(135deg, #5f123d 0%, #7a1d53 100%);
    padding: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   SEARCH RESULTS WRAPPER
   ============================================================ */

.grc-search-results {
    margin-top: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.grc-search-results[hidden] {
    display: none;
}

/* ============================================================
   SEARCH RESULT ITEM
   ============================================================ */

.grc-search-result {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    background: transparent;
    transition: all 0.25s ease;
    position: relative;
}

/* remove border from last item */
.grc-search-result:last-child {
    border-bottom: none;
}

/* left accent line */
.grc-search-result::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0%;
    background: #ff7ab6;
    border-radius: 0 4px 4px 0;
    transition: height 0.25s ease;
}

/* hover effect */
.grc-search-result:hover {
    background: rgba(255,255,255,0.08);
    color: #ffd3e6;
    padding-left: 28px;
}

.grc-search-result:hover::before {
    height: 70%;
}

/* ============================================================
   SEARCH BUTTON
   ============================================================ */

.grc-search-btn {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-left: 12px;
    border-radius: 12px;
    color: var(--grc-plum);
    transition:
        background var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        transform var(--dur-fast) var(--ease);
}

.grc-search-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.grc-search-btn:hover,
.grc-search-btn:focus-visible,
.grc-search-btn[aria-expanded="true"] {
    background: var(--grc-blush);
    color: var(--grc-rose);
    transform: scale(1.08);
    outline: none;
}

/* ============================================================
   SEARCH FORM WRAPPER
   ============================================================ */

.grc-search-form {
    position: relative;
}

/* ============================================================
   SEARCH INPUT
   ============================================================ */

.grc-search-form input[type="search"] {
    width: 100%;
    padding: 18px 120px 18px 24px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 18px;
    outline: none;
}

.grc-search-form input[type="search"]::placeholder {
    color: rgba(255,255,255,0.6);
}

/* ============================================================
   SEARCH BUTTON
   ============================================================ */

.grc-search-submit {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    border: none;
    background: #c04d8d;
    color: #ffffff;
    border-radius: 0 14px 14px 0;
    cursor: pointer;
    transition: 0.3s ease;
}

.grc-search-submit:hover {
    background: #d85ea0;
}


/* ============================================================
   HAMBURGER — mobile only, pushed to far right
   ============================================================ */
.grc-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    /* margin-left auto pushes it to right edge on mobile */
    border: 1.5px solid var(--grc-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: background var(--dur-fast) var(--ease);
}

.grc-hamburger:hover {
    background: var(--grc-blush);
}

.grc-hamburger__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--grc-plum);
    border-radius: 2px;
    transform-origin: center;
    transition: transform var(--dur-med) var(--ease),
        opacity var(--dur-med) var(--ease),
        width var(--dur-med) var(--ease);
}

.grc-hamburger.is-active .grc-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.grc-hamburger.is-active .grc-hamburger__bar:nth-child(2) {
    opacity: 0;
    width: 0;
}

.grc-hamburger.is-active .grc-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   MEGA MENU PANEL
   ============================================================ */
.grc-mega {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    /* z-index within header stacking context — clearly above overlay */
    z-index: 10;
    background: var(--grc-white);
    border-top: 3px solid var(--grc-rose);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease),
        transform var(--dur-med) var(--ease);
}

.grc-mega:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.grc-mega[hidden] {
    display: block;
    visibility: hidden;
}

.grc-mega.is-entering {
    visibility: visible;
}

/* Mega grid */
.grc-mega__inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 0;
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 40px 32px 48px;
    align-items: start;
}

.grc-mega__col {
    padding-right: 40px;
}

.grc-mega__col:not(:last-child) {
    border-right: 1px solid var(--grc-border);
    margin-right: 40px;
}

/* Heading */
.grc-mega__heading {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--grc-plum);
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--grc-rose);
    display: inline-block;
}

/* Links */
.grc-mega__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.grc-mega__link {
    display: block;
    padding: 9px 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--grc-ink);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: background var(--dur-fast) var(--ease),
        color var(--dur-fast) var(--ease),
        border-color var(--dur-fast) var(--ease),
        padding-left var(--dur-fast) var(--ease);
}

.grc-mega__link:hover,
.grc-mega__link:focus-visible {
    background: var(--grc-blush);
    color: var(--grc-plum);
    border-color: var(--grc-rose);
    padding-left: 18px;
    outline: none;
}


/* ── Icon Quick Links ── */
.grc-mega__quicklinks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
    border-left: 1px solid var(--grc-border);
    align-self: start;
}

.grc-mega__qlink {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--grc-border);
    text-align: center;
    color: var(--grc-muted);
    transition: border-color var(--dur-med) var(--ease),
        box-shadow var(--dur-med) var(--ease),
        transform var(--dur-med) var(--ease),
        color var(--dur-med) var(--ease);
    min-width: 110px;
}

.grc-mega__qlink:hover,
.grc-mega__qlink:focus-visible {
    border-color: var(--grc-rose);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px) scale(1.04);
    color: var(--grc-plum);
    outline: none;
}

.grc-mega__qlink-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    transition: background var(--dur-med) var(--ease),
        border-color var(--dur-med) var(--ease),
        transform var(--dur-med) var(--ease);
}

.grc-mega__qlink-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    transition: stroke var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
}

.grc-mega__qlink:hover .grc-mega__qlink-icon {
    background: var(--grc-blush);
    border-color: var(--grc-rose);
    transform: scale(1.1);
}

.grc-mega__qlink:hover .grc-mega__qlink-icon svg {
    stroke: var(--grc-rose);
    transform: scale(1.08);
}

.grc-mega__qlink-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}


/* ============================================================
   SEARCH PANEL
   Inside header stacking context (z-index 900), so it is always
   above the overlay (z-index 500) regardless of its own z-index.
   ============================================================ */
.grc-search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 15;
    background: var(--grc-plum-dk, #5c1f3d);
    padding: 28px 32px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity var(--dur-med) var(--ease),
        transform var(--dur-med) var(--ease);
}

.grc-search-panel:not([hidden]) {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.grc-search-panel[hidden] {
    display: block;
    visibility: hidden;
}

.grc-search-panel.is-entering {
    visibility: visible;
}

.grc-search-panel__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-search-panel__label {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--grc-rose-lt, #d47ab0);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.grc-search-panel__field {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(181, 72, 138, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.07);
}

.grc-search-panel__input {
    flex: 1;
    padding: 14px 20px;
    font-family: var(--font-ui);
    font-size: 1rem;
    color: var(--grc-white);
    background: transparent;
    border: none;
    outline: none;
}

.grc-search-panel__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.grc-search-panel__submit {
    padding: 14px 20px;
    background: var(--grc-rose);
    color: var(--grc-white);
    transition: background var(--dur-fast) var(--ease);
}

.grc-search-panel__submit:hover {
    background: var(--grc-plum);
}

.grc-search-panel__submit svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}


/* ============================================================
   OVERLAY BACKDROP
   FIX: Removed backdrop-filter — it was causing Chromium to
   composite the blur ON TOP of fixed/sticky children (nav drawer
   and search panel), making them appear blurred.
   Solution: plain semi-transparent dark tint — no blur.
   z-index 500 = below header (900), above page content (0).
   ============================================================ */
.grc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30, 15, 26, 0.55);
    /* NO backdrop-filter — intentionally removed */
    z-index: 0;
    opacity: 0;
    transition: opacity var(--dur-med) var(--ease);
}

.grc-overlay.is-visible {
    display: block;
    opacity: 1;
}


/* ============================================================
   RESPONSIVE — ≤ 1050px
   ============================================================ */
@media (max-width: 1050px) {
    .grc-logo img {
        width: 80px;
        height: 80px;
    }

    .grc-nav__link,
    .grc-nav__link--btn {
        padding: 7px 9px;
        font-size: 0.77rem;
        letter-spacing: 0.05em;
    }
}


/* ============================================================
   RESPONSIVE — ≤ 880px  (mobile nav drawer)
   ============================================================ */
@media (max-width: 880px) {

    /* Show hamburger, push it to the far right edge */
    .grc-hamburger {
        display: flex;
        margin-left: auto;
        /* ← pushes hamburger to right edge */
    }

    /* Search button stays left of hamburger, no auto margin */
    .grc-search-btn {
        margin-left: 12px;
    }

    /* Mobile nav drawer slides in from right */
    .grc-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 88vw);
        height: 100vh;
        background: var(--grc-white);
        border-left: 3px solid var(--grc-rose);
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        /* Reset desktop flex-end */
        padding: 24px 20px 40px;
        overflow-y: auto;
        transition: right var(--dur-slow) var(--ease);
    }

    .grc-nav__mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1.5px solid var(--grc-border);
    }

    .grc-nav__mobile-title {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--grc-plum);
    }

    .grc-nav__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: 1.5px solid var(--grc-border);
        border-radius: var(--radius-sm);
        color: var(--grc-plum);
        transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
        flex-shrink: 0;
    }

    .grc-nav__close:hover {
        background: var(--grc-blush);
        color: var(--grc-rose);
        transform: scale(1.05);
    }

    .grc-nav__close svg {
        width: 22px;
        height: 22px;
    }

    .grc-nav.is-open {
        right: 0;
    }

    .grc-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .grc-nav__link,
    .grc-nav__link--btn {
        font-size: 0.92rem;
        padding: 13px 16px;
        justify-content: space-between;
        border-radius: var(--radius-sm);
        text-align: left;
        width: 100%;
    }

    /* ── Mobile accordion mega panels ──
       Simple class-only toggle. No dependence on [hidden] attribute
       for display state in mobile — avoids CSS specificity conflicts. */
    .grc-mega {
        position: static !important;
        border: none !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        background: var(--grc-blush);
        border-left: 3px solid var(--grc-rose) !important;
        margin: 4px 0 4px 12px;
        border-radius: var(--radius-sm);
        /* hidden by default — JS toggles .is-mobile-open */
        display: none !important;
        visibility: visible !important;
    }

    /* Show when accordion is open */
    .grc-mega.is-mobile-open {
        display: block !important;
    }

    .grc-mega__inner {
        grid-template-columns: 1fr;
        padding: 16px 20px 20px;
        gap: 16px;
    }

    .grc-mega__col {
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }

    .grc-mega__col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--grc-border);
        padding-bottom: 16px;
        margin-right: 0;
    }

    .grc-mega__quicklinks {
        flex-direction: row;
        flex-wrap: wrap;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--grc-border);
        padding-top: 16px;
        gap: 12px;
    }

    .grc-mega__qlink {
        min-width: unset;
        flex: 1;
    }

    .grc-search-panel {
        padding: 20px 16px;
    }
}


/* ============================================================
   RESPONSIVE — ≤ 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
    :root {
        --header-height: 74px;
    }

    .grc-header__inner {
        padding: 0 16px;
    }

    /* Logo: 74px on small mobile */
    .grc-logo {
        margin-right: 8px;
    }

    .grc-logo img {
        width: 74px;
        height: 74px;
    }
}


/* ============================================================
   ACCESSIBILITY — reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.grc-footer {
    background: var(--grc-ink, #1e0f1a);
    color: var(--grc-blush, #f7f0f4);
    padding: 70px 0 0;
    font-family: var(--font-ui);
    margin-top: auto;
}

.grc-footer a {
    transition: color var(--dur-fast) var(--ease);
}

.grc-footer a:hover,
.grc-footer a:focus-visible {
    color: var(--grc-rose-lt, #d47ab0);
    outline: none;
}

.grc-footer__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 32px 50px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.grc-footer__col--brand {
    padding-right: 40px;
}

.grc-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.grc-footer__logo img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
}

.grc-footer__address {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.grc-footer__social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.grc-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.grc-footer__social a:hover {
    color: var(--grc-rose-lt);
    transform: scale(1.1);
}

.grc-footer__social svg {
    width: 22px;
    height: 22px;
}

/* Links Columns */
.grc-footer__heading {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--grc-rose-lt, #d47ab0);
    margin-bottom: 20px;
}

.grc-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.grc-footer__links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.grc-footer__links a:hover {
    color: #fff;
}

/* Footer Bottom */
.grc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 32px;
}

.grc-footer__bottom-inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.grc-footer__legal {
    display: flex;
    gap: 24px;
}

.grc-footer__legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

.grc-footer__copy {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Footer */
@media (max-width: 1050px) {
    .grc-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .grc-footer__col--brand {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .grc-footer {
        padding: 40px 0 0;
    }

    .grc-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px 30px;
    }

    .grc-footer__bottom {
        padding: 20px;
    }

    .grc-footer__bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/*Hero - Slider */

.hero-slider {
    width: 100%;
    height: 100vh;
}

.heroSwiper {
    height: 100%;
}

.hero-inner {
    display: flex;
    height: 100%;
}

/* LEFT IMAGE */
.hero-image {
    width: 50%;
}

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

/* RIGHT CONTENT */
.hero-content {
    width: 50%;
    background: var(--grc-plum);
    /* 🔥 theme color */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

/* TEXT */
.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 800;
    text-transform: uppercase;
}

/* PRIMARY TEXT (highlight) */
.hero-content .yellow {
    color: var(--grc-rose-lt);
    /* instead of yellow */
    display: block;
}

/* SECONDARY TEXT */
.hero-content .white {
    color: var(--grc-white);
    display: block;
}

@media (max-width: 768px) {

    .hero-inner {
        flex-direction: column;
    }

    /* image on top */
    .hero-image {
        width: 100%;
        height: 50vh;
    }

    .hero-image img {
        height: 100%;
    }

    /* content below */
    .hero-content {
        width: 100%;
        height: auto;
        padding: 30px 20px;
        justify-content: center;
        align-items: flex-start;
    }

    /* FIX TEXT OVERFLOW */
    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        letter-spacing: -0.5px;
        word-break: break-word;
    }

    .hero-content .yellow,
    .hero-content .white {
        display: block;
    }

}

/* ============================================================
   HERO SWIPER ARROWS
   ============================================================ */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Right Arrow (Next) - White */
.hero-slider .swiper-button-next {
    color: var(--grc-white);
    right: 20px;
}

/* Left Arrow (Prev) - Dark Theme Color */
.hero-slider .swiper-button-prev {
    color: var(--grc-plum);
    left: 20px;
}

/* SVG Icon Sizing */
.hero-slider .swiper-button-next svg,
.hero-slider .swiper-button-prev svg {
    width: 32px !important;
    height: 32px !important;
    stroke: currentColor;
    fill: none;
}

/* Hide Swiper's default CSS icons */
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    display: none !important;
}

@media (max-width: 768px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .hero-slider .swiper-button-next svg,
    .hero-slider .swiper-button-prev svg {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ============================================================
   VISIT CAMPUS SECTION (FRONT PAGE)
   ============================================================ */
.grc-visit-campus {
    padding: 100px 32px;
    background: var(--grc-white);
    text-align: center;
}

.grc-visit-campus__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-visit-campus__heading {
    max-width: 900px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--grc-ink);
    margin-bottom: 40px;
    font-weight: 500;
}

.grc-visit-campus__separator {
    max-width: 100%;
    height: 1.5px;
    background: var(--grc-muted);
    opacity: 0.2;
    margin: 40px auto;
    border: none;
}

.grc-visit-campus__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.grc-visit-card {
    background: var(--grc-plum-dk);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
    color: var(--grc-white);
    transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.grc-visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.grc-visit-card__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.grc-visit-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--grc-rose-lt);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), stroke var(--dur-med) var(--ease);
}

.grc-visit-card:hover .grc-visit-card__icon svg {
    transform: scale(1.15) rotate(-10deg);
    stroke: var(--grc-white);
}

.grc-visit-card__content {
    flex: 1;
}

.grc-visit-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--grc-white);
}

.grc-visit-card__link {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--grc-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color var(--dur-fast) var(--ease);
    display: inline-block;
}

.grc-visit-card__link:hover {
    color: var(--grc-rose-lt);
}

.grc-visit-campus__actions {
    margin-bottom: 40px;
}

.grc-visit-campus__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grc-white);
    background: var(--grc-plum-dk);
    border-radius: 50px;
    transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.grc-visit-campus__btn:hover {
    background: var(--grc-plum);
    transform: scale(1.03);
}

.grc-visit-campus__footer {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    color: var(--grc-ink);
}

.grc-visit-campus__footer a {
    color: var(--grc-plum-dk);
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 900px) {
    .grc-visit-campus__cards {
        grid-template-columns: 1fr;
    }

    .grc-visit-campus__heading {
        font-size: 1.4rem;
        padding: 0 16px;
    }

    .grc-visit-card {
        padding: 24px;
    }
}

/* ============================================================
   ACADEMICS SECTION (FRONT PAGE)
   ============================================================ */
.grc-academics {
    position: relative;
    padding: 100px 32px;
    background: var(--grc-plum-dk);
    /* Same deep plum from theme */
    color: var(--grc-white);
    overflow: hidden;
}

.grc-academics__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.grc-academics__content {
    flex: 1;
    max-width: 500px;
}

.grc-academics__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: var(--grc-white);
}

.grc-academics__text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--grc-blush);
}

.grc-academics__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grc-plum-dk);
    background: var(--grc-white);
    border-radius: 50px;
    transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.grc-academics__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--grc-plum);
}

/* Grid Box */
.grc-academics__grid {
    flex: 1;
    background: var(--grc-white);
    border-radius: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    overflow: hidden;
}

.grc-academics__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 40px;
    color: var(--grc-plum-dk);
    font-weight: 500;
    font-size: 1.1rem;
    transition: background var(--dur-fast) var(--ease);
    border-bottom: 1px solid var(--grc-border);
    border-right: 1px solid var(--grc-border);
}

/* Fix borders so they don't double up or show on outer edges */
.grc-academics__item:nth-child(2n) {
    border-right: none;
}

.grc-academics__item:nth-last-child(1),
.grc-academics__item:nth-last-child(2) {
    border-bottom: none;
}

.grc-academics__item:hover {
    background: var(--grc-blush);
    color: var(--grc-plum);
}

.grc-academics__item-title {
    max-width: 140px;
    line-height: 1.3;
}

.grc-academics__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.grc-academics__item-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--grc-plum);
    stroke-width: 1.5;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), stroke var(--dur-med) var(--ease);
}

.grc-academics__item:hover .grc-academics__item-icon svg {
    stroke: var(--grc-rose);
    transform: scale(1.2) rotate(10deg);
}


@media (max-width: 950px) {
    .grc-academics__inner {
        flex-direction: column;
        text-align: center;
    }

    .grc-academics__content {
        margin: 0 auto;
    }

    .grc-academics__grid {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .grc-academics__grid {
        grid-template-columns: 1fr;
    }

    .grc-academics__item:nth-child(2n) {
        border-right: 1px solid var(--grc-border);
        /* reset */
    }

    .grc-academics__item {
        border-right: none !important;
        border-bottom: 1px solid var(--grc-border);
    }

    .grc-academics__item:nth-last-child(2) {
        border-bottom: 1px solid var(--grc-border);
        /* restore bottom border for 2nd to last on single column */
    }

    .grc-academics__item-title {
        max-width: none;
    }
}

/* ============================================================
   PROGRAMS / STATS SECTION (FRONT PAGE)
   ============================================================ */
.grc-programs {
    padding: 100px 32px;
    padding-bottom: 0px;
    ;
    background: var(--grc-white);
}

.grc-programs__inner {
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.grc-programs__row {
    display: flex;
    gap: 32px;
}

.grc-program-card {
    border-radius: 12px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.grc-program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.grc-program-card--small {
    flex: 1;
}

.grc-program-card--large {
    flex: 1.8;
}

.grc-program-card--cream {
    background: var(--grc-cream);
    color: var(--grc-ink);
}

.grc-program-card--dark {
    background: var(--grc-plum-dk);
    color: var(--grc-white);
}

/* Card Number */
.grc-program-card__number {
    font-family: var(--font-display);
    font-size: 8rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--grc-ink);
}

.grc-program-card__number span {
    font-size: 4rem;
    font-weight: 400;
    vertical-align: top;
    line-height: 1.2;
}

/* Card Title */
.grc-program-card__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.1;
}

.grc-program-card__title strong {
    font-weight: 700;
}

/* Card Text */
.grc-program-card__text {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.grc-program-card--cream .grc-program-card__text {
    color: #555;
}

/* Card Actions */
.grc-program-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.grc-btn--white {
    display: inline-flex;
    align-items: center;
    background: var(--grc-white);
    color: var(--grc-plum-dk);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: background var(--dur-fast), transform var(--dur-fast);
}

.grc-btn--white:hover {
    background: var(--grc-blush);
    transform: scale(1.03);
}

.grc-btn--outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--grc-white);
    border: 1.5px solid var(--grc-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}

.grc-btn--outline:hover {
    background: var(--grc-white);
    color: var(--grc-plum-dk);
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 950px) {
    .grc-programs__row {
        flex-direction: column;
    }

    .grc-program-card {
        padding: 40px 32px;
    }

    .grc-program-card__number {
        font-size: 6rem;
    }

    .grc-program-card__title {
        font-size: 2.2rem;
    }
}

/* ============================================================
   UPCOMING EVENTS SECTION (FRONT PAGE)
   ============================================================ */
.grc-events {
    padding: 60px 32px;
    padding-bottom: 0px;
    background: var(--grc-white);
    text-align: center;
}

.grc-events__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-events__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--grc-ink);
}

.grc-events__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.grc-events-archive {
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(20px, 3vw, 40px);
    width: 100%;
    box-sizing: border-box;
}

.grc-events-archive__heading {
    position: relative;
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(92, 31, 61, 0.18);
}

.grc-events-archive__eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grc-plum-dk);
}

.grc-events-archive__list {
    display: flex;
    flex-direction: column;
}

.grc-event-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(92, 31, 61, 0.14);
    color: inherit;
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.grc-event-row:hover,
.grc-event-row:focus-visible {
    border-color: rgba(92, 31, 61, 0.3);
    background: rgba(122, 43, 83, 0.03);
    outline: none;
}

.grc-event-row__date {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding-right: 18px;
    border-right: 1px solid rgba(92, 31, 61, 0.14);
    color: #3e3640;
}

.grc-event-row__date-icon {
    display: inline-flex;
    color: var(--grc-plum);
    flex-shrink: 0;
}

.grc-event-row__date-icon svg {
    width: 17px;
    height: 17px;
}

.grc-event-row__date-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.grc-event-row__content {
    min-width: 0;
}

.grc-event-row__title {
    margin: 0 0 2px;
    font-family: var(--font-ui);
    font-size: clamp(1.15rem, 1.35vw, 1.7rem);
    font-weight: 700;
    line-height: 1.2;
    color: #2f2430;
}

.grc-event-row__excerpt {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(47, 36, 48, 0.85);
}

.grc-event-row__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(92, 31, 61, 0.18);
    border-radius: 50%;
    color: var(--grc-plum);
    font-size: 1.45rem;
    line-height: 1;
    transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.grc-event-row:hover .grc-event-row__cta,
.grc-event-row:focus-visible .grc-event-row__cta {
    background: var(--grc-plum-dk);
    border-color: var(--grc-plum-dk);
    color: var(--grc-white);
    transform: translateX(2px);
}

.grc-event-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: var(--grc-white);
    border: 1px solid var(--grc-cream);
    border-radius: 8px;
    padding: 32px 24px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform var(--dur-med) cubic-bezier(0.34, 1.56, 0.64, 1), background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
    height: 100%;
    border-color: #ede8d4;
    text-decoration: none;
}

.grc-event-card__content {
    flex: 1;
    margin-bottom: 32px;
}

.grc-event-card__name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--grc-plum);
    font-weight: 400;
    margin: 0;
    transition: color var(--dur-med) var(--ease);
}

.grc-event-card__arrow {
    display: inline-block;
    color: var(--grc-rose);
    transition: color var(--dur-med) var(--ease), transform var(--dur-fast) var(--ease);
}

.grc-event-card__footer {
    padding-top: 16px;
    border-top: 1.5px solid #ede8d4;
    transition: border-color var(--dur-med) var(--ease);
}

.grc-event-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: var(--grc-muted);
    transition: color var(--dur-med) var(--ease);
}

.grc-event-card__date svg {
    width: 16px;
    height: 16px;
    stroke: var(--grc-rose);
    transition: stroke var(--dur-med) var(--ease);
}

/* User requirement: "on hover on the cards use the theme dark color" */
.grc-event-card:hover {
    background: var(--grc-plum-dk);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--grc-plum-dk);
}

.grc-event-card:hover .grc-event-card__name,
.grc-event-card:hover .grc-event-card__date,
.grc-event-card:hover .grc-event-card__arrow {
    color: var(--grc-white);
}

.grc-event-card:hover .grc-event-card__footer {
    border-color: rgba(255, 255, 255, 0.15);
}

.grc-event-card:hover .grc-event-card__date svg {
    stroke: var(--grc-white);
}

.grc-event-card:hover .grc-event-card__arrow {
    transform: translateX(4px);
}

/* All Events Button */
.grc-events__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 40px;
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--grc-plum-dk);
    background: var(--grc-white);
    border: 1.5px solid var(--grc-plum-dk);
    border-radius: 50px;
    transition: all var(--dur-fast) var(--ease);
    text-decoration: none;
}

.grc-events__btn-arrow {
    color: var(--grc-rose);
    font-size: 1.2rem;
    transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.grc-events__btn:hover {
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    transform: scale(1.03);
    border-color: var(--grc-plum-dk);
}

.grc-events__btn:hover .grc-events__btn-arrow {
    color: var(--grc-white);
    transform: translateX(3px);
}

@media (max-width: 1050px) {
    .grc-events__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grc-events-archive {
        padding-inline: 24px;
    }

    .grc-event-row {
        grid-template-columns: 108px minmax(0, 1fr) 48px;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .grc-events__grid {
        grid-template-columns: 1fr;
    }

    .grc-events__title {
        font-size: 2.2rem;
    }

    .grc-events-archive {
        padding-inline: 16px;
    }

    .grc-events-archive__heading {
        margin-bottom: 4px;
    }

    .grc-event-row {
        grid-template-columns: minmax(0, 1fr) 42px;
        grid-template-areas:
            "date date"
            "content cta";
        align-items: start;
        gap: 12px 16px;
        padding: 18px 0;
    }

    .grc-event-row__date {
        grid-area: date;
        padding-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(92, 31, 61, 0.12);
    }

    .grc-event-row__content {
        grid-area: content;
    }

    .grc-event-row__cta {
        grid-area: cta;
        justify-self: end;
        align-self: start;
    }

    .grc-event-row__title {
        font-size: 1.2rem;
    }

    .grc-event-row__excerpt {
        font-size: 0.95rem;
    }
}

/* ============================================================
   FACULTY SECTION (FRONT PAGE)
   ============================================================ */
.grc-faculty {
    padding: 100px 32px;
    background: var(--grc-blush);
    /* Section background color to distinguish from blocks above */
    text-align: center;
}

.grc-faculty__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-faculty__header {
    margin-bottom: 60px;
}

.grc-faculty__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--grc-ink);
}

.grc-faculty__title strong {
    font-weight: 700;
}

.grc-faculty__subtitle {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    color: var(--grc-muted);
    max-width: 600px;
    margin: 0 auto;
}

.grc-faculty__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.grc-faculty-card {
    perspective: 1000px;
    height: 430px;
    text-align: left;
    background: transparent;
    border: none;
    text-decoration: none;
}
.grc-faculty-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

/* Flip class toggled via JS */
.grc-faculty-card.is-flipped .grc-faculty-card__inner {
    transform: rotateY(180deg);
}

.grc-faculty-card__front,
.grc-faculty-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 8px;
    overflow: hidden;
    background: var(--grc-white);
    border: 1px solid var(--grc-cream);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.grc-faculty-card__front {
    transition: border-color var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease);
}

.grc-faculty-card__back {
    transform: rotateY(180deg);
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    border-color: var(--grc-plum-dk);
    padding: 40px 32px;
    justify-content: center;
    align-items: flex-start;
}

.grc-faculty-card__image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
}

.grc-faculty-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) cubic-bezier(0.34, 1.56, 0.64, 1);
}

.grc-faculty-card__content {
    flex: 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--grc-white);
    transition: background var(--dur-med) var(--ease);
}

.grc-faculty-card__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.3;
    color: var(--grc-ink);
    font-weight: 400;
    margin: 0;
    flex: 1;
    transition: color var(--dur-med) var(--ease);
}

.grc-faculty-card__back .grc-faculty-card__name {
    color: var(--grc-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.grc-faculty-card__bio {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--grc-blush);
    margin: 0 0 32px 0;
}

.grc-faculty-card__link {
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: var(--grc-white);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* User requirement: "on hover theme dark color" - Front card hover logic */
.grc-faculty-card:hover .grc-faculty-card__front {
    box-shadow: var(--shadow-lg);
    border-color: var(--grc-plum-dk);
}

.grc-faculty-card:hover .grc-faculty-card__content {
    background: var(--grc-plum-dk);
}

.grc-faculty-card:hover .grc-faculty-card__name {
    color: var(--grc-white);
}

.grc-faculty-card:hover .grc-faculty-card__image img {
    transform: scale(1.05);
}

/* Yellow Action Toggle Button matching user screenshot */
.grc-faculty-card__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffcc00;
    color: var(--grc-ink);
    border: none;
    cursor: pointer;
    transition: transform var(--dur-med) var(--ease), background var(--dur-fast);
    flex-shrink: 0;
    margin-left: 16px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.grc-faculty-card__toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.grc-faculty-card__toggle:hover {
    transform: scale(1.1);
    background: #e6b800;
}

.grc-faculty-card__toggle--close {
    position: absolute;
    top: 24px;
    right: 24px;
    margin: 0;
}
@media (max-width: 1200px) {
    .grc-faculty__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .grc-faculty__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1050px) {
    .grc-faculty__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .grc-faculty__grid {
        grid-template-columns: 1fr;
    }

    .grc-faculty__title {
        font-size: 2.8rem;
    }
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.grc-gallery {
    padding: 100px 32px;
    background: var(--grc-white);
}

.grc-gallery__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-gallery__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.grc-gallery__title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--grc-ink);
    margin: 0;
}

.grc-gallery__view-top {
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.grc-gallery__view-top:hover {
    transform: translateY(-2px);
}

/* ============================================================
   GRID
   ============================================================ */

.grc-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* ============================================================
   CARD
   ============================================================ */

.grc-gallery-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.grc-gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* ============================================================
   IMAGE
   ============================================================ */

.grc-gallery-card__image {
    display: block;
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.grc-gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.grc-gallery-card:hover .grc-gallery-card__image img {
    transform: scale(1.05);
}

/* ============================================================
   CONTENT OVERLAY
   ============================================================ */

.grc-gallery-card__content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.78),
        rgba(0,0,0,0.45),
        rgba(0,0,0,0)
    );
}

/* ============================================================
   TITLE LINK
   ============================================================ */

.grc-gallery-card__title-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    text-decoration: none;
    transition: all 0.3s ease;
}

/* ============================================================
   TITLE
   ============================================================ */

.grc-gallery-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--grc-white);
    margin: 0;
    transition: color 0.3s ease;
}

/* ============================================================
   ARROW
   ============================================================ */

.grc-gallery-card__arrow {
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;

    color: var(--grc-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.grc-gallery-card__title-link:hover .grc-gallery-card__arrow {
    opacity: 1;
    transform: translateX(0);
}

.grc-gallery-card__title-link:hover .grc-gallery-card__title {
    color: #f5d6e6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {

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

@media (max-width: 650px) {

    .grc-gallery {
        padding: 80px 20px;
    }

    .grc-gallery__header {
        flex-direction: column;
        text-align: center;
    }

    .grc-gallery__title {
        font-size: 2.5rem;
    }

    .grc-gallery__grid {
        grid-template-columns: 1fr;
    }

    .grc-gallery-card__image {
        height: 280px;
    }

    .grc-gallery-card__content {
        padding: 20px;
    }

    .grc-gallery-card__title {
        font-size: 1.2rem;
    }
}
/* ============================================================
   SOCIAL MEDIA SECTION
   ============================================================ */
.grc-social {
    padding: 80px 40px;
    background: var(--grc-blush);
}

.grc-social__container {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-social__header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 40px;
}

.grc-social__heading {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--grc-plum);
    position: relative;
    display: inline-block;
    line-height: 1.3;
}

@media (min-width: 768px) {

    .grc-social__heading::before,
    .grc-social__heading::after {
        content: '';
        position: absolute;
        top: 24px;
        width: 80px;
        height: 2px;
        background-color: var(--grc-rose);
    }

    .grc-social__heading::before {
        left: -110px;
    }

    .grc-social__heading::after {
        right: -110px;
    }
}

.grc-social__wrapper {
    background: var(--grc-plum-dk);
    border-radius: 12px;
    padding: 40px;
}

.grc-social__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 480px));
    justify-content: center;
    gap: 32px;
}

.grc-social-card {
    background: var(--grc-white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.grc-social-card__header {
    background: var(--grc-plum);
    color: var(--grc-white);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.grc-social-card__body {
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.grc-social-card__logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--grc-cream);
    padding: 8px;
    background: var(--grc-white);
    box-shadow: var(--shadow-sm);
}

.grc-social-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grc-social-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--grc-plum);
    margin-bottom: 16px;
    font-weight: 700;
}

.grc-social-card__desc {
    font-size: 0.95rem;
    color: var(--grc-ink);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 32px;
    flex: 1;
}

.grc-btn--connect {
    background: var(--grc-plum);
    color: var(--grc-white);
    padding: 12px 36px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--dur-fast), transform var(--dur-fast);
    display: inline-block;
}

.grc-btn--connect:hover {
    background: var(--grc-plum-dk);
    transform: translateY(-2px);
}

/* ── Official Social Colors Override ── */

/* LinkedIn */
.grc-social-card--linkedin .grc-social-card__header {
    background: #0077b5;
}

.grc-social-card--linkedin .grc-btn--connect {
    background: #0077b5;
}

.grc-social-card--linkedin .grc-btn--connect:hover {
    background: #005e93;
}

/* Instagram */
.grc-social-card--instagram .grc-social-card__header {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.grc-social-card--instagram .grc-btn--connect {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.grc-social-card--instagram .grc-btn--connect:hover {
    filter: brightness(0.9);
}

/* YouTube */
.grc-social-card--youtube .grc-social-card__header {
    background: #FF0000;
}

.grc-social-card--youtube .grc-btn--connect {
    background: #FF0000;
}

.grc-social-card--youtube .grc-btn--connect:hover {
    background: #cc0000;
}

@media (max-width: 900px) {

    .grc-social__grid {
        grid-template-columns: 1fr;
        justify-content: stretch;
    }
}

@media (max-width: 750px) {
    .grc-social {
        padding: 60px 20px;
    }

    .grc-social__grid {
        grid-template-columns: 1fr;
    }

    .grc-social__wrapper {
        padding: 24px;
    }
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.grc-blog {
    padding:0px 40px 60px 40px;
    max-width: var(--content-max);
    margin: 0 auto;
}

/* Featured Header */
.grc-blog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.grc-blog__heading-group {
    display: flex;
    align-items: center;
    min-width: 0;
}

.grc-blog__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--grc-plum-dk);
    margin: 0;
}

.grc-blog__title-line {
    width: 6px;
    height: 32px;
    background: #facc15;
    margin-left: 16px;
    border-radius: 4px;
}

.grc-blog__view-top,
.grc-blog__view-bottom-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 14px 30px rgba(92, 31, 61, 0.18);
    transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.grc-blog__view-top:hover,
.grc-blog__view-top:focus-visible,
.grc-blog__view-bottom-link:hover,
.grc-blog__view-bottom-link:focus-visible {
    background: var(--grc-plum);
    color: var(--grc-white);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(92, 31, 61, 0.24);
    outline: none;
}

.grc-blog__view-bottom {
    display: none;
    padding-top: 32px;
    text-align: center;
}

/* Common Meta */
.grc-blog__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grc-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.grc-blog__meta svg {
    width: 18px;
    height: 18px;
}

/* Featured Block */
.grc-blog-featured {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.grc-blog-featured__heading {
    font-family: var(--font-display);
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--grc-plum-dk);
    margin-bottom: 24px;
    font-weight: 700;
}

.grc-blog-featured__desc {
    color: var(--grc-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.grc-blog-featured__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.grc-blog-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grc-btn-outline {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid var(--grc-muted);
    color: var(--grc-plum-dk);
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all var(--dur-fast) var(--ease);
}

.grc-btn-outline:hover {
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    border-color: var(--grc-plum-dk);
}

/* Latest Posts Block */
.grc-blog-latest {
    background: var(--grc-blush);
    border-radius: 16px;
    padding: 60px;
}

.grc-blog-latest__heading {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--grc-plum-dk);
    margin-bottom: 40px;
    font-weight: 700;
}

.grc-blog-latest__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.grc-post-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.grc-post-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.grc-post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-med) var(--ease);
}

.grc-post-card:hover .grc-post-card__image img {
    transform: scale(1.05);
}

.grc-post-card__title {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--grc-ink);
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
    transition: color var(--dur-fast);
}

.grc-post-card:hover .grc-post-card__title {
    color: var(--grc-plum);
}

/* Nested meta inside small post card */
.grc-post-card .grc-blog__meta {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.grc-post-card .grc-blog__meta svg {
    width: 14px;
    height: 14px;
}

/* Responsiveness */
@media (max-width: 1100px) {
    .grc-blog-featured {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .grc-blog-featured__image {
        grid-row: 1;
        /* Bring primary image to top */
    }

    .grc-blog-latest__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .grc-blog-latest {
        padding: 50px 40px;
    }
}

@media (max-width: 600px) {
    .grc-blog {
        padding: 60px 20px;
    }

    .grc-blog-latest__grid {
        grid-template-columns: 1fr;
    }

    .grc-blog-latest {
        padding: 40px 24px;
    }

    .grc-blog__title {
        font-size: 2.2rem;
    }

    .grc-blog-featured__heading {
        font-size: 2.2rem;
    }

    .grc-blog__header {
        justify-content: flex-start;
    }

    .grc-blog__view-top {
        display: none;
    }

    .grc-blog__view-bottom {
        display: block;
    }

    .grc-blog__view-bottom-link {
        width: 100%;
        max-width: 320px;
    }
}

/* ============================================================
   NOTIFICATIONS SECTION (FRONT PAGE)
   ============================================================ */
.grc-notifications {
    padding: 60px 32px;
    background: var(--grc-white);
    text-align: center;
}

.grc-notifications__inner {
    max-width: var(--content-max);
    margin: 0 auto;
}

.grc-notifications__title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--grc-ink);
}

.grc-notifications__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

/* Base state: Dark */
.grc-notification-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    background: var(--grc-plum-dk);
    border: 1px solid var(--grc-plum-dk);
    border-radius: 8px;
    padding: 32px 24px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform var(--dur-med) cubic-bezier(0.34, 1.56, 0.64, 1), background var(--dur-med) var(--ease), box-shadow var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
    height: 100%;
    text-decoration: none;
}

.grc-notification-card__content {
    flex: 1;
    margin-bottom: 32px;
}

.grc-notification-card__name {
    font-family: var(--font-display);
    font-size: 1.45rem;
    line-height: 1.4;
    color: var(--grc-white);
    font-weight: 400;
    margin: 0;
    transition: color var(--dur-med) var(--ease);
}

.grc-notification-card__arrow {
    display: inline-block;
    color: var(--grc-white);
    transition: color var(--dur-med) var(--ease), transform var(--dur-fast) var(--ease);
}

.grc-notification-card__footer {
    padding-top: 16px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: border-color var(--dur-med) var(--ease);
}

.grc-notification-card__date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--dur-med) var(--ease);
}

.grc-notification-card__date svg {
    width: 16px;
    height: 16px;
    stroke: var(--grc-white);
    transition: stroke var(--dur-med) var(--ease);
}

/* Hover state: White */
.grc-notification-card:hover {
    background: var(--grc-white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: #ede8d4;
}

/* Sub-elements on hover change back to their standard non-inverted colors */
.grc-notification-card:hover .grc-notification-card__name {
    color: var(--grc-plum);
}

.grc-notification-card:hover .grc-notification-card__arrow {
    color: var(--grc-rose);
    transform: translateX(4px);
}

.grc-notification-card:hover .grc-notification-card__footer {
    border-color: #ede8d4;
}

.grc-notification-card:hover .grc-notification-card__date {
    color: var(--grc-muted);
}

.grc-notification-card:hover .grc-notification-card__date svg {
    stroke: var(--grc-rose);
}

/* Button */
.grc-notifications__btn {
    display: inline-block;
    font-family: var(--font-ui);
    padding: 14px 40px;
    border: 1px solid var(--grc-plum);
    color: var(--grc-plum);
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}

.grc-notifications__btn:hover {
    background: var(--grc-plum);
    color: var(--grc-white);
}

.grc-notifications__btn-arrow {
    display: inline-block;
    transition: transform var(--dur-fast) var(--ease);
}

.grc-notifications__btn:hover .grc-notifications__btn-arrow {
    transform: translateX(4px);
}

.grc-notifications-archive {
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(20px, 3vw, 40px);
    width: 100%;
    box-sizing: border-box;
}

.grc-notifications-archive__heading {
    margin-bottom: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(92, 31, 61, 0.18);
}

.grc-notifications-archive__eyebrow {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grc-plum-dk);
}

.grc-notifications-archive__list {
    display: flex;
    flex-direction: column;
}

.grc-notification-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(92, 31, 61, 0.14);
    color: inherit;
    text-decoration: none;
    transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.grc-notification-row:hover,
.grc-notification-row:focus-visible {
    border-color: rgba(92, 31, 61, 0.3);
    background: rgba(122, 43, 83, 0.03);
    outline: none;
}

.grc-notification-row__date {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding-right: 18px;
    border-right: 1px solid rgba(92, 31, 61, 0.14);
    color: #3e3640;
}

.grc-notification-row__date-icon {
    display: inline-flex;
    color: var(--grc-plum);
    flex-shrink: 0;
}

.grc-notification-row__date-icon svg {
    width: 17px;
    height: 17px;
}

.grc-notification-row__date-text {
    font-size: 0.95rem;
    font-weight: 500;
}

.grc-notification-row__content {
    min-width: 0;
}

.grc-notification-row__title {
    margin: 0 0 2px;
    font-family: var(--font-ui);
    font-size: clamp(1.15rem, 1.35vw, 1.7rem);
    font-weight: 700;
    line-height: 1.2;
    color: #2f2430;
}

.grc-notification-row__excerpt {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(47, 36, 48, 0.85);
}

.grc-notification-row__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(92, 31, 61, 0.18);
    border-radius: 50%;
    color: var(--grc-plum);
    font-size: 1.45rem;
    line-height: 1;
    transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}

.grc-notification-row:hover .grc-notification-row__cta,
.grc-notification-row:focus-visible .grc-notification-row__cta {
    background: var(--grc-plum-dk);
    border-color: var(--grc-plum-dk);
    color: var(--grc-white);
    transform: translateX(2px);
}

@media (max-width: 1100px) {
    .grc-notifications__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .grc-notifications-archive {
        padding-inline: 24px;
    }

    .grc-notification-row {
        grid-template-columns: 108px minmax(0, 1fr) 48px;
        gap: 18px;
    }
}

@media (max-width: 650px) {
    .grc-notifications__grid {
        grid-template-columns: 1fr;
    }

    .grc-notifications {
        padding: 60px 20px;
    }

    .grc-notifications-archive {
        padding-inline: 16px;
    }

    .grc-notifications-archive__heading {
        margin-bottom: 4px;
    }

    .grc-notification-row {
        grid-template-columns: minmax(0, 1fr) 42px;
        grid-template-areas:
            "date date"
            "content cta";
        align-items: start;
        gap: 12px 16px;
        padding: 18px 0;
    }

    .grc-notification-row__date {
        grid-area: date;
        padding-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(92, 31, 61, 0.12);
    }

    .grc-notification-row__content {
        grid-area: content;
    }

    .grc-notification-row__cta {
        grid-area: cta;
        justify-self: end;
        align-self: start;
    }

    .grc-notification-row__title {
        font-size: 1.2rem;
    }

    .grc-notification-row__excerpt {
        font-size: 0.95rem;
    }
}

/* ============================================================
   SINGLE POST / ARTICLE TEMPLATE
   ============================================================ */
.grc-single {
    padding-top: 100px;
    padding-bottom: 120px;
    background: var(--grc-white);
}

.grc-container--narrow {
    max-width: 840px;
    margin: 0 auto;
}

.grc-article__header {
    text-align: center;
    padding: 20px 24px 80px;
}

.grc-article__title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--grc-plum-dk);
    margin: 0 auto 16px;
    max-width: 1000px;
}

.grc-article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 1.05rem;
    color: var(--grc-muted);
    font-weight: 500;
    margin-bottom: 32px;
}

.grc-article__meta svg {
    width: 18px;
    height: 18px;
    stroke: var(--grc-rose);
}

.grc-article__excerpt {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--grc-ink);
    background: var(--grc-blush);
    padding: 32px 48px;
    border-radius: var(--radius-md);
    max-width: 840px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm); 
}

.grc-article__excerpt p {
    margin: 0;
}

.grc-article__image {
    width: 100%;
    margin: 0 0 80px;
}

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

.grc-article__image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.grc-article__content {
    font-family: var(--font-ui);
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--grc-ink);
    padding: 0 24px;
}

.grc-article__content p {
    margin-bottom: 32px;
}

.grc-article__content h2,
.grc-article__content h3,
.grc-article__content h4 {
    font-family: var(--font-ui);
    color: var(--grc-plum-dk);
    font-weight: 700;
    margin-top: 64px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.grc-article__content h2 {
    font-size: 2rem;
}

.grc-article__content h3 {
    font-size: 1.6rem;
}

.grc-article__content ul,
.grc-article__content ol {
    margin-bottom: 32px;
    padding-left: 24px;
}

.grc-article__content li {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .grc-single {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .grc-article__header {
        padding: 0px 24px 40px;
    }
    .grc-article__title {
        font-size: 2.8rem;
    }
    .grc-article__excerpt {
        padding: 24px;
        font-size: 1.05rem;
    }
    .grc-article__image {
        margin-bottom: 40px;
    }
    .grc-article__content {
        font-size: 1.05rem;
    }
    .grc-article__content h2 {
        font-size: 1.6rem;
        margin-top: 48px;
    }
}

/* ============================================================
   ARCHIVE / BLOG CARDS
   ============================================================ */
.grc-archive {
    padding: 88px 0 120px;
    background:
        radial-gradient(circle at top left, rgba(244, 239, 226, 0.8), transparent 34%),
        linear-gradient(180deg, #fbf8fa 0%, #ffffff 100%);
}

.grc-archive__header {
    text-align: center;
    margin-bottom: 52px;
}

.grc-archive__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.6rem);
    color: var(--grc-plum-dk);
    font-weight: 700;
    line-height: 1;
}

.grc-blog-archive-listing {
    max-width: 1240px;
    margin: 0 auto;
    padding-inline: clamp(20px, 3vw, 40px);
    width: 100%;
    box-sizing: border-box;
}

.grc-blog-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 38px;
    margin-bottom: 48px;
}

.grc-blog-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.grc-blog-card__image-link {
    display: block;
    margin-bottom: 22px;
}

.grc-blog-card__image {
    width: 100%;
    aspect-ratio: 1.55 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #efe7d8;
    box-shadow: 0 18px 42px rgba(40, 16, 31, 0.12);
}

.grc-blog-card__image--fallback {
    background:
        linear-gradient(180deg, rgba(122, 43, 83, 0.12), rgba(122, 43, 83, 0.04)),
        var(--grc-cream);
}

.grc-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-med) var(--ease), filter var(--dur-med) var(--ease);
}

.grc-blog-card__image-link:hover .grc-blog-card__image img {
    transform: scale(1.04);
    filter: saturate(1.05);
}

.grc-blog-card__content {
    flex: 1;
}

.grc-blog-card__eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(122, 43, 83, 0.66);
}

.grc-blog-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2vw, 2.15rem);
    line-height: 0.98;
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.03em;
}

.grc-blog-card__title a {
    color: var(--grc-plum-dk);
    text-decoration: none;
    transition: color var(--dur-fast);
}

.grc-blog-card__title a:hover {
    color: var(--grc-plum);
}

.grc-blog-card__arrow {
    color: var(--grc-rose);
    display: inline-block;
    margin-left: 4px;
    transition: transform var(--dur-fast), color var(--dur-fast);
}

.grc-blog-card__title a:hover .grc-blog-card__arrow {
    transform: translateX(4px);
}

.grc-blog-cards__actions {
    display: flex;
    justify-content: center;
}

.grc-blog-card[hidden] {
    display: none !important;
}

.grc-blog-cards__load-more {
    min-width: 204px;
    padding: 15px 36px;
    border-radius: 999px;
    background: var(--grc-plum-dk);
    color: var(--grc-white);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(92, 31, 61, 0.18);
    transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}

.grc-blog-cards__load-more:hover,
.grc-blog-cards__load-more:focus-visible {
    background: var(--grc-plum);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(92, 31, 61, 0.24);
    outline: none;
}

.grc-blog-archive-empty {
    text-align: center;
    color: var(--grc-muted);
    font-size: 1.05rem;
}

@media (max-width: 1024px) {
    .grc-archive {
        padding: 72px 0 96px;
    }

    .grc-blog-archive-listing {
        padding-inline: 24px;
    }

    .grc-blog-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 26px;
    }
}

@media (max-width: 650px) {
    .grc-archive {
        padding: 56px 0 72px;
    }

    .grc-archive__header {
        margin-bottom: 36px;
    }

    .grc-blog-archive-listing {
        padding-inline: 16px;
    }

    .grc-blog-cards__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grc-blog-card__image {
        aspect-ratio: 1.35 / 1;
    }

    .grc-archive__title {
        font-size: 2.7rem;
    }

    .grc-blog-card__title {
        font-size: 1.95rem;
    }

    .grc-blog-cards__load-more {
        width: 100%;
        max-width: 320px;
    }
}

/* =====================================================
   NEWS & EVENTS PAGE
===================================================== */

.grc-news-page{
    background:#faf7fc;
    overflow:hidden;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* =====================================================
   HERO
===================================================== */

.grc-news-hero{
    padding:110px 0 90px;
}

.grc-news-hero__wrapper{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-news-hero__tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-news-hero h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-news-hero p{
    color:#5e5867;
    font-size:1rem;
    line-height:1.9;
    margin-bottom:35px;
}

.grc-news-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    background:#72275b;
    color:#fff;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.grc-news-btn:hover{
    background:#5d1f49;
}

.grc-news-hero__visual img{
    width:100%;
    border-radius:32px;
    display:block;
    box-shadow:0 30px 70px rgba(0,0,0,.08);
}

/* =====================================================
   SECTION TITLE
===================================================== */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* =====================================================
   EVENTS SECTION
===================================================== */

.grc-events-section{
    padding-bottom:90px;
}

/* =====================================================
   FEATURED EVENT
===================================================== */

.grc-featured-event{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    margin-bottom:40px;
    border:1px solid rgba(114,39,91,.08);
    box-shadow:0 20px 50px rgba(0,0,0,.05);
}

.grc-featured-event__grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    align-items:center;
}

.grc-featured-event__content{
    padding:60px;
}

.grc-featured-event__tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-featured-event h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:24px;
}

.grc-featured-event p{
    color:#605b67;
    line-height:2;
    font-size:1rem;
}

/* =====================================================
   IMAGE AREA
===================================================== */

.grc-featured-event__images{
    position:relative;
    width:100%;
    height:100%;
    min-height:420px;
    overflow:hidden;
}

/* =====================================================
   SLIDER
===================================================== */

.grc-event-slider{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

.grc-slider-track{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .5s ease;
}

.grc-slide{
    min-width:100%;
    height:100%;
}

.grc-slide img{
    width:100%;
    height:100%;
    min-height:420px;
    object-fit:cover;
    display:block;
}

/* =====================================================
   SLIDER BUTTONS
===================================================== */

.grc-slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.grc-prev{
    left:15px;
}

.grc-next{
    right:15px;
}

/* =====================================================
   READ MORE
===================================================== */

.grc-read-more{
    margin-top:25px;
    border:none;
    background:none;
    color:#72275b;
    font-weight:700;
    cursor:pointer;
    padding:0;
    font-size:15px;
}

.grc-hidden-content{
    display:none;
    margin-top:20px;
}

.grc-hidden-content.active{
    display:block;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1100px){

    .grc-news-hero__wrapper,
    .grc-featured-event__grid{
        grid-template-columns:1fr;
    }

    .grc-news-hero{
        text-align:center;
    }

    .grc-featured-event__content{
        padding:35px;
    }

    .grc-featured-event__images,
    .grc-slide img{
        min-height:300px;
    }

}

@media(max-width:768px){

    .grc-news-hero{
        padding:70px 0 60px;
    }

    .grc-news-hero h1{
        font-size:2.8rem;
    }

    .grc-section-title h2{
        font-size:2.2rem;
    }

    .grc-featured-event h3{
        font-size:1.6rem;
    }

    .grc-featured-event__content{
        padding:28px 22px;
    }

}
/* =====================================================
   CAPACITY PAGE
===================================================== */

.grc-capacity-page{
    background:#faf7fc;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* HERO */

.grc-capacity-hero{
    padding:110px 0 90px;
}

.grc-capacity-hero__wrapper{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-capacity-hero__tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-capacity-hero h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-capacity-hero p{
    color:#5e5867;
    line-height:1.9;
}

.grc-capacity-hero__visual img{
    width:100%;
    border-radius:32px;
    display:block;
}

/* SECTION TITLE */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* EVENT */

.grc-capacity-event{
    background:#fff;
    border-radius:36px;
    overflow:hidden;
    border:1px solid rgba(114,39,91,.08);
    margin-bottom:50px;
}

/* SLIDER */

.grc-capacity-slider{
    position:relative;
    width:100%;
    height:620px;
    overflow:hidden;
}

.grc-capacity-track{
    display:flex;
    height:100%;
    transition:transform .5s ease;
}

.grc-capacity-slide{
    min-width:100%;
    height:100%;
}

.grc-capacity-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BUTTONS */

.grc-capacity-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:5;
}

.grc-capacity-prev{
    left:20px;
}

.grc-capacity-next{
    right:20px;
}

/* CONTENT */

.grc-capacity-content{
    padding:70px;
}

.grc-capacity-tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-capacity-content h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:30px;
}

.grc-capacity-intro{
    font-size:1.08rem;
    line-height:2;
    color:#5f5968;
    margin-bottom:40px;
}

.grc-capacity-block{
    margin-bottom:40px;
}

.grc-capacity-block h4{
    font-size:1.35rem;
    color:#2d1741;
    margin-bottom:18px;
}

.grc-capacity-block p{
    color:#615b68;
    line-height:2;
    margin-bottom:18px;
}

.grc-capacity-list{
    padding-left:20px;
}

.grc-capacity-list li{
    color:#615b68;
    line-height:2;
    margin-bottom:14px;
}

/* READ MORE */

.grc-read-more{
    margin-top:25px;
    border:none;
    background:none;
    color:#72275b;
    font-weight:700;
    cursor:pointer;
    padding:0;
    font-size:15px;
}

.grc-hidden-content{
    display:none;
}

.grc-hidden-content.active{
    display:block;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .grc-capacity-hero__wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .grc-capacity-slider{
        height:320px;
    }

    .grc-capacity-content{
        padding:35px 24px;
    }

    .grc-capacity-content h3{
        font-size:1.7rem;
    }

    .grc-capacity-hero{
        padding:70px 0 60px;
    }

}
/* =====================================================
   TEACHING PAGE
===================================================== */

.grc-teaching-page{
    background:#faf7fc;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* HERO */

.grc-teaching-hero-section{
    padding:110px 0 90px;
}

.grc-teaching-hero-grid{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-teaching-hero-tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-teaching-hero-section h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-teaching-hero-section p{
    color:#5e5867;
    line-height:1.9;
}

.grc-teaching-hero-image img{
    width:100%;
    border-radius:32px;
    display:block;
}

/* SECTION TITLE */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* CARD */

.grc-teaching-card{
    background:#fff;
    border-radius:36px;
    overflow:hidden;
    border:1px solid rgba(114,39,91,.08);
    margin-bottom:50px;
}

.grc-teaching-card-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    display:block;
	object-position:top;
}

.grc-teaching-card-content{
    padding:70px;
}

.grc-teaching-tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-teaching-card-content h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:30px;
}

.grc-teaching-intro{
    font-size:1.08rem;
    line-height:2;
    color:#5f5968;
    margin-bottom:40px;
}

.grc-teaching-block{
    margin-bottom:35px;
}

.grc-teaching-block h4{
    font-size:1.35rem;
    color:#2d1741;
    margin-bottom:18px;
}

.grc-teaching-block p{
    color:#615b68;
    line-height:2;
    margin-bottom:18px;
}

.grc-teaching-list{
    padding-left:20px;
}

.grc-teaching-list li{
    color:#615b68;
    line-height:2;
    margin-bottom:14px;
}

/* MOBILE */

@media(max-width:1100px){

    .grc-teaching-hero-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .grc-teaching-card-image img{
        height:320px;
    }

    .grc-teaching-card-content{
        padding:35px 24px;
    }

    .grc-teaching-card-content h3{
        font-size:1.7rem;
    }

    .grc-teaching-hero-section{
        padding:70px 0 60px;
    }

}
/* =====================================================
   RESEARCH PAGE
===================================================== */

.grc-research-page{
    background:#faf7fc;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* HERO */

.grc-research-hero{
    padding:110px 0 90px;
}

.grc-research-hero__grid{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-research-hero__tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-research-hero h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-research-hero p{
    color:#5e5867;
    line-height:1.9;
}

.grc-research-hero__image img{
    width:100%;
    border-radius:32px;
    display:block;
}

/* SECTION TITLE */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* CARD */

.grc-research-card{
    background:#fff;
    border-radius:36px;
    overflow:hidden;
    border:1px solid rgba(114,39,91,.08);
    margin-bottom:50px;
}

/* SLIDER */

.grc-research-slider{
    position:relative;
    width:100%;
    height:620px;
    overflow:hidden;
}

.grc-research-track{
    display:flex;
    height:100%;
    transition:transform .5s ease;
}

.grc-research-slide{
    min-width:100%;
    height:100%;
}

.grc-research-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BUTTONS */

.grc-research-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:5;
}

.grc-research-prev{
    left:20px;
}

.grc-research-next{
    right:20px;
}

/* CONTENT */

.grc-research-content{
    padding:70px;
}

.grc-research-tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-research-content h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:30px;
}

.grc-research-intro{
    font-size:1.08rem;
    line-height:2;
    color:#5f5968;
    margin-bottom:40px;
}

.grc-research-block{
    margin-bottom:35px;
}

.grc-research-block h4{
    font-size:1.35rem;
    color:#2d1741;
    margin-bottom:18px;
}

.grc-research-block p{
    color:#615b68;
    line-height:2;
    margin-bottom:18px;
}

/* QUOTE */

.grc-research-quote{
    padding:30px;
    border-left:4px solid #72275b;
    background:#faf7fc;
    border-radius:18px;
    line-height:2;
    margin-bottom:30px;
    color:#2d1741;
}

/* TIMELINE */

.grc-research-timeline{
    margin-top:40px;
    border-left:2px solid rgba(114,39,91,.2);
    padding-left:30px;
}

.grc-research-timeline-item{
    margin-bottom:35px;
    position:relative;
}

.grc-research-timeline-item::before{
    content:'';
    position:absolute;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#72275b;
    left:-38px;
    top:8px;
}

.grc-research-timeline-item span{
    display:block;
    font-weight:700;
    margin-bottom:10px;
    color:#2d1741;
}

.grc-research-timeline-item p{
    line-height:1.9;
    color:#615b68;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .grc-research-hero__grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .grc-research-slider{
        height:320px;
    }

    .grc-research-content{
        padding:35px 24px;
    }

    .grc-research-content h3{
        font-size:1.7rem;
    }

    .grc-research-hero{
        padding:70px 0 60px;
    }

}

/* =====================================================
   COMMUNITY PAGE
===================================================== */

.grc-community-page{
    background:#faf7fc;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* HERO */

.grc-community-hero{
    padding:110px 0 90px;
}

.grc-community-hero__grid{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-community-hero__tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-community-hero h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-community-hero p{
    color:#5e5867;
    line-height:1.9;
}

.grc-community-hero__image img{
    width:100%;
    border-radius:32px;
    display:block;
}

/* SECTION TITLE */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* CARD */

.grc-community-card{
    background:#fff;
    border-radius:36px;
    overflow:hidden;
    border:1px solid rgba(114,39,91,.08);
    margin-bottom:50px;
}

/* SLIDER */

.grc-community-slider{
    position:relative;
    width:100%;
    height:620px;
    overflow:hidden;
}

.grc-community-track{
    display:flex;
    height:100%;
    transition:transform .5s ease;
}

.grc-community-slide{
    min-width:100%;
    height:100%;
}

.grc-community-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* BUTTONS */

.grc-community-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    color:#fff;
    font-size:18px;
    cursor:pointer;
    z-index:5;
}

.grc-community-prev{
    left:20px;
}

.grc-community-next{
    right:20px;
}

/* CONTENT */

.grc-community-content{
    padding:70px;
}

.grc-community-tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-community-content h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:30px;
}

.grc-community-intro{
    font-size:1.08rem;
    line-height:2;
    color:#5f5968;
    margin-bottom:40px;
}

.grc-community-block{
    margin-bottom:35px;
}

.grc-community-block p{
    color:#615b68;
    line-height:2;
    margin-bottom:18px;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .grc-community-hero__grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .grc-community-slider{
        height:320px;
    }

    .grc-community-content{
        padding:35px 24px;
    }

    .grc-community-content h3{
        font-size:1.7rem;
    }

    .grc-community-hero{
        padding:70px 0 60px;
    }

}

/* =====================================================
   STUDENT PAGE
===================================================== */

.grc-student-page{
    background:#faf7fc;
}

.grc-container{
    width:min(1280px,92%);
    margin:auto;
}

/* HERO */

.grc-student-hero{
    padding:110px 0 90px;
}

.grc-student-hero__grid{
    display:grid;
    grid-template-columns:1fr 540px;
    gap:70px;
    align-items:center;
}

.grc-student-hero__tag{
    display:inline-flex;
    padding:12px 22px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:14px;
    font-weight:700;
    margin-bottom:24px;
}

.grc-student-hero h1{
    font-size:clamp(3rem,5vw,5rem);
    line-height:1;
    color:#2d1741;
    margin-bottom:28px;
    font-weight:800;
}

.grc-student-hero p{
    color:#5e5867;
    line-height:1.9;
}

.grc-student-hero__image img{
    width:100%;
    border-radius:32px;
    display:block;
}

/* SECTION */

.grc-student-section{
    background:#faf7fc;
}

/* TITLE */

.grc-section-title{
    text-align:center;
    margin-bottom:60px;
}

.grc-section-title span{
    color:#72275b;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    display:block;
    margin-bottom:14px;
}

.grc-section-title h2{
    font-size:3rem;
    color:#2d1741;
}

/* TIMELINE */

.grc-student-timeline{
    position:relative;
    padding-left:90px;
}

.grc-student-timeline::before{
    content:'';
    position:absolute;
    left:35px;
    top:0;
    width:2px;
    height:100%;
    background:rgba(114,39,91,.15);
}

/* ITEM */

.grc-student-item{
    position:relative;
    margin-bottom:80px;
}

/* NUMBER */

.grc-student-year{
    position:absolute;
    left:-90px;
    top:30px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#72275b;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    z-index:2;
}

/* CARD */

.grc-student-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    border:1px solid rgba(114,39,91,.08);
    display:flex;
    flex-direction:column;
}

/* IMAGE */

.grc-student-image{
    width:100%;
    height:520px;
    overflow:hidden;
}

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

/* CONTENT */

.grc-student-content{
    padding:55px;
}

.grc-student-tag{
    display:inline-flex;
    padding:10px 18px;
    background:rgba(114,39,91,.08);
    color:#72275b;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    margin-bottom:22px;
}

.grc-student-content h3{
    font-size:2rem;
    line-height:1.3;
    color:#2d1741;
    margin-bottom:18px;
}

.grc-student-content h4{
    font-size:1rem;
    color:#72275b;
    margin-bottom:22px;
}

.grc-student-content p{
    color:#605b67;
    line-height:2;
    margin-bottom:18px;
}

/* MOBILE */

@media(max-width:768px){

    .grc-student-image{
        height:280px;
    }

}

@media(max-width:768px){

    .grc-student-timeline{
        padding-left:0;
    }

    .grc-student-timeline::before{
        display:none;
    }

    .grc-student-year{
        position:relative;
        left:0;
        top:0;
        margin-bottom:20px;
    }

    .grc-student-content{
        padding:35px 24px;
    }

    .grc-student-content h3{
        font-size:1.7rem;
    }

    .grc-student-hero{
        padding:70px 0 60px;
    }

    .grc-student-hero__grid{
        grid-template-columns:1fr;
    }

}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */

/* Chrome, Edge, Brave, Safari */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 20px;
    transition: background 0.3s ease;
}

/* Show scrollbar only while hovering/scrolling */
html:hover ::-webkit-scrollbar-thumb,
body:hover ::-webkit-scrollbar-thumb {
    background: linear-gradient(
        180deg,
        #7a1d53 0%,
        #b13d7d 100%
    );
}

/* Optional hover effect */
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(
        180deg,
        #922760 0%,
        #cf5b98 100%
    );
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

html:hover {
    scrollbar-color: #8e2a63 transparent;
}