/**
 * Premium Graduate Videos Page — scoped under .graduate-videos-page only
 * Primary: #5786C7
 */

.graduate-videos-page {
    --gv-primary: #5786C7;
    --gv-primary-dark: #4569a8;
    --gv-primary-deep: #3d6aab;
    --gv-primary-light: #DCE9FA;
    --gv-primary-soft: #EEF4FC;
    --gv-bg: #F8FAFD;
    --gv-white: #FFFFFF;
    --gv-text: #1F2937;
    --gv-muted: #64748B;
    --gv-radius: 24px;
    --gv-radius-sm: 18px;
    --gv-radius-card: 24px;
    --gv-shadow: 0 12px 40px rgba(87, 134, 199, 0.12);
    --gv-shadow-hover: 0 18px 48px rgba(87, 134, 199, 0.18);
    --gv-container: min(1200px, calc(100% - 2rem));
    position: relative;
    overflow-x: clip;
    background: linear-gradient(180deg, var(--gv-white) 0%, var(--gv-bg) 35%, var(--gv-bg) 100%);
    color: var(--gv-text);
}

body.graduate-videos-page .premium-pupil-bg,
body.graduate-videos-page .premium-home-bg-accent,
body.graduate-videos-page .bubbles-container { opacity: 0.35; }
body.graduate-videos-page .premium-montessori-float-layer { opacity: 0.2; }

body.graduate-videos-page a.nav-link[href$="/graduate-videos"],
body.graduate-videos-page a.nav-link[href$="graduate-videos"],
body.graduate-videos-page .dropdown-menu a.nav-link[href$="/graduate-videos"],
body.graduate-videos-page .dropdown-menu a.nav-link[href$="graduate-videos"] {
    color: var(--gv-primary) !important;
    font-weight: 700;
    position: relative;
}
body.graduate-videos-page a.nav-link[href$="/graduate-videos"]::after,
body.graduate-videos-page a.nav-link[href$="graduate-videos"]::after,
body.graduate-videos-page .dropdown-menu a.nav-link[href$="/graduate-videos"]::after,
body.graduate-videos-page .dropdown-menu a.nav-link[href$="graduate-videos"]::after {
    content: "";
    position: absolute;
    bottom: 0.15rem;
    right: 0.75rem;
    left: 0.75rem;
    height: 2px;
    background: var(--gv-primary);
    border-radius: 2px;
}

.graduate-videos-page .videos-hero__container,
.graduate-videos-page .videos-trust__container,
.graduate-videos-page .videos-featured__container,
.graduate-videos-page .video-search__container,
.graduate-videos-page .video-grid-section__container,
.graduate-videos-page .videos-crosslink__container,
.graduate-videos-page .video-cta__container {
    width: var(--gv-container);
    max-width: 100%;
    margin-inline: auto;
}

.graduate-videos-page .videos-reveal {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.graduate-videos-page .videos-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.graduate-videos-page .visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
    .graduate-videos-page .videos-reveal { opacity: 1; transform: none; transition: none; }
    .graduate-videos-page .videos-hero__blob,
    .graduate-videos-page .videos-hero__mockup,
    .graduate-videos-page .videos-hero__float-card { animation: none !important; }
}

