/*
 * Gaming Playbook Blog - Homepage/Podcast Archive Styles
 * Specific styles for the front page (which serves as podcast archive)
 *
 * @package Gaming_Playbook
 * @since 1.0.0
 */

/* Homepage/Podcast archive specific styles go here */


@font-face {
   font-family: 'Scandia';
   src: url('../../fonts/Scandia-Medium.otf') format('opentype');
   font-weight: 500;
   font-style: normal;
   font-display: swap;
}

*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

:root {
   --bg: #ffffff;
   --surface: #f5f5f5;
   --surface-2: #eeeeee;
   --border: rgba(26, 24, 29, 0.12);
   --cat-dev: #0D7377;
   --cat-careers: #E07B39;
   --cat-invest: #2B4EAF;
   --cat-lead: #2B4EAF;
   --cat-brand: #5E17EB;
   --cat-hr: #E07B39;
   --accent: #1A181D;
   --accent-color: #0057ff;
   --text-primary: #1A181D;
   --text-secondary: #444444;
   --text-muted: #888888;
   --gold: #FFBD59;
   --max-w: 1200px;
   --font-heading: 'Scandia', Helvetica, Arial, sans-serif;
   --font-body: Helvetica, Arial, sans-serif;
}

html {
   scroll-behavior: smooth;
}

body {
   font-family: var(--font-body);
   background: var(--bg);
   color: var(--text-primary);
   line-height: 1.75;
   font-size: 16px;
   -webkit-font-smoothing: antialiased;
}

h1 {
   font-family: var(--font-heading);
   font-size: clamp(28px, 5vw, 56px);
   font-weight: 500;
   line-height: 1.08;
   letter-spacing: -1.5px;
}

h2 {
   font-family: var(--font-heading);
   font-size: clamp(22px, 3.5vw, 42px);
   font-weight: 500;
   line-height: 1.12;
   letter-spacing: -0.8px;
}

h3 {
   font-family: var(--font-heading);
   font-size: clamp(17px, 2.5vw, 26px);
   font-weight: 500;
   line-height: 1.2;
   letter-spacing: -0.3px;
}

h4 {
   font-family: var(--font-heading);
   font-size: clamp(15px, 2vw, 20px);
   font-weight: 500;
   line-height: 1.25;
}

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

/* ── NAV ── */
nav {
   position: sticky;
   top: 0;
   z-index: 100;
   background: #1A181D;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 32px;
   height: 65px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
}

.nav-left {
   flex: 1;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}

.nav-right {
   display: flex;
   align-items: center;
   justify-content: flex-end;
}

.nav-logo {
   display: flex;
   align-items: center;
   text-decoration: none;
   line-height: 0;
   flex-shrink: 0;
}

.nav-logo img {
   height: 70px;
   width: auto;
   display: block;
   object-fit: contain;
   filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.55));
}

.nav-links {
   display: flex;
   align-items: center;
   gap: 36px;
   list-style: none;
   margin: 0;
   padding: 0;
}

.nav-links a {
   color: #F6F4F1;
   text-decoration: none;
   font-size: 15px;
   font-weight: 600;
   font-family: var(--font-heading);
   letter-spacing: 0.01em;
   transition: color 0.2s;
}

.nav-links a:hover {
   color: #FFBD59;
}

.nav-links a.active {
   color: var(--gold);
}

.nav-hamburger {
   display: none;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   cursor: pointer;
   padding: 4px;
   margin-left: auto;
   background: none;
   border: none;
}

.nav-hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: #ffffff;
   border-radius: 2px;
   transition: all 0.25s;
}

.nav-drawer {
   display: none;
   position: fixed;
   top: 65px;
   left: 0;
   right: 0;
   background: #1A181D;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 20px 24px 28px;
   z-index: 99;
   flex-direction: column;
   gap: 0;
}

.nav-drawer.open {
   display: flex;
}

.nav-drawer a {
   color: #F6F4F1;
   text-decoration: none;
   font-size: 17px;
   font-weight: 600;
   font-family: var(--font-heading);
   padding: 14px 0;
   border-bottom: 1px solid rgba(255, 255, 255, 0.07);
   transition: color 0.2s;
}

