/* ═══════════════════════════════════════════════════════════════
   newReview.css  —  Reviews page styles
   Dark mode: [data-theme="dark"] on <html>  (set by inline blade script)
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ──────────────────────────────────────────── */
:root {
    --LogoColour:   #F6318C;
    --HeaderColour: #00246B;

    --rev-bg:              linear-gradient(180deg, #eef0f3 0%, #dfe4ea 100%);
    --rev-card:            #ffffff;
    --rev-card-hover:      #fafafa;
    --rev-card-border:     rgba(0, 0, 0, 0.06);
    --rev-card-border-hov: rgba(0, 0, 0, 0.12);
    --rev-card-shadow:     0 2px 12px rgba(0, 0, 0, 0.08);
    --rev-card-shadow-hov: 0 8px 32px rgba(0, 0, 0, 0.15);
    --rev-text:            #393E46;
    --rev-heading:         #00246B;
    --rev-heading-shadow:  2px 10px 7px rgba(0, 0, 0, 0.2);
    --rev-name:            #333;
    --rev-sep:             rgba(0, 0, 0, 0.08);
    --rev-initials-bg:     #E6F0FF;
    --rev-initials-c:      #1E2A3B;
    --rev-img-border:      rgba(255, 255, 255, 0.8);
    --rev-read-more:       #007bff;
    --rev-read-more-hov:   #0056b3;
    --rev-modal-bg:        rgba(0, 0, 0, 0.7);
    --rev-modal-close-bg:  rgba(255, 255, 255, 0.9);
    --rev-modal-close-c:   #333;
    --rev-modal-close-hov: #ffffff;
    --rev-modal-shadow:    0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ── Dark mode tokens ────────────────────────────────────────── */
[data-theme="dark"] {
    --rev-bg:              linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);
    --rev-card:            #404040;
    --rev-card-hover:      #4a4a4a;
    --rev-card-border:     rgba(255, 255, 255, 0.12);
    --rev-card-border-hov: rgba(255, 255, 255, 0.20);
    --rev-card-shadow:     0 2px 12px rgba(0, 0, 0, 0.3);
    --rev-card-shadow-hov: 0 8px 32px rgba(0, 0, 0, 0.4);
    --rev-text:            #e0e0e0;
    --rev-heading:         #ffffff;
    --rev-heading-shadow:  2px 10px 7px rgba(255, 255, 255, 0.1);
    --rev-name:            #ffffff;
    --rev-sep:             rgba(255, 255, 255, 0.15);
    --rev-initials-bg:     #555555;
    --rev-initials-c:      #ffffff;
    --rev-img-border:      rgba(255, 255, 255, 0.2);
    --rev-read-more:       #66b3ff;
    --rev-read-more-hov:   #4da6ff;
    --rev-modal-bg:        rgba(0, 0, 0, 0.85);
    --rev-modal-close-bg:  rgba(64, 64, 64, 0.95);
    --rev-modal-close-c:   #ffffff;
    --rev-modal-close-hov: #707070;
    --rev-modal-shadow:    0 20px 40px rgba(0, 0, 0, 0.6);
}

/* ── Base ────────────────────────────────────────────────────── */
body {
    background: var(--rev-bg);
    transition: background 0.3s ease;
}

main {
    display: flex;
    flex-direction: column;
    width: 100% !important;

    /* margin-bottom: 3vh; */
}

/* ── Theme toggle button (matches admissions pattern) ────────── */
#themeToggle {
    position: fixed;
    right: 20px;
    top: 12vh;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--rev-card-border);
    background: var(--rev-card);
    color: var(--rev-name);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: background 0.25s, border-color 0.25s, color 0.25s,
                transform 0.22s, box-shadow 0.22s;
    outline: none;
    font-size: 18px;
}

#themeToggle:hover {
    transform: scale(1.1) rotate(12deg);
    border-color: var(--LogoColour);
    box-shadow: 0 6px 22px rgba(246, 49, 140, 0.22);
}

#themeToggle:active { transform: scale(0.95); }

/* Icon swap per theme */
#themeToggle .icon-moon { display: block; }
#themeToggle .icon-sun  { display: none;  }
[data-theme="dark"] #themeToggle .icon-moon { display: none;  }
[data-theme="dark"] #themeToggle .icon-sun  { display: block; }

/* ── Floating "Add yours" button ─────────────────────────────── */
#AddReviewContainer {
    z-index: 1000;
}