/* HERO */
.graduate-videos-page .videos-hero { padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(1rem, 3vw, 1.5rem); }
.graduate-videos-page .videos-hero__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
.graduate-videos-page .videos-hero__content { text-align: right; }
.graduate-videos-page .videos-hero__kicker {
    display: inline-block; font-size: 0.82rem; font-weight: 700; color: var(--gv-primary);
    background: var(--gv-primary-soft); padding: 0.35rem 0.85rem; border-radius: 999px; margin-bottom: 0.75rem;
}
.graduate-videos-page .videos-hero__title {
    font-size: clamp(1.65rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.35;
    color: var(--gv-primary); margin: 0 0 0.75rem;
}
.graduate-videos-page .videos-hero__lead {
    font-size: clamp(0.95rem, 1.5vw, 1.08rem); line-height: 1.85; color: var(--gv-muted); margin: 0 0 0.65rem;
}
.graduate-videos-page .videos-hero__support {
    font-size: 0.92rem; line-height: 1.8; color: var(--gv-text); margin: 0 0 1.35rem; max-width: 38em; margin-inline-start: auto;
}
.graduate-videos-page .videos-hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.graduate-videos-page .videos-hero__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    min-height: 48px; padding: 0.65rem 1.35rem; border-radius: 999px; font-size: 0.95rem; font-weight: 700;
    text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.graduate-videos-page .videos-hero__btn--primary {
    color: var(--gv-white); background: var(--gv-primary); box-shadow: 0 8px 24px rgba(87, 134, 199, 0.35);
}
.graduate-videos-page .videos-hero__btn--primary:hover {
    background: var(--gv-primary-dark); transform: translateY(-2px); color: var(--gv-white); text-decoration: none;
}
.graduate-videos-page .videos-hero__btn--secondary {
    color: var(--gv-primary); background: var(--gv-white); border: 2px solid var(--gv-primary);
}
.graduate-videos-page .videos-hero__btn--secondary:hover {
    background: var(--gv-primary-soft); transform: translateY(-2px); color: var(--gv-primary-dark); text-decoration: none;
}

.graduate-videos-page .videos-hero__visual {
    position: relative; min-height: clamp(300px, 42vw, 460px);
    display: flex; align-items: center; justify-content: center;
}
.graduate-videos-page .videos-hero__blob-wrap {
    position: relative; width: 100%; max-width: 520px; aspect-ratio: 1 / 0.95; margin-inline: auto;
}
.graduate-videos-page .videos-hero__blob {
    position: absolute; inset: 5% 0 8% 5%; overflow: hidden;
    background: radial-gradient(ellipse 80% 70% at 30% 35%, rgba(255,255,255,0.35) 0%, transparent 55%),
        linear-gradient(145deg, #6a96d4 0%, var(--gv-primary) 42%, var(--gv-primary-deep) 100%);
    border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%;
    box-shadow: 0 24px 60px rgba(87, 134, 199, 0.35), inset 0 -20px 40px rgba(0, 0, 0, 0.06);
    animation: gvBlobDrift 9s ease-in-out infinite alternate;
}
@keyframes gvBlobDrift {
    0% { border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%; transform: translate3d(0,0,0) scale(1); }
    100% { border-radius: 48% 52% 55% 45% / 45% 55% 42% 58%; transform: translate3d(-6px,8px,0) scale(1.02); }
}
.graduate-videos-page .videos-hero__mockup {
    position: absolute; inset: 12% 8% 10% 8%; z-index: 1; display: flex; align-items: center; justify-content: center;
    animation: gvMockupFloat 7s ease-in-out infinite alternate;
}
@keyframes gvMockupFloat {
    0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(0,-10px,0); }
}
.graduate-videos-page .videos-hero__mockup-img {
    width: 100%; max-width: 300px; aspect-ratio: 4/3; object-fit: cover;
    border-radius: clamp(16px, 3vw, 24px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); border: 4px solid rgba(255,255,255,0.8);
}
.graduate-videos-page .videos-hero__mockup-placeholder {
    width: 100%; max-width: 300px; aspect-ratio: 4/3;
    border-radius: clamp(16px, 3vw, 24px); box-shadow: 0 20px 48px rgba(0,0,0,0.2); border: 4px solid rgba(255,255,255,0.8);
    background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85); font-size: 4rem;
}
.graduate-videos-page .videos-hero__play-ring {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(13, 17, 23, 0.25); border-radius: inherit; pointer-events: none;
}
.graduate-videos-page .videos-hero__play-ring i {
    width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--gv-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.5rem; padding-inline-start: 4px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.graduate-videos-page .videos-hero__deco { position: absolute; pointer-events: none; }
.graduate-videos-page .videos-hero__deco--dots {
    width: 80px; height: 80px; top: 4%; left: 8%;
    background-image: radial-gradient(circle, var(--gv-primary) 2px, transparent 2px); background-size: 12px 12px; opacity: 0.35;
}
.graduate-videos-page .videos-hero__deco--ring {
    width: 48px; height: 48px; top: 12%; right: 6%; border: 2px solid rgba(87,134,199,0.35); border-radius: 50%;
}
.graduate-videos-page .videos-hero__deco--triangle {
    width: 0; height: 0; bottom: 18%; left: 4%;
    border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 24px solid rgba(87,134,199,0.2);
}
.graduate-videos-page .videos-hero__float-card {
    position: absolute; z-index: 3; background: var(--gv-white); border-radius: var(--gv-radius-sm);
    padding: 0.65rem 0.85rem; box-shadow: var(--gv-shadow); border: 1px solid rgba(87,134,199,0.08);
    max-width: 210px; animation: gvFloatCard 6s ease-in-out infinite;
}
.graduate-videos-page .videos-hero__float-card--1 { top: 6%; right: 0; }
.graduate-videos-page .videos-hero__float-card--2 { top: 38%; left: -6%; animation-delay: -2s; }
.graduate-videos-page .videos-hero__float-card--3 { bottom: 10%; right: 2%; animation-delay: -4s; }
@keyframes gvFloatCard {
    0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-8px,0); }
}
.graduate-videos-page .videos-hero__float-top { display: flex; align-items: center; gap: 0.5rem; }
.graduate-videos-page .videos-hero__float-thumb {
    width: 44px; height: 44px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}