.nav-drawer a:last-child {
   border-bottom: none;
}

.nav-drawer a:hover {
   color: var(--gold);
}

.nav-drawer a.active {
   color: var(--gold);
}

/* ── SHARED SECTION WRAPPER ── */
.section-wrap {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px;
}

/* ── SECTION HEADER ── */
.section-header {
   display: flex;
   align-items: baseline;
   justify-content: space-between;
   margin-bottom: 28px;
   padding-bottom: 14px;
   border-bottom: 2px solid var(--accent);
}

.section-header h2 {
   font-size: clamp(18px, 2.5vw, 24px);
   font-weight: 700;
   letter-spacing: -0.2px;
   text-transform: uppercase;
}

.section-header__link {
   font-size: 13px;
   font-weight: 600;
   color: var(--text-muted);
   font-family: var(--font-body);
   transition: color 0.2s;
}

.section-header__link:hover {
   color: var(--accent);
}

/* ── EPISODE CARD ── */
.ep-card {
   display: flex;
   flex-direction: column;
   text-decoration: none;
   color: inherit;
   transition: opacity 0.18s ease;
}

.ep-card:hover {
   opacity: 0.8;
}

.ep-card__thumb {
   width: 100%;
   aspect-ratio: 16/9;
   object-fit: cover;
   display: block;
   border-radius: 6px;
   background: var(--surface);
   margin-bottom: 14px;
}

.ep-card__tags {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-bottom: 8px;
}

/* Category colour rules */
.ep-card__tag[data-cat="game-development"],
.latest-ep__tag[data-cat="game-development"],
.archive-card__tag[data-cat="game-development"] {
   color: var(--cat-dev);
}

.ep-card__tag[data-cat="game-careers"],
.latest-ep__tag[data-cat="game-careers"],
.archive-card__tag[data-cat="game-careers"] {
   color: var(--cat-careers);
}

.ep-card__tag[data-cat="gaming-investment"],
.latest-ep__tag[data-cat="gaming-investment"],
.archive-card__tag[data-cat="gaming-investment"] {
   color: var(--cat-invest);
}

.ep-card__tag[data-cat="leadership"],
.latest-ep__tag[data-cat="leadership"],
.archive-card__tag[data-cat="leadership"] {
   color: var(--cat-lead);
}

.ep-card__tag[data-cat="personal-branding"],
.latest-ep__tag[data-cat="personal-branding"],
.archive-card__tag[data-cat="personal-branding"] {
   color: var(--cat-brand);
}

.ep-card__tag[data-cat="recruitment-hr"],
.latest-ep__tag[data-cat="recruitment-hr"],
.archive-card__tag[data-cat="recruitment-hr"] {
   color: var(--cat-hr);
}

.ep-card__tag {
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

/* .ep-card__tag+.ep-card__tag::before {
   content: '·';
   margin-right: 6px;
   color: var(--border);
} */

.ep-card__date {
   font-size: 11px;
   color: var(--text-muted);
   font-family: var(--font-body);
   margin-bottom: 6px;
}

.ep-card__title {
   font-family: var(--font-heading);
   font-size: clamp(15px, 2vw, 18px);
   font-weight: 600;
   line-height: 1.25;
   color: var(--text-primary);
   margin-bottom: 8px;
   transition: color 0.2s;
}

.ep-card__excerpt {
   font-size: 13px;
   color: var(--text-secondary);
   line-height: 1.55;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

/* ── HERO SECTION ── */
.hero {
   background: #1A181D;
   padding: 72px 0 80px;
}

.hero__inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 40px;
   display: grid;
   grid-template-columns: 340px 1fr;
   gap: 64px;
   align-items: center;
}

.hero__cover {
   width: 100%;
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.hero__cover img {
   width: 100%;
   display: block;
   object-fit: cover;
}

.hero__content {
   color: #F6F4F1;
}

.hero__eyebrow {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--gold);
   font-family: var(--font-body);
   margin-bottom: 16px;
}

.hero__title {
   font-family: var(--font-heading);
   font-size: clamp(28px, 4vw, 56px);
   font-weight: 700;
   line-height: 1.0;
   letter-spacing: -2px;
   color: #ffffff;
   margin-bottom: 20px;
}

.hero__desc {
   font-size: 17px;
   line-height: 1.65;
   color: rgba(246, 244, 241, 0.7);
   max-width: 520px;
   margin-bottom: 32px;
}

.hero__platforms {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
   margin-bottom: 36px;
}

.hero__platform-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 20px;
   border: 1.5px solid rgba(246, 244, 241, 0.25);
   border-radius: 6px;
   color: #F6F4F1;
   font-size: 14px;
   font-weight: 600;
   font-family: var(--font-heading);
   text-decoration: none;
   transition: border-color 0.2s, background 0.2s;
}