#AddReviewContainer a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: fixed;
    bottom: 90px;
    right: 16px;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    /* Light mode */
    background: var(--rev-card);
    color: var(--rev-heading);
    border: 1.5px solid var(--rev-card-border);
    box-shadow: 0 4px 16px rgba(0, 36, 107, 0.12);
    transition: background 0.25s, color 0.25s, border-color 0.25s,
                box-shadow 0.25s, transform 0.2s;
}

#AddReviewContainer a:hover {
    background: linear-gradient(135deg, #00246B 0%, #F5004F 160%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(0, 36, 107, 0.28);
    transform: translateY(-2px);
}

/* Dark mode */
[data-theme="dark"] #AddReviewContainer a {
    background: var(--rev-card);
    color: var(--rev-name);
    border-color: var(--rev-card-border);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] #AddReviewContainer a:hover {
    background: linear-gradient(135deg, #1a3a8f 0%, #F5004F 160%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 22px rgba(245, 0, 79, 0.3);
}

/* ── Tab nav (Student / Videos / Parent) ─────────────────────── */
.MainContainer {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.MainContainer ul {
    margin: 5px 0;
    background-color: #201E43;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 50px;
    padding: 10px;
}

.MainContainer ul li {
    list-style: none;
    display: flex;
    font-size: 17px;
    font-weight: 800;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.MainContainer ul li:hover { transform: translateY(-2px); }

#StudentBtn { background-color: #F5004F; }
#ParentBtn  { background-color: #201E43; }

#VideosBtn a {
    text-decoration: none !important;
    color: white;
}

#VideosBtn i {
    margin-left: 5px;
    margin-top: 2px;
}

/* ── Heading ─────────────────────────────────────────────────── */
#newHeading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.1rem;
    color: var(--rev-heading);
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: var(--rev-heading-shadow);
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
    transition: color 0.3s ease;
}

/* ── Reviews grid ────────────────────────────────────────────── */
.newRevContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 28px;
    margin: 10px auto 0;
    padding: 40px 20px;
    width: 85% !important;
    justify-content: center;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

/* ── Keyframes ───────────────────────────────────────────────── */
@keyframes fadeIn    { to { opacity: 1; } }
@keyframes fadeInUp  { to { opacity: 1; transform: translateY(0); } }

@keyframes linkGradientSlide {
    0%   { background-position: 0%   center; }
    100% { background-position: 200% center; }
}

@keyframes gradientSlide {
    0%   { background-position: 0%   center; }
    100% { background-position: 200% center; }
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

/* ── Review card ─────────────────────────────────────────────── */
.newRevCard {
    width: 370px;
    height: 450px;
    background-color: var(--rev-card);
    border: 1px solid var(--rev-card-border);
    border-radius: 16px;
    box-shadow: var(--rev-card-shadow);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px;
    justify-self: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease,
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newRevCard:hover {
    background-color: var(--rev-card-hover);
    border-color: var(--rev-card-border-hov);
    box-shadow: var(--rev-card-shadow-hov);
    transform: translateY(-12px);
}

/* Quote icon */
#quote-icon,
.quote-icon {
    align-self: flex-start;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    opacity: 1;
    transition: filter 0.3s ease;
}

[data-theme="dark"] #quote-icon,
[data-theme="dark"] .quote-icon {
    filter: brightness(2) contrast(0.8);
}

/* Review text */
.review-text {
    font-family: 'Source Serif 4', serif;
    font-size: 1.1rem;
    text-align: start;
    color: var(--rev-text);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    overflow: visible;
    flex: unset;
    transition: color 0.3s ease;
}

/* Read more link */
.read-more-link {
    color: var(--rev-read-more);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline;
    font-family: 'Oswald', sans-serif !important;


}


.read-more-link:hover {
    color: var(--rev-read-more-hov);
    text-decoration: underline;
}

/* Student details footer */
.student-details {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--rev-sep) !important;
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.student-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    user-select: none;
    border: 2px solid var(--rev-img-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.3s ease;
}

.student-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.1);
}


/* Newly added below */
/* Add these lines */
.student-image {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--rev-initials-bg);          /* grey placeholder while loading */
    opacity: 0;                                   /* start invisible */
    transition: opacity 0.4s ease,               /* fade IN when loaded */
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.3s ease;
}

/* Add this new rule — fires when image finishes loading */
.student-image.loaded {
    opacity: 1;
}

/* Till here only, rest part is at it is */