.graduate-videos-page .videos-hero__float-icon {
    width: 44px; height: 44px; border-radius: 10px; background: var(--gv-primary-soft); color: var(--gv-primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.graduate-videos-page .videos-hero__float-title {
    display: block; font-size: 0.78rem; font-weight: 700; color: var(--gv-text); line-height: 1.35;
}
.graduate-videos-page .videos-hero__float-label { display: block; font-size: 0.7rem; color: var(--gv-muted); }

/* TRUST */
.graduate-videos-page .videos-trust { padding: 0 0 clamp(1.5rem, 4vw, 2.5rem); margin-top: -1.5rem; position: relative; z-index: 2; }
.graduate-videos-page .videos-trust__panel {
    background: var(--gv-white); border-radius: var(--gv-radius); box-shadow: var(--gv-shadow);
    border: 1px solid rgba(87,134,199,0.08); padding: clamp(1.25rem, 3vw, 1.75rem);
}
.graduate-videos-page .videos-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.graduate-videos-page .videos-trust__item { display: flex; align-items: center; gap: 0.75rem; text-align: right; }
.graduate-videos-page .videos-trust__icon {
    width: 48px; height: 48px; border-radius: 50%; background: var(--gv-primary-soft); color: var(--gv-primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.graduate-videos-page .videos-trust__number { font-size: clamp(1.35rem, 2.5vw, 1.75rem); font-weight: 800; color: var(--gv-text); margin: 0; line-height: 1.2; }
.graduate-videos-page .videos-trust__label { font-size: 0.85rem; color: var(--gv-muted); margin: 0; line-height: 1.4; }

/* FEATURED */
.graduate-videos-page .videos-featured { padding: clamp(1rem, 3vw, 2rem) 0; }
.graduate-videos-page .videos-featured__title {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 800; color: var(--gv-primary); margin: 0 0 1.25rem;
}
.graduate-videos-page .videos-featured__panel {
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center;
    background: linear-gradient(135deg, var(--gv-primary-soft) 0%, var(--gv-white) 55%);
    border-radius: var(--gv-radius); padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: var(--gv-shadow); border: 1px solid rgba(87,134,199,0.1);
}
.graduate-videos-page .videos-featured__media-link {
    position: relative; display: block; border-radius: var(--gv-radius-sm); overflow: hidden; aspect-ratio: 16/9;
    box-shadow: 0 16px 40px rgba(15,32,68,0.15);
}
.graduate-videos-page .videos-featured__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.graduate-videos-page .videos-featured__placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, var(--gv-primary) 0%, var(--gv-primary-deep) 100%);
    color: rgba(255,255,255,0.7); font-size: 3rem;
}
.graduate-videos-page .videos-featured__play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(13,17,23,0.35); transition: background 0.25s ease;
}
.graduate-videos-page .videos-featured__media-link:hover .videos-featured__play { background: rgba(13,17,23,0.5); }
.graduate-videos-page .videos-featured__play i {
    width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--gv-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; padding-inline-start: 4px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.25); transition: transform 0.25s ease;
}
.graduate-videos-page .videos-featured__media-link:hover .videos-featured__play i { transform: scale(1.06); }
.graduate-videos-page .videos-featured__label {
    display: inline-block; font-size: 0.78rem; font-weight: 700; color: var(--gv-primary);
    background: var(--gv-primary-soft); padding: 0.3rem 0.75rem; border-radius: 999px; margin-bottom: 0.65rem;
}
.graduate-videos-page .videos-featured__video-title {
    font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 800; color: var(--gv-text); margin: 0 0 0.75rem; line-height: 1.45;
}
.graduate-videos-page .videos-featured__desc { font-size: 0.92rem; line-height: 1.75; color: var(--gv-muted); margin: 0 0 0.75rem; }
.graduate-videos-page .videos-featured__duration { font-size: 0.85rem; color: var(--gv-muted); margin: 0 0 1rem; }
.graduate-videos-page .videos-featured__btn {
    display: inline-flex; align-items: center; gap: 0.5rem; min-height: 48px; padding: 0.65rem 1.5rem;
    border-radius: 999px; background: var(--gv-primary); color: var(--gv-white); font-weight: 700; text-decoration: none;
    box-shadow: 0 8px 24px rgba(87,134,199,0.35); transition: transform 0.25s ease, background 0.25s ease;
}
.graduate-videos-page .videos-featured__btn:hover { background: var(--gv-primary-dark); transform: translateY(-2px); color: var(--gv-white); text-decoration: none; }