.hero__platform-btn:hover {
   border-color: var(--gold);
   background: rgba(255, 189, 89, 0.08);
   color: var(--gold);
}

.hero__platform-btn svg {
   flex-shrink: 0;
}

/* ── LATEST EPISODE ── */
.latest-ep {
   padding: 72px 0 0;
}

.latest-ep__card {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
   align-items: stretch;
   background: var(--surface);
   border-radius: 12px;
   overflow: hidden;
   border: 1px solid var(--border);
   text-decoration: none;
   color: inherit;
   transition: opacity 0.18s ease;
}

.latest-ep__card:hover {
   opacity: 0.8;
}

.latest-ep__thumb-wrap {
   aspect-ratio: 16/9;
   overflow: hidden;
}

.latest-ep__thumb {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
   display: block;
}

.latest-ep__body {
   padding: 36px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   gap: 12px;
}

.latest-ep__tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
}

.latest-ep__tag {
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1.2px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.latest-ep__tag+.latest-ep__tag::before {
   content: '·';
   margin-right: 8px;
   color: var(--border);
}

.latest-ep__date {
   font-size: 12px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.latest-ep__title {
   font-family: var(--font-heading);
   font-size: clamp(20px, 2.8vw, 30px);
   font-weight: 700;
   line-height: 1.15;
   color: var(--text-primary);
}

.latest-ep__excerpt {
   font-size: 14px;
   line-height: 1.65;
   color: var(--text-secondary);
   display: -webkit-box;
   -webkit-line-clamp: 4;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.latest-ep__cta {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   margin-top: 8px;
   font-size: 14px;
   font-weight: 700;
   font-family: var(--font-heading);
   color: var(--text-primary);
   border-bottom: 2px solid var(--text-primary);
   padding-bottom: 2px;
   transition: color 0.2s, border-color 0.2s;
}

.latest-ep__cta:hover {
   color: var(--gold);
   border-color: var(--gold);
}

/* ── FEATURED EPISODES (4-col with promo) ── */
.featured-eps {
   padding: 72px 0;
}

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

/* Hivemind promo card (4th column in featured grid) */
.promo-card {
   display: flex;
   flex-direction: column;
   border-radius: 8px;
   overflow: hidden;
   text-decoration: none;
   background: #0d0f2e url('../../images/hivemind-world-event-bg.jpg') center/cover no-repeat;
   border: 1px solid rgba(255, 255, 255, 0.08);
   min-height: 280px;
   position: relative;
   transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-card::before {
   content: '';
   position: absolute;
   inset: 0;
   background: rgba(8, 10, 40, 0.78);
   z-index: 0;
}

.promo-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 12px 36px rgba(0, 0, 80, 0.35);
}

.promo-card__inner {
   position: relative;
   z-index: 1;
   padding: 22px 20px;
   display: flex;
   flex-direction: column;
   gap: 12px;
   height: 100%;
}

.promo-card__icon {
   width: 52px;
   height: 52px;
   border-radius: 10px;
   object-fit: cover;
   flex-shrink: 0;
}

.promo-card__eyebrow {
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1.5px;
   color: rgba(100, 200, 255, 0.85);
   font-family: var(--font-body);
}

.promo-card__title {
   font-family: var(--font-heading);
   font-size: 17px;
   font-weight: 600;
   line-height: 1.25;
   color: #ffffff;
}

.promo-card__body {
   font-size: 13px;
   line-height: 1.55;
   color: rgba(255, 255, 255, 0.65);
   font-family: var(--font-body);
   flex: 1;
}

.promo-card__cta {
   font-size: 12px;
   font-weight: 700;
   color: #64c8ff;
   font-family: var(--font-body);
   margin-top: auto;
}

/* ── RECENT EPISODES (3-col) ── */
.recent-eps {
   padding: 0 0 72px;
}

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

.see-more-wrap {
   text-align: center;
   margin-top: 48px;
}

.btn-see-more {
   display: inline-block;
   padding: 14px 40px;
   background: var(--accent);
   color: #ffffff;
   font-family: var(--font-heading);
   font-size: 14px;
   font-weight: 700;
   border-radius: 6px;
   letter-spacing: 0.04em;
   text-transform: uppercase;
   transition: background 0.2s;
}

.btn-see-more:hover {
   background: #333;
}

/* ── HIVEMIND ECOSYSTEM STRIP ── */
.ecosystem-strip {
   background: #1A181D;
   padding: 64px 0;
}

.ecosystem-strip__header {
   text-align: center;
   margin-bottom: 48px;
}

.ecosystem-strip__eyebrow {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--gold);
   font-family: var(--font-body);
   margin-bottom: 10px;
}

.ecosystem-strip__title {
   font-family: var(--font-heading);
   font-size: clamp(22px, 3vw, 34px);
   font-weight: 700;
   color: #ffffff;
   letter-spacing: -0.5px;
}

.ecosystem-strip__grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 20px;
}

.eco-card {
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 10px;
   padding: 24px 22px;
   text-decoration: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
   transition: background 0.2s, border-color 0.2s, transform 0.18s;
}

.eco-card:hover {
   background: rgba(255, 255, 255, 0.09);
   border-color: rgba(255, 255, 255, 0.2);
   transform: translateY(-2px);
}

.eco-card__icon {
   width: 48px;
   height: 48px;
   border-radius: 10px;
   object-fit: cover;
}

.eco-card__name {
   font-family: var(--font-heading);
   font-size: 16px;
   font-weight: 600;
   color: #F6F4F1;
   line-height: 1.2;
}

.eco-card__desc {
   font-size: 13px;
   color: rgba(246, 244, 241, 0.55);
   font-family: var(--font-body);
   line-height: 1.5;
   flex: 1;
}

.eco-card__link {
   font-size: 12px;
   font-weight: 700;
   color: var(--gold);
   font-family: var(--font-body);
   transition: color 0.2s;
}

.eco-card:hover .eco-card__link {
   color: #ffd080;
}

/* ── EPISODE ARCHIVE (filterable) ── */
.ep-archive {
   padding: 72px 0;
}

.filter-tabs {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 40px;
}

.filter-tab {
   padding: 8px 18px;
   border: 1.5px solid var(--border);
   border-radius: 100px;
   font-size: 13px;
   font-weight: 600;
   font-family: var(--font-heading);
   color: var(--text-secondary);
   background: transparent;
   cursor: pointer;
   transition: all 0.18s;
}

.filter-tab:hover {
   border-color: var(--accent);
   color: var(--accent);
}

.filter-tab.active {
   background: var(--accent);
   border-color: var(--accent);
   color: #ffffff;
}

.archive-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   transition: opacity 0.35s ease, transform 0.35s ease;
}