.student-initials {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    user-select: none;
    color: var(--rev-initials-c);
    font-family: 'Work Sans', cursive;
    background-color: var(--rev-initials-bg);
    border: 2px solid var(--rev-img-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.student-name-and-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.student-name {
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    color: var(--rev-name);
    font-weight: 700;
    transition: color 0.3s ease;
}

#student-info {
    font-size: 14px;
    color: #666;
    margin: 0 0 2px 0;
    font-weight: 500;
}

.student-school {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    color: var(--LogoColour);
    margin: 1px 0 0 1px;
    font-weight: 800;
}

/* Result link — animated gradient */
.result-link {
    font-size: 14px;
    font-family: 'Poppins', 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, var(--HeaderColour), #4a90e2, #ff6f61, var(--HeaderColour));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: linkGradientSlide 3s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

[data-theme="dark"] .result-link {
    background: linear-gradient(90deg, #00e5ff, #ff4081, #00e5ff);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientSlide 3s ease-in-out infinite;
}

.result-link:hover {
    text-decoration: underline;
    animation-play-state: paused;
    opacity: 1;
}

/* ── Modal ───────────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--rev-modal-bg);
    z-index: 1000;
    backdrop-filter: blur(5px);
    transition: background-color 0.3s ease;
}

.modal-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--rev-modal-close-bg);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--rev-modal-close-c);
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background-color: var(--rev-modal-close-hov);
    transform: scale(1.1);
}

/* Modal card overrides */
.modal-overlay .newRevCard {
    height: auto !important;
    cursor: default !important;
    transform: none !important;
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto !important;
    box-shadow: var(--rev-modal-shadow) !important;
}

.modal-overlay .newRevCard:hover {
    transform: none !important;
    box-shadow: var(--rev-modal-shadow) !important;
}

/* Full text in modal */
.modal-overlay .review-text {
    max-height: none !important;
    overflow: visible !important;
    display: block !important;
}

/* Modal quote icon */
.modal-overlay #quote-icon {
    align-self: flex-start;
    width: 28px;
    height: 28px;
    margin-bottom: 12px;
    opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────────── */

/* Tab nav width adjustments */
@media (max-width: 900px) {
    .MainContainer { width: 90vw !important; }
    .MainContainer ul { width: 80vw; }
}

@media (min-width: 401px) and (max-width: 583px) {
    .MainContainer ul { width: 90vw; }
}

@media (min-width: 786px) and (max-width: 1180px) {
    .MainContainer ul { width: 70vw; }
}

@media (max-width: 785px) {
    .MainContainer { margin-top: 10vh !important; }
}

@media (max-width: 517px) {
    .MainContainer ul {
        flex-direction: column;
        gap: 5px;
        border-radius: 20px;
    }
}

/* Card grid */
@media (min-width: 770px) and (max-width: 1024px) {
    .newRevContainer {
        width: 100% !important;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        justify-content: center;
    }
}

/* Cards mid-range */
@media (min-width: 620px) and (max-width: 770px) {
    .newRevCard {
        width: 90% !important;
        height: auto;
        max-width: 90% !important;
    }
}

/* Tablet — single column */
@media (max-width: 768px) {
    .newRevContainer {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px;
        margin-top: 24px;
    }

    .newRevCard {
        width: 90%;
        max-width: 370px;
        height: 380px;
        padding: 18px;
        border-radius: 12px;
        justify-self: center;
    }

    .modal-container {
        width: 95%;
        max-width: 95%;
        margin: 0;
    }

    .modal-close {
        top: -30px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .modal-overlay .newRevCard {
        width: 100% !important;
        max-width: 100% !important;
        padding: 18px !important;
        margin: 0 !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    #newHeading {
        font-size: 1.6rem;
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .newRevContainer {
        width: 90% !important;
        padding: 20px 10px;
        gap: 20px;
        justify-content: center;
        grid-template-columns: 1fr;
        margin-top: 0 !important;
    }

    .newRevCard {
        width: 350px;
        height: auto;
        padding: 16px;
        margin: 0 auto;
    }

    .review-text {
        max-height: none;
        margin-bottom: 5px;
    }

    .student-image {
        width: 60px;
        height: 60px;
    }

    .student-initials {
        width: 55px;
        height: 55px;
    }

    .student-name { font-size: 16px; }

    .modal-container {
        width: 95% !important;
        height: 90% !important;
        max-width: 95% !important;
        max-height: 90% !important;
        padding: 10px;
        margin: 0 !important;
        display: block;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-close {
        top: -35px;
        right: 5px;
        width: 28px;
        height: 28px;
        font-size: 18px;
        background: rgba(255, 255, 255, 0.95);
    }

    .modal-overlay .newRevCard {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        padding: 15px !important;
        margin: 0 !important;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .modal-container {
        width: 98% !important;
        height: 95% !important;
        padding: 8px;
    }

    .modal-overlay .newRevCard { padding: 12px !important; }

    .modal-close {
        top: -30px;
        right: 2px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}

/* Desktop modal sizing */
@media (min-width: 1200px) {
    .modal-container {
        max-width: 700px;
        width: 60%;
    }

    .modal-overlay .newRevCard {
        max-width: 600px !important;
        padding: 25px !important;
    }
}

@media (min-width: 1600px) {
    .modal-container {
        max-width: 800px;
        width: 50%;
    }

    .modal-overlay .newRevCard {
        max-width: 700px !important;
        padding: 30px !important;
    }
}

@media (max-width:785px) {
  main
  {
    margin-top: 10vh;
  }
}

/* ── Reviews sub-nav ─────────────────────────────────────────── */
.reviews-subnav {
    display: flex;
    justify-content: center;
    margin: 28px auto 0;
    width: 100%;
}

.reviews-subnav ul {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 5px;
    background: linear-gradient(135deg, #e8edf7 0%, #fce8f0 100%);
    border: 1.5px solid rgba(0, 36, 107, 0.12);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 36, 107, 0.08), 0 1px 4px rgba(245, 0, 79, 0.06);
}

.reviews-subnav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #00246B;
    text-decoration: none;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease;
}

.reviews-subnav__link:hover {
    background: rgba(0, 36, 107, 0.08);
    transform: translateY(-1px);
}

/* Active — brand gradient fill */
.reviews-subnav__link--active {
    background: linear-gradient(135deg, #00246B 0%, #F5004F 160%);
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 36, 107, 0.25);
    pointer-events: none;
}

.reviews-subnav__link--active:hover {
    transform: none;
}

/* Dark mode */
[data-theme="dark"] .reviews-subnav ul {
    background: linear-gradient(135deg, rgba(0, 36, 107, 0.25) 0%, rgba(245, 0, 79, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .reviews-subnav__link {
    color: rgba(255, 255, 255, 0.75);
}

[data-theme="dark"] .reviews-subnav__link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 500px) {
    .reviews-subnav ul {
        gap: 3px;
        padding: 4px;
    }

    .reviews-subnav__link {
        font-size: 13px;
        padding: 8px 14px;
        gap: 6px;
    }
}

     /* ══════════════════════════════════════════════════════════════
   PAGE HERO — Written Reviews
   Mirrors .vr-page-hero from video-reviews.css using local tokens
══════════════════════════════════════════════════════════════ */
.vr-page-hero {
    width: 100%;
    max-width: 720px;
    text-align: center;
    padding: 52px 24px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0 auto;
    animation: vr-fadeUp 0.6s ease both;
}

@keyframes vr-fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.vr-page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #F6318C;
    background: rgba(246, 49, 140, 0.08);
    border: 1px solid rgba(246, 49, 140, 0.2);
    padding: 5px 14px;
    border-radius: 40px;
}

.vr-page-hero__title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 400;
    line-height: 1.12;
    color: #1A1A2E;
    margin: 0;
    letter-spacing: -0.015em;
}

.vr-page-hero__title em {
    font-style: italic;
    color: #F6318C;
}

.vr-page-hero__title strong {
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(135deg, #00246B 0%, #F6318C 140%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
     color: transparent !important;
}

.vr-page-hero__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #6B6B80;
    max-width: 520px;
    margin: 0;
}

.vr-page-hero__divider {
    width: 52px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, #00246B, #F6318C);
    margin-top: 4px;
}

/* ── Dark mode ──────────────────────────────────────────────── */
[data-theme="dark"] .vr-page-hero__eyebrow {
    background: rgba(246, 49, 140, 0.13);
    border-color: rgba(246, 49, 140, 0.28);
}

[data-theme="dark"] .vr-page-hero__title {
    color: #EDF0F7;
}

[data-theme="dark"] .vr-page-hero__title strong {
    background: linear-gradient(135deg, #7AA8FF 0%, #F6318C 140%);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="dark"] .vr-page-hero__sub {
    color: #8A8FAA;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 576px) {
    .vr-page-hero {
        padding: 32px 18px 4px;
        gap: 12px;
    }
}