/* SEARCH */
.graduate-videos-page .video-search { padding: clamp(1rem, 3vw, 1.75rem) 0 0.5rem; }
.graduate-videos-page .video-search__bar {
    display: flex; align-items: center; background: var(--gv-white); border-radius: 999px;
    box-shadow: var(--gv-shadow); border: 1px solid rgba(87,134,199,0.1); padding: 0.35rem;
}
.graduate-videos-page .video-search__input {
    flex: 1; border: none; outline: none; background: transparent; font-size: 1rem;
    padding: 0.85rem 1rem; color: var(--gv-text); min-width: 0; min-height: 44px;
}
.graduate-videos-page .video-search__submit {
    width: 48px; height: 48px; min-width: 48px; border: none; border-radius: 50%;
    background: var(--gv-primary); color: var(--gv-white); cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}
.graduate-videos-page .video-search__submit:hover { background: var(--gv-primary-dark); transform: scale(1.05); }

/* GRID */
.graduate-videos-page .video-grid-section { padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3rem); }
.graduate-videos-page .video-grid-section__title {
    font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 800; color: var(--gv-primary); margin: 0 0 0.5rem;
}
.graduate-videos-page .video-grid-section__hint { font-size: 0.9rem; color: var(--gv-muted); margin: 0 0 1.5rem; line-height: 1.6; }
.graduate-videos-page .video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.graduate-videos-page .video-grid-section__empty { text-align: center; padding: 3rem 1rem; color: var(--gv-muted); }
.graduate-videos-page .video-grid-section__empty i { font-size: 2.5rem; margin-bottom: 1rem; display: block; color: var(--gv-primary); }
.graduate-videos-page .video-grid-section__clear {
    display: inline-flex; margin-top: 1rem; padding: 0.5rem 1.25rem; border-radius: 999px;
    border: 2px solid var(--gv-primary); color: var(--gv-primary); text-decoration: none; font-weight: 700;
}