.archive-grid.fade-out {
   opacity: 0;
}

.archive-grid.fade-in-start {
   opacity: 0;
   transform: translateY(14px);
}

.archive-grid.fade-in {
   opacity: 1;
   transform: translateY(0);
}

.archive-card {
   display: flex;
   flex-direction: column;
   text-decoration: none;
   color: inherit;
   border-bottom: 1px solid var(--border);
   padding-bottom: 28px;
   transition: opacity 0.18s;
}

.archive-card.hidden {
   display: none;
}

.archive-card:hover {
   opacity: 0.8;
}

.archive-card__thumb {
   width: 100%;
   aspect-ratio: 16/9;
   object-fit: cover;
   border-radius: 6px;
   margin-bottom: 14px;
   background: var(--surface);
}

.archive-card__tags {
   display: flex;
   flex-wrap: wrap;
   gap: 6px;
   margin-bottom: 6px;
}

.archive-card__tag {
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.archive-card__date {
   font-size: 11px;
   color: var(--text-muted);
   margin-bottom: 8px;
   font-family: var(--font-body);
}

.archive-card__title {
   font-family: var(--font-heading);
   font-size: 16px;
   font-weight: 600;
   line-height: 1.3;
   margin-bottom: 8px;
}

.archive-card__excerpt {
   font-size: 13px;
   color: var(--text-secondary);
   line-height: 1.55;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.pagination {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 56px;
}

.pagination a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border: 1.5px solid var(--border);
   border-radius: 6px;
   font-size: 14px;
   font-weight: 600;
   color: var(--text-secondary);
   transition: all 0.18s;
}

.pagination a:hover,
.pagination a.active {
   background: var(--accent);
   border-color: var(--accent);
   color: #ffffff;
}

/* ── GUEST CTA ── */
.guest-cta {
   background: var(--surface);
   border-top: 1px solid var(--border);
   border-bottom: 1px solid var(--border);
   padding: 64px 0;
}

.guest-cta__inner {
   max-width: 720px;
   margin: 0 auto;
   padding: 0 24px;
   text-align: center;
}

.guest-cta__eyebrow {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-muted);
   font-family: var(--font-body);
   margin-bottom: 14px;
}

