:root {
--navy-deep: #0a1b3d;
--navy: #0f2f66;
--blue: #1656c9;
--blue-bright: #2e7cf6;
--white: #ffffff;
--offwhite: #f3f5fa;
--ink: #10182b;
--ink-soft: #4a5470;
--line-on-navy: rgba(255, 255, 255, 0.14);
--border: #e3e7f2;
--font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
--font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
--radius: 10px;
--radius-lg: 18px;
--container: 1180px;
--shadow-sm: 0 2px 10px rgba(15, 47, 102, 0.08);
--shadow-md: 0 12px 30px rgba(10, 27, 61, 0.16);
} body {
font-family: var(--font-body);
color: var(--ink);
background: var(--white);
line-height: 1.6;
font-size: 16px;
}
h1, h2, h3, h4 {
font-family: var(--font-display);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.01em;
line-height: 1.02;
margin: 0 0 0.5em;
color: var(--navy-deep);
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { text-decoration: none; }
.vs-container {
max-width: var(--container);
margin: 0 auto;
padding: 0 24px;
}
.vs-skip-link {
position: absolute;
left: -999px;
top: 0;
background: var(--blue-bright);
color: #fff;
padding: 10px 16px;
z-index: 999;
}
.vs-skip-link:focus { left: 12px; top: 12px; }
.vs-eyebrow {
display: inline-block;
font-family: var(--font-body);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.14em;
font-size: 0.72rem;
color: var(--blue-bright);
margin-bottom: 0.6em;
}
.vs-eyebrow--light { color: rgba(255, 255, 255, 0.75); }
:focus-visible {
outline: 3px solid var(--blue-bright);
outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
} .vs-waveform {
display: block;
width: 100%;
max-width: 260px;
height: 22px;
margin: 0.6em 0 1.2em;
}
.vs-waveform rect {
fill: var(--blue-bright);
opacity: 0.85;
}
.vs-eyebrow--light + .vs-waveform rect,
.vs-hero .vs-waveform rect,
.vs-page-hero .vs-waveform rect,
.vs-platforms .vs-waveform rect {
fill: rgba(255, 255, 255, 0.55);
} .vs-btn {
display: inline-flex;
align-items: center;
gap: 8px;
font-family: var(--font-body);
font-weight: 700;
font-size: 0.95rem;
padding: 14px 26px;
border-radius: 999px;
border: 2px solid transparent;
cursor: pointer;
transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.vs-btn--primary {
background: var(--blue-bright);
color: #fff;
box-shadow: 0 8px 20px rgba(46, 124, 246, 0.35);
}
.vs-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(46, 124, 246, 0.45); }
.vs-btn--ghost {
background: transparent;
border-color: rgba(255, 255, 255, 0.5);
color: #fff;
}
.vs-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.vs-play-btn {
background: var(--blue-bright);
color: #fff;
border: none;
width: 42px;
height: 42px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
transition: transform 0.15s ease, background 0.15s ease;
}
.vs-play-btn:hover { transform: scale(1.06); background: var(--blue); }
.vs-play-btn--lg { width: 64px; height: 64px; }
.vs-play-btn svg { margin-left: 2px; } .vs-site-header {
background: var(--navy-deep);
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.vs-site-header__inner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
padding: 16px 24px;
}
.vs-logo__text {
font-family: var(--font-display);
font-weight: 800;
text-transform: uppercase;
font-size: 1.5rem;
color: #fff;
letter-spacing: 0.02em;
}
.vs-logo__accent { color: var(--blue-bright); }
.vs-primary-nav__list {
display: flex;
gap: 28px;
list-style: none;
margin: 0;
padding: 0;
}
.vs-primary-nav__list a {
color: rgba(255, 255, 255, 0.85);
font-weight: 600;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 0.04em;
transition: color 0.15s ease;
}
.vs-primary-nav__list a:hover { color: var(--blue-bright); }
.vs-header-social { display: flex; gap: 10px; }
.vs-social-icon {
width: 34px;
height: 34px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.08);
color: #fff;
display: inline-flex;
align-items: center;
justify-content: center;
transition: background 0.15s ease;
}
.vs-social-icon:hover { background: var(--blue-bright); }
.vs-menu-toggle {
display: none;
flex-direction: column;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 6px;
}
.vs-menu-toggle span { width: 24px; height: 2px; background: #fff; display: block; }
.vs-mobile-nav {
display: none;
background: var(--navy);
padding: 8px 24px 20px;
}
.vs-mobile-nav.is-open { display: block; }
.vs-mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.vs-mobile-nav__list li { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.vs-mobile-nav__list a {
display: block;
padding: 14px 4px;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
}
@media (max-width: 860px) {
.vs-primary-nav, .vs-site-header .vs-header-social { display: none; }
.vs-menu-toggle { display: flex; }
} .vs-hero {
position: relative;
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%);
overflow: hidden;
padding: 72px 0 0;
}
.vs-hero__bg {
position: absolute;
inset: 0;
background-image:
repeating-linear-gradient(115deg, var(--line-on-navy) 0px, var(--line-on-navy) 1px, transparent 1px, transparent 64px),
repeating-linear-gradient(25deg, var(--line-on-navy) 0px, var(--line-on-navy) 1px, transparent 1px, transparent 64px);
opacity: 0.5;
pointer-events: none;
}
.vs-hero__inner {
position: relative;
display: grid;
grid-template-columns: 1.1fr 0.9fr;
align-items: end;
gap: 24px;
min-height: 560px;
}
.vs-hero__copy { padding-bottom: 64px; }
.vs-hero__title {
color: #fff;
font-size: clamp(3.2rem, 8vw, 6.5rem);
line-height: 0.9;
margin: 0 0 0.2em;
}
.vs-hero__lead {
color: rgba(255, 255, 255, 0.88);
font-size: 1.15rem;
font-weight: 600;
max-width: 420px;
}
.vs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.4em; }
.vs-hero__portrait {
position: relative;
display: flex;
align-items: flex-end;
justify-content: center;
height: 100%;
}
.vs-hero__portrait img {
max-height: 560px;
width: auto;
object-fit: contain;
filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}
.vs-hero__hosts-label {
position: absolute;
right: 0;
bottom: 40px;
background: #fff;
color: var(--navy-deep);
padding: 14px 22px;
border-radius: var(--radius);
box-shadow: var(--shadow-md);
text-align: right;
}
.vs-hero__hosts-label strong {
display: block;
font-family: var(--font-display);
text-transform: uppercase;
font-size: 1.1rem;
line-height: 1.1;
margin-top: 2px;
}
@media (max-width: 940px) {
.vs-hero__inner { grid-template-columns: 1fr; padding-top: 20px; }
.vs-hero__copy { padding-bottom: 24px; text-align: center; }
.vs-hero__lead { margin-left: auto; margin-right: auto; }
.vs-hero__actions { justify-content: center; }
.vs-hero__portrait { order: -1; }
.vs-hero__portrait img { max-height: 360px; }
.vs-hero__hosts-label { position: static; margin-top: 12px; text-align: center; display: inline-block; }
} .vs-section { padding: 88px 0; }
.vs-section--dark { background: var(--navy-deep); }
.vs-section__head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 16px;
margin-bottom: 40px;
flex-wrap: wrap;
}
.vs-link-arrow { font-weight: 700; color: var(--blue-bright); } .vs-about__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.vs-about__cards { display: grid; gap: 18px; }
.vs-feature-card {
background: var(--offwhite);
border-radius: var(--radius-lg);
padding: 24px 26px;
border: 1px solid var(--border);
}
.vs-feature-card__num {
font-family: var(--font-display);
font-weight: 800;
font-size: 1.6rem;
color: var(--blue-bright);
display: block;
margin-bottom: 6px;
}
.vs-feature-card h3 { margin-bottom: 6px; }
.vs-feature-card p { margin: 0; font-size: 0.94rem; }
@media (max-width: 860px) {
.vs-about__inner { grid-template-columns: 1fr; }
} .vs-platforms { text-align: center; }
.vs-platforms__title { color: #fff; }
.vs-platforms__inner .vs-waveform { margin-left: auto; margin-right: auto; }
.vs-platforms__grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 14px;
margin-top: 28px;
}
.vs-platform-btn {
background: rgba(255, 255, 255, 0.08);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.18);
padding: 12px 22px;
border-radius: 999px;
font-weight: 600;
transition: background 0.15s ease, border-color 0.15s ease;
}
.vs-platform-btn:hover { background: var(--blue-bright); border-color: var(--blue-bright); }
.vs-platform-btn--sm { padding: 8px 16px; font-size: 0.85rem; } .vs-episode-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
}
@media (max-width: 940px) { .vs-episode-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vs-episode-grid { grid-template-columns: 1fr; } }
.vs-episode-card {
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: var(--shadow-sm);
transition: transform 0.15s ease, box-shadow 0.15s ease;
display: flex;
flex-direction: column;
}
.vs-episode-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vs-episode-card__media {
position: relative;
display: block;
aspect-ratio: 16 / 9;
background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
overflow: hidden;
}
.vs-episode-card__media img { width: 100%; height: 100%; object-fit: cover; }
.vs-episode-card__fallback {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 0 20%;
}
.vs-episode-card__fallback .vs-waveform { max-width: none; height: 40%; }
.vs-episode-card__play {
position: absolute;
right: 14px;
bottom: 14px;
}
.vs-episode-card__body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.vs-episode-card__meta {
display: flex;
gap: 10px;
flex-wrap: wrap;
font-size: 0.78rem;
font-weight: 600;
color: var(--ink-soft);
text-transform: uppercase;
letter-spacing: 0.04em;
margin-bottom: 8px;
}
.vs-episode-card__meta .vs-eyebrow { margin: 0; }
.vs-episode-card__title { font-size: 1.15rem; margin-bottom: 8px; }
.vs-episode-card__title a { color: var(--navy-deep); }
.vs-episode-card__title a:hover { color: var(--blue-bright); }
.vs-episode-card__excerpt { font-size: 0.92rem; margin: 0; }
.vs-empty-state { color: var(--ink-soft); font-style: italic; } .vs-page-hero {
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
padding: 64px 0 48px;
text-align: left;
}
.vs-page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); } .vs-episode-hero {
background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 45%, var(--blue) 100%);
padding: 56px 0 48px;
}
.vs-episode-hero__meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 10px; }
.vs-episode-hero__meta .vs-eyebrow { margin: 0; }
.vs-episode-hero__title { color: #fff; font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 820px; }
.vs-audio-player {
display: flex;
align-items: center;
gap: 20px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: var(--radius-lg);
padding: 16px 22px;
margin: 24px 0 20px;
max-width: 640px;
}
.vs-audio-player .vs-waveform { margin: 0; max-width: none; flex: 1; height: 28px; }
.vs-audio-player .vs-waveform rect { fill: rgba(255, 255, 255, 0.6); }
.vs-audio-player.is-playing .vs-waveform rect { fill: var(--blue-bright); }
.vs-episode-hero__platforms { display: flex; gap: 10px; flex-wrap: wrap; }
.vs-episode-single__body {
display: grid;
grid-template-columns: 1fr 220px;
gap: 48px;
padding: 56px 0;
align-items: start;
}
.vs-episode-single__image { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.vs-episode-single__content { font-size: 1.02rem; }
.vs-episode-single__content p { color: var(--ink); }
.vs-episode-single__share { position: sticky; top: 100px; }
.vs-share-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.vs-share-btn {
width: 42px;
height: 42px;
border-radius: 50%;
background: var(--offwhite);
border: 1px solid var(--border);
color: var(--navy-deep);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.vs-share-btn:hover { transform: translateY(-2px); }
.vs-share-btn--facebook:hover { background: #1877f2; color: #fff; }
.vs-share-btn--x:hover { background: #000; color: #fff; }
.vs-share-btn--email:hover { background: var(--blue-bright); color: #fff; }
.vs-share-btn--sms:hover { background: #34c759; color: #fff; }
.vs-share-btn--copy:hover { background: var(--navy); color: #fff; }
.vs-share-btn.is-copied { background: #22c55e; color: #fff; }
@media (max-width: 860px) {
.vs-episode-single__body { grid-template-columns: 1fr; }
.vs-episode-single__share { position: static; }
} .vs-sticky-player {
position: fixed;
left: 0;
right: 0;
bottom: 0;
background: var(--navy-deep);
border-top: 1px solid rgba(255, 255, 255, 0.12);
z-index: 200;
box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}
.vs-sticky-player[hidden] { display: none; }
.vs-sticky-player__inner {
display: flex;
align-items: center;
gap: 16px;
padding: 10px 24px;
}
.vs-sticky-player__toggle {
background: var(--blue-bright);
border: none;
color: #fff;
width: 38px;
height: 38px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
flex-shrink: 0;
}
.vs-sticky-player__info { flex: 1; display: flex; align-items: center; gap: 16px; min-width: 0; }
.vs-sticky-player__title { color: #fff; font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 260px; }
.vs-sticky-player__info .vs-waveform { margin: 0; height: 20px; }
.vs-sticky-player__close { background: none; border: none; color: rgba(255, 255, 255, 0.6); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.vs-sticky-player__close:hover { color: #fff; } .vs-site-footer { background: var(--navy-deep); color: rgba(255, 255, 255, 0.75); padding: 64px 0 0; margin-top: 40px; }
.vs-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 48px; }
.vs-footer__tagline { font-size: 0.92rem; margin-top: 12px; }
.vs-footer__col h3 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-body); font-weight: 700; margin-bottom: 14px; }
.vs-footer__platforms, .vs-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.vs-footer__platforms a, .vs-footer__menu a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; }
.vs-footer__platforms a:hover, .vs-footer__menu a:hover { color: var(--blue-bright); }
.vs-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 20px 0; }
.vs-footer__bottom p { margin: 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
@media (max-width: 860px) {
.vs-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
.vs-footer__inner { grid-template-columns: 1fr; }
} .vs-pagination { margin-top: 48px; display: flex; justify-content: center; gap: 8px; }
.vs-pagination .page-numbers {
min-width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
background: var(--offwhite);
color: var(--navy-deep);
font-weight: 700;
border: 1px solid var(--border);
}
.vs-pagination .page-numbers.current { background: var(--blue-bright); color: #fff; border-color: var(--blue-bright); } .vs-page-content { max-width: 820px; padding: 56px 24px; }
.vs-page-content p { color: var(--ink); } body.vs-player-active { padding-bottom: 72px; }