/* VIDEO CARD */
.graduate-videos-page .video-card { height: 100%; }
.graduate-videos-page .video-card__link {
    display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit;
    background: var(--gv-white); border-radius: var(--gv-radius-card); overflow: hidden;
    box-shadow: var(--gv-shadow); border: 1px solid rgba(87,134,199,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.graduate-videos-page .video-card__link:hover {
    transform: translateY(-6px); box-shadow: var(--gv-shadow-hover); text-decoration: none; color: inherit;
}
.graduate-videos-page .video-card__thumb { position: relative; aspect-ratio: 16/9; background: var(--gv-primary-deep); overflow: hidden; }
.graduate-videos-page .video-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.graduate-videos-page .video-card__placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(145deg, var(--gv-primary) 0%, var(--gv-primary-deep) 100%);
    color: rgba(255,255,255,0.55); font-size: 2.5rem;
}
.graduate-videos-page .video-card__play {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(13,17,23,0.32); transition: background 0.25s ease;
}
.graduate-videos-page .video-card__link:hover .video-card__play { background: rgba(13,17,23,0.48); }
.graduate-videos-page .video-card__play i {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.95); color: var(--gv-primary);
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem; padding-inline-start: 3px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.graduate-videos-page .video-card__link:hover .video-card__play i {
    transform: scale(1.06); box-shadow: 0 0 0 8px rgba(87,134,199,0.25);
}
.graduate-videos-page .video-card__duration {
    position: absolute; bottom: 10px; left: 10px; font-size: 0.75rem; font-weight: 700;
    padding: 0.25rem 0.55rem; border-radius: 6px; background: rgba(0,0,0,0.72); color: #fff;
}
.graduate-videos-page .video-card__body { padding: 1rem 1.1rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.graduate-videos-page .video-card__label {
    font-size: 0.72rem; font-weight: 700; color: var(--gv-primary); margin-bottom: 0.35rem;
}
.graduate-videos-page .video-card__title {
    font-size: 0.98rem; font-weight: 700; color: var(--gv-text); margin: 0 0 0.75rem; line-height: 1.45; flex: 1;
}
.graduate-videos-page .video-card__btn {
    display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.85rem; font-weight: 700; color: var(--gv-primary);
}

/* PAGINATION */
.graduate-videos-page .video-pagination { display: flex; justify-content: center; margin-top: 2rem; }
.graduate-videos-page .video-pagination .pagination { flex-wrap: wrap; justify-content: center; gap: 0.35rem; margin: 0; }
.graduate-videos-page .video-pagination .page-item .page-link {
    min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center;
    border-radius: 12px !important; border: 1px solid rgba(87,134,199,0.2) !important;
    color: var(--gv-primary) !important; font-weight: 700; background: var(--gv-white) !important;
    transition: background 0.2s ease, color 0.2s ease;
}
.graduate-videos-page .video-pagination .page-item.active .page-link {
    background: var(--gv-primary) !important; border-color: var(--gv-primary) !important; color: var(--gv-white) !important;
}
.graduate-videos-page .video-pagination .page-item.disabled .page-link { opacity: 0.45; }

/* CROSS LINKS */
.graduate-videos-page .videos-crosslink { padding: 0 0 1.25rem; }
.graduate-videos-page .videos-crosslink--compact { padding-bottom: 0.5rem; }
.graduate-videos-page .videos-crosslink__panel {
    border-radius: var(--gv-radius); padding: clamp(1.25rem, 3vw, 1.75rem);
    box-shadow: var(--gv-shadow); border: 1px solid rgba(87,134,199,0.08);
}
.graduate-videos-page .videos-crosslink__panel--light { background: var(--gv-white); }
.graduate-videos-page .videos-crosslink__panel--soft { background: var(--gv-primary-soft); }
.graduate-videos-page .videos-crosslink__title {
    font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 800; color: var(--gv-primary); margin: 0 0 0.65rem;
}
.graduate-videos-page .videos-crosslink__title--sm { margin-bottom: 0; }
.graduate-videos-page .videos-crosslink__text { font-size: 0.92rem; line-height: 1.75; color: var(--gv-muted); margin: 0 0 1rem; max-width: 40em; }
.graduate-videos-page .videos-crosslink__copy--inline {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.graduate-videos-page .videos-crosslink__btn {
    display: inline-flex; align-items: center; gap: 0.5rem; min-height: 48px; padding: 0.65rem 1.35rem;
    border-radius: 999px; background: var(--gv-primary); color: var(--gv-white); font-weight: 700; text-decoration: none;
    box-shadow: 0 8px 24px rgba(87,134,199,0.3); transition: transform 0.25s ease, background 0.25s ease;
}
.graduate-videos-page .videos-crosslink__btn:hover { background: var(--gv-primary-dark); transform: translateY(-2px); color: var(--gv-white); text-decoration: none; }
.graduate-videos-page .videos-crosslink__btn--outline {
    background: var(--gv-white); color: var(--gv-primary); border: 2px solid var(--gv-primary); box-shadow: none;
}
.graduate-videos-page .videos-crosslink__btn--outline:hover { background: var(--gv-primary-soft); color: var(--gv-primary-dark); }

/* FINAL CTA */
.graduate-videos-page .video-cta { padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(3rem, 6vw, 4rem); }
.graduate-videos-page .video-cta__panel {
    position: relative; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center;
    background: linear-gradient(135deg, var(--gv-primary) 0%, var(--gv-primary-deep) 100%);
    border-radius: var(--gv-radius); padding: clamp(2rem, 5vw, 3rem); overflow: hidden;
    box-shadow: 0 20px 60px rgba(87, 134, 199, 0.4);
}
.graduate-videos-page .video-cta__deco--dots {
    position: absolute; top: 1rem; left: 1rem; width: 100px; height: 100px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 2px); background-size: 14px 14px;
}
.graduate-videos-page .video-cta__visual { display: flex; flex-direction: column; gap: 0.75rem; }
.graduate-videos-page .video-cta__icon {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); color: var(--gv-white);
    display: flex; align-items: center; justify-content: center; font-size: 1.35rem;
}
.graduate-videos-page .video-cta__title {
    font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 800; color: var(--gv-white); margin: 0 0 0.75rem; line-height: 1.4;
}
.graduate-videos-page .video-cta__text { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.88); margin: 0 0 1.5rem; max-width: 40em; }
.graduate-videos-page .video-cta__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.graduate-videos-page .video-cta__btn {
    display: inline-flex; align-items: center; gap: 0.5rem; min-height: 48px; padding: 0.65rem 1.5rem;
    border-radius: 999px; font-size: 0.95rem; font-weight: 700; text-decoration: none; transition: transform 0.25s ease;
}
.graduate-videos-page .video-cta__btn--primary { background: var(--gv-white); color: var(--gv-primary); }
.graduate-videos-page .video-cta__btn--primary:hover { transform: translateY(-2px); color: var(--gv-primary-dark); text-decoration: none; }
.graduate-videos-page .video-cta__btn--secondary {
    background: transparent; color: var(--gv-white); border: 2px solid rgba(255,255,255,0.7);
}
.graduate-videos-page .video-cta__btn--secondary:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); color: var(--gv-white); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1199px) {
    .graduate-videos-page .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1023px) {
    .graduate-videos-page .videos-hero__grid { grid-template-columns: 1fr; }
    .graduate-videos-page .videos-hero__visual { order: 2; min-height: 280px; }
    .graduate-videos-page .videos-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .graduate-videos-page .videos-featured__panel { grid-template-columns: 1fr; }
    .graduate-videos-page .video-cta__panel { grid-template-columns: 1fr; text-align: center; }
    .graduate-videos-page .video-cta__visual { display: none; }
    .graduate-videos-page .video-cta__actions { justify-content: center; }
}
@media (max-width: 767px) {
    .graduate-videos-page .videos-trust__grid { grid-template-columns: 1fr; }
    .graduate-videos-page .video-grid { grid-template-columns: 1fr; }
    .graduate-videos-page .videos-hero__actions { flex-direction: column; }
    .graduate-videos-page .videos-hero__btn,
    .graduate-videos-page .video-cta__btn,
    .graduate-videos-page .videos-crosslink__btn { width: 100%; justify-content: center; }
    .graduate-videos-page .videos-hero__float-card--3 { display: none; }
    .graduate-videos-page .videos-crosslink__copy--inline { flex-direction: column; align-items: stretch; text-align: center; }
}