.guest-cta__title {
   font-family: var(--font-heading);
   font-size: clamp(24px, 3.5vw, 38px);
   font-weight: 700;
   line-height: 1.1;
   letter-spacing: -0.5px;
   margin-bottom: 16px;
}

.guest-cta__body {
   font-size: 16px;
   color: var(--text-secondary);
   line-height: 1.65;
   margin-bottom: 28px;
}

.guest-cta__btn {
   display: inline-block;
   padding: 14px 36px;
   background: var(--accent);
   color: #ffffff;
   font-family: var(--font-heading);
   font-size: 15px;
   font-weight: 700;
   border-radius: 6px;
   letter-spacing: 0.03em;
   transition: background 0.2s;
}

.guest-cta__btn:hover {
   background: #333;
}

/* ── MEET HARRY ── */
.meet-harry {
   padding: 80px 0;
}

.meet-harry__inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px;
   display: grid;
   grid-template-columns: 420px 1fr;
   align-items: start;
   gap: 72px;
}

.meet-harry__photo-wrap {
   border-radius: 12px;
   overflow: hidden;
   aspect-ratio: 4 / 3;
   background: var(--surface);
   position: relative;
}

.meet-harry__photo-wrap::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, rgba(26, 24, 29, 0.65) 0%, transparent 45%);
   pointer-events: none;
   border-radius: 12px;
}

.meet-harry__photo {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: 15% center;
   display: block;
}

.meet-harry__photo-placeholder {
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, #1A181D 0%, #2d2b31 100%);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 12px;
   color: rgba(255, 255, 255, 0.3);
   font-family: var(--font-body);
   font-size: 13px;
}

.meet-harry__photo-placeholder svg {
   opacity: 0.3;
}

.meet-harry__content {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.meet-harry__eyebrow {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 2px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.meet-harry__name {
   font-family: var(--font-heading);
   font-size: clamp(28px, 4vw, 48px);
   font-weight: 700;
   line-height: 1.05;
   letter-spacing: -1px;
}

.meet-harry__bio {
   font-size: 16px;
   line-height: 1.7;
   color: var(--text-secondary);
}

.meet-harry__social {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   gap: 8px 16px;
   margin-top: 8px;
   align-items: center;
}

.meet-harry__social-link {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   font-weight: 600;
   font-family: var(--font-heading);
   color: var(--text-primary);
   padding: 6px 12px;
   border: 1px solid var(--border);
   border-radius: 6px;
   transition: color 0.2s;
}

.meet-harry__social-link:hover {
   color: var(--gold);
}

.meet-harry__social-link svg {
   flex-shrink: 0;
   opacity: 0.7;
}

/* ── READ MORE TOGGLE ── */
.meet-harry__bio-extra {
   display: none;
}

.meet-harry__bio-extra.is-open {
   display: block;
}

.meet-harry__read-more {
   display: inline;
   font-size: 14px;
   font-weight: 600;
   color: var(--text-primary);
   text-decoration: underline;
   text-underline-offset: 3px;
   font-family: var(--font-body);
   white-space: nowrap;
}

.meet-harry__read-more:hover {
   opacity: 0.65;
}


/* ── FOOTER ── */
.site-footer {
   background: #1A181D;
   color: #F6F4F1;
   padding: 0;
   font-family: var(--font-body);
}

.site-footer a {
   color: #F6F4F1;
   text-decoration: none;
   transition: color 0.2s;
}

.site-footer a:hover {
   color: var(--gold);
}

.footer-inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 48px 24px 0;
   display: grid;
   grid-template-columns: 1.4fr 1fr 1.6fr 1fr;
   gap: 48px;
}

.footer-col__heading {
   font-family: var(--font-heading);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 0.12em;
   text-transform: uppercase;
   color: #888888;
   margin-bottom: 20px;
}

.footer-brand__logo {
   height: 56px;
   width: auto;
   margin-bottom: 16px;
   display: block;
   border-radius: 0;
}

.footer-brand__tagline {
   font-size: 13px;
   color: #aaaaaa;
   line-height: 1.6;
   margin-bottom: 24px;
   max-width: 220px;
}

.footer-listen {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.footer-listen a {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: #cccccc;
}

.footer-listen a:hover {
   color: var(--gold);
}

.footer-listen svg {
   flex-shrink: 0;
   opacity: 0.8;
}

.footer-nav {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-nav a {
   font-size: 14px;
   color: #cccccc;
}

.footer-nav a:hover {
   color: var(--gold);
}

.ecosystem-list {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.ecosystem-item {
   display: flex;
   align-items: center;
   gap: 12px;
}

.ecosystem-item__icon {
   width: 36px;
   height: 36px;
   border-radius: 8px;
   flex-shrink: 0;
   object-fit: cover;
}

.ecosystem-item__text {
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.ecosystem-item__name {
   font-size: 14px;
   font-family: var(--font-heading);
   font-weight: 600;
   color: #F6F4F1;
}

.ecosystem-item__desc {
   font-size: 12px;
   color: #888888;
}

.footer-social {
   list-style: none;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.footer-social a {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   color: #cccccc;
}

.footer-social a:hover {
   color: var(--gold);
}

.footer-social svg {
   flex-shrink: 0;
   opacity: 0.8;
}

.footer-newsletter {
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   padding: 40px 0;
}

@media (max-width: 900px) and (min-width: 601px) {
   .footer-newsletter {
      padding: 32px 0;
   }
}

.footer-newsletter__inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 24px;
   flex-wrap: wrap;
}

.footer-newsletter__label {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--gold);
   margin: 0 0 6px;
   font-family: var(--font-body);
}

.footer-newsletter__title {
   font-family: var(--font-heading);
   font-size: clamp(18px, 2.5vw, 26px);
   font-weight: 700;
   color: #F6F4F1;
   margin: 0;
   line-height: 1.2;
}

.footer-newsletter__btn {
   flex-shrink: 0;
   display: inline-block;
   padding: 12px 32px;
   background: #F6F4F1;
   color: #1A181D !important;
   font-family: var(--font-heading);
   font-size: 14px;
   font-weight: 700;
   border-radius: 6px;
   letter-spacing: 0.03em;
   transition: background 0.2s;
}

.footer-newsletter__btn:hover {
   background: var(--gold) !important;
   color: #1A181D !important;
}

.footer-bottom {
   margin-top: 56px;
   border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 20px 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 12px;
}

.footer-bottom__copy {
   font-size: 12px;
   color: #666666;
}

.footer-bottom__copy a {
   color: #666666;
}

.footer-bottom__copy a:hover {
   color: var(--gold);
}

.footer-bottom__eco {
   font-size: 12px;
   color: #555555;
}

.footer-bottom__eco a {
   color: #555555;
}

.footer-bottom__eco a:hover {
   color: var(--gold);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
   .latest-ep__card {
      grid-template-columns: 1fr;
   }

   .latest-ep__body {
      padding: 24px 28px 28px;
   }
}

@media (max-width: 1024px) {
   .ep-grid-4 {
      grid-template-columns: repeat(2, 1fr);
   }

   .archive-grid {
      grid-template-columns: repeat(3, 1fr);
   }

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

   .meet-harry__inner {
      grid-template-columns: 1fr 1fr;
      gap: 48px;
   }
}

@media (max-width: 960px) {
   .hero__inner {
      grid-template-columns: 1fr;
      gap: 32px;
      text-align: center;
   }

   .hero__cover {
      max-width: 280px;
      margin: 0 auto;
   }

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

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

   .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
   }

   .nav-left {
      display: none;
   }

   .nav-hamburger {
      display: flex;
   }

   .nav-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
   }

   .nav-right {
      margin-left: auto;
   }

   .meet-harry__inner {
      grid-template-columns: 1fr;
   }

   .meet-harry__photo-wrap {
      max-width: 400px;
      aspect-ratio: 4/3;
      margin: 0 auto;
   }

   .meet-harry__social {
      justify-content: center;
   }

   .hero__platforms {
      justify-content: center;
   }

   .hero__desc {
      text-align: center;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
   }
}

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

   .latest-ep__body {
      padding: 20px 20px 24px;
   }

   .ep-grid-4 {
      grid-template-columns: 1fr;
   }

   .ep-grid-3 {
      grid-template-columns: 1fr;
   }

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

   .archive-card__title {
      font-size: 13px;
      line-height: 1.35;
   }

   .archive-card__excerpt {
      display: none;
   }

   .archive-card__thumb {
      width: 100%;
      height: auto;
   }

   

   .ecosystem-strip__grid {
      grid-template-columns: 1fr;
   }

   .section-wrap {
      padding: 0 16px;
   }

   .hero {
      padding: 25px 0 48px;
   }

   .hero__inner {
      padding: 0 20px;
      gap: 24px;
   }

   .hero__cover {
      max-width: 240px;
   }

   .hero__title {
      font-size: clamp(26px, 9vw, 40px);
      letter-spacing: -1px;
   }

   .hero__desc {
      font-size: 15px;
      text-align: center;
   }

   .hero__platforms {
      justify-content: center;
      flex-direction: column;
      align-items: center;
   }

   .hero__platform-btn {
      width: 100%;
      justify-content: center;
   }

   .nav-inner {
      padding: 0 16px;
   }

   /* ── FOOTER MOBILE ── */
   .site-footer {
      padding: 0;
   }

   .footer-newsletter {
      padding: 25px 0;
   }

   .footer-newsletter__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 16px;
   }

   .footer-newsletter__text {
      text-align: center;
   }

   .footer-newsletter__btn {
      width: 100%;
      text-align: center;
      padding: 14px 24px;
   }

   .footer-inner {
      grid-template-columns: 1fr;
      gap: 32px;
      padding: 28px 24px 0;
      text-align: center;
   }

   .footer-col {
      display: flex;
      flex-direction: column;
      align-items: center;
   }

   .footer-col__heading {
      margin-bottom: 12px;
      text-align: center;
   }

   .footer-brand__logo {
      display: block;
      margin: 0 auto 16px;
   }

   .footer-brand__tagline {
      max-width: 100%;
      text-align: center;
   }

   .footer-listen {
      flex-direction: column;
      align-items: center;
      gap: 10px;
   }

   .footer-listen a {
      justify-content: center;
   }

   .footer-nav {
      flex-direction: column;
      align-items: center;
      gap: 8px;
   }

   .footer-nav a {
      font-size: 14px;
      text-align: center;
   }

   .footer-social {
      flex-direction: column;
      align-items: center;
      gap: 8px;
   }

   .footer-social a {
      font-size: 14px;
      justify-content: center;
   }

   .ecosystem-list {
      gap: 12px;
      align-items: center;
   }

   .ecosystem-item {
      justify-content: center;
   }

   .footer-bottom {
      margin-top: 28px;
   }

   .footer-bottom__inner {
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-align: center;
   }
}

@media (max-width: 506px) {
   .meet-harry__social {
      display: grid;
      grid-template-columns: 1fr 1fr;
      justify-items: center;
   }

   .meet-harry__social-link {
      width: 100%;
      justify-content: center;
   }
}