/*
 * Gaming Playbook Blog - Single Podcast Styles
 * Specific styles for single podcast pages
 *
 * @package Gaming_Playbook
 * @since 1.0.0
 */


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

:root {
   /* Light theme palette */
   --bg: #ffffff;
   --surface: #f5f5f5;
   --surface-2: #eeeeee;
   --border: rgba(26, 24, 29, 0.12);
   --accent: #1A181D;
   --accent-color: #0057ff;
   --accent-dim: rgba(0, 87, 255, 0.06);
   --text-primary: #1A181D;
   --text-secondary: #444444;
   --text-muted: #888888;
   --tag-bg: #f0f0f0;
   --tag-text: #555555;
   --quote-border: #1A181D;

   /* Layout */
   --max-w: 1200px;
   --sidebar-w: 300px;
   --gap: 56px;

   /* Typography */
   --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: 18px;
   -webkit-font-smoothing: antialiased;
}

/* ── HEADING SCALE ── */
h1 {
   font-family: var(--font-heading);
   font-size: clamp(28px, 5vw, 60px);
   font-weight: 500;
   line-height: 1.1;
   letter-spacing: -1px;
}

h2 {
   font-family: var(--font-heading);
   font-size: clamp(22px, 4vw, 50px);
   font-weight: 500;
   line-height: 1.15;
   letter-spacing: -0.5px;
}

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

h4 {
   font-family: var(--font-heading);
   font-size: clamp(16px, 2.4vw, 28px);
   font-weight: 500;
   line-height: 1.25;
}

h5 {
   font-family: var(--font-heading);
   font-size: clamp(15px, 2vw, 24px);
   font-weight: 500;
   line-height: 1.3;
}

h6 {
   font-family: var(--font-heading);
   font-size: clamp(14px, 1.8vw, 20px);
   font-weight: 500;
   line-height: 1.35;
}

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

/* ── TOP BANNER ── */
.top-banner {
   width: 100%;
   height: 150px;
   background: #0b0b2e;
   display: block;
   position: relative;
   z-index: 101;
   overflow: hidden;
   cursor: pointer;
}

.top-banner img {
   width: 100%;
   height: 150px;
   object-fit: contain;
   object-position: center;
   display: block;
}

.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;
}

/* ── HAMBURGER ── */
.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: 60px;
   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: #FFBD59;
}

/* ── BREADCRUMB ── */
.breadcrumb {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
   /* visually hidden but kept in DOM for SEO structured data */
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.breadcrumb a {
   color: var(--text-muted);
   text-decoration: none;
}

.breadcrumb a:hover {
   color: var(--text-secondary);
   text-decoration: underline;
}

/* ── PAGE LAYOUT ── */
.page-wrapper {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px 100px;
   display: grid;
   grid-template-columns: 1fr var(--sidebar-w);
   gap: var(--gap);
   align-items: start;
}

/* ── ARTICLE ── */
article {
   min-width: 0;
   padding-top: 40px;
}

/* Tags */
.tag-row {
   display: flex;
   flex-wrap: wrap;
   gap: 16px;
   margin-bottom: 18px;
}

.tag {
   display: inline-block;
   background: transparent;
   color: var(--accent);
   border: none;
   padding: 0;
   border-radius: 0;
   font-size: 11px;
   font-weight: 700;
   text-decoration: none;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   text-transform: uppercase;
   font-family: var(--font-body);
   transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.tag:hover {
   color: var(--text-primary);
}

/* Article title */
h1.article-title {
   color: var(--text-primary);
   font-weight: 800;
   margin-bottom: 12px;
}

.article-subtitle {
   font-family: var(--font-body);
   font-size: 20px;
   font-weight: 400;
   line-height: 1.5;
   color: var(--text-secondary);
   margin: 0 0 24px;
   letter-spacing: -0.01em;
   border-left: 3px solid var(--accent);
   padding-left: 14px;
}

/* Meta */
.article-meta {
   display: flex;
   align-items: center;
   gap: 0;
   margin-bottom: 36px;
   flex-wrap: wrap;
   padding-bottom: 28px;
   border-bottom: 1px solid var(--border);
}

.meta-avatar {
   display: none !important;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: #1A181D;
   align-items: center;
   justify-content: center;
   font-weight: 700;
   font-size: 14px;
   color: #fff;
   flex-shrink: 0;
   font-family: var(--font-body);
}

.meta-info {
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 0;
   flex-wrap: wrap;
}

.meta-by-label {
   font-size: 14px;
   color: var(--text-muted);
   font-family: var(--font-body);
   margin-right: 4px;
   font-style: italic;
}

.meta-author {
   font-size: 14px;
   font-weight: 700;
   color: var(--text-primary);
   font-family: var(--font-body);
   margin-right: 10px;
}

.meta-details {
   font-size: 13px;
   color: var(--text-muted);
   font-family: var(--font-body);
}

.meta-sep {
   color: var(--border);
}

/* Hero image */
.hero-image {
   width: 100%;
   aspect-ratio: 16/9;
   border-radius: 10px;
   overflow: hidden;
   margin-bottom: 36px;
   background: var(--surface);
   border: 1px solid var(--border);
}

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

/* Hero embed */
.hero-embed {
   margin-bottom: 44px;
}

.embed-label {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   color: var(--text-muted);
   margin-bottom: 12px;
   font-family: var(--font-body);
}

.video-embed {
   width: 100%;
   aspect-ratio: 16/9;
   border-radius: 10px;
   overflow: hidden;
   background: #1A181D;
   border: 1px solid var(--border);
   position: relative;
   cursor: pointer;
}

.video-embed iframe {
   width: 100%;
   height: 100%;
   border: none;
   display: block;
}

/* Custom YouTube facade */
.yt-facade {
   position: relative;
   width: 100%;
   aspect-ratio: 16/9;
   border-radius: 10px;
   overflow: hidden;
   background: #1A181D;
   border: 1px solid var(--border);
   cursor: pointer;
}

.yt-facade__thumb {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.3s ease;
}

.yt-facade:hover .yt-facade__thumb {
   transform: scale(1.02);
}

.yt-facade__play {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 72px;
   height: 72px;
   opacity: 0.75;
   transition: opacity 0.2s ease, transform 0.2s ease;
   pointer-events: none;
}

.yt-facade:hover .yt-facade__play {
   opacity: 1;
   transform: translate(-50%, -50%) scale(1.08);
}

.yt-facade.playing {
   aspect-ratio: 16/9;
   cursor: default;
}

.yt-facade.playing iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
}

.listen-row {
   display: flex;
   gap: 10px;
   margin-top: 14px;
   flex-wrap: wrap;
}

.listen-btn {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 8px 16px;
   border-radius: 6px;
   font-size: 13px;
   font-weight: 600;
   text-decoration: none;
   border: 1px solid var(--border);
   color: var(--text-secondary);
   background: var(--surface);
   font-family: var(--font-body);
   transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.listen-btn:hover {
   border-color: #1A181D;
   color: #1A181D;
   background: #f0f0f0;
}

.listen-btn svg {
   width: 15px;
   height: 15px;
   flex-shrink: 0;
}

/* Chapter nav */
.chapter-nav {
   background: var(--surface);
   border: 1px solid var(--border);
   border-left: 3px solid #1A181D;
   border-radius: 8px;
   padding: 22px 26px;
   margin-bottom: 40px;
}

.chapter-nav h4 {
   font-family: var(--font-body);
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   color: var(--text-muted);
   margin-bottom: 14px;
}

.chapter-nav ol {
   padding-left: 18px;
   color: var(--text-secondary);
   font-size: 15px;
   line-height: 1.7;
   font-family: var(--font-body);
}

.chapter-nav ol li {
   margin-bottom: 5px;
}

.chapter-nav ol li a {
   color: var(--text-secondary);
   text-decoration: none;
   transition: color 0.2s;
}

.chapter-nav ol li a:hover {
   color: #1A181D;
   text-decoration: underline;
}

/* Key Takeaways */
.key-takeaways {
   background: #f8f8f8;
   border: 1px solid var(--border);
   border-left: 3px solid #1A181D;
   border-radius: 8px;
   padding: 26px 30px;
   margin: 44px 0;
}

.key-takeaways h4 {
   font-family: var(--font-body);
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   color: var(--text-muted);
   margin-bottom: 16px;
}

.key-takeaways ol {
   padding-left: 20px;
   color: var(--text-secondary);
   font-size: 16px;
   line-height: 1.75;
   font-family: var(--font-body);
}

.key-takeaways ol li {
   margin-bottom: 10px;
}

.key-takeaways ol li strong {
   color: var(--text-primary);
}

/* Article body */
.article-body {
   color: var(--text-primary);
   font-size: clamp(15px, 1.6vw, 18px);
   line-height: 1.63;
   font-family: var(--font-body);
}

.article-body h2 {
   color: var(--text-primary);
   margin: 56px 0 18px;
}

.article-body h3 {
   color: var(--text-primary);
   margin: 36px 0 14px;
}

.article-body h4 {
   color: var(--text-primary);
   margin: 28px 0 12px;
}

.article-body h5 {
   color: var(--text-primary);
   margin: 24px 0 10px;
}

.article-body h6 {
   color: var(--text-primary);
   margin: 20px 0 8px;
}

.article-body p {
   margin-bottom: 22px;
   color: #333333;
}

.article-body strong {
   color: var(--text-primary);
   font-weight: 700;
}

.article-body blockquote {
   border-left: 3px solid #1A181D;
   padding: 18px 24px;
   margin: 36px 0;
   background: #f8f8f8;
   border-radius: 0 8px 8px 0;
   font-size: 20px;
   font-style: italic;
   color: var(--text-primary);
   line-height: 1.6;
   font-family: var(--font-body);
}

.article-body blockquote cite {
   display: block;
   margin-top: 12px;
   font-size: 13px;
   font-style: normal;
   color: var(--text-muted);
   font-weight: 600;
}

/* Show Notes */
/* Share Buttons */
.share-section {
   margin: 32px 0 8px;
}

.share-label {
   font-size: 13px;
   color: #888888;
   margin-bottom: 12px;
   font-family: var(--font-body);
}

.share-buttons {
   display: flex;
   flex-wrap: wrap;
   gap: 10px;
}

.share-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 20px;
   border-radius: 4px;
   font-size: 14px;
   font-weight: 600;
   font-family: var(--font-heading);
   color: #ffffff;
   text-decoration: none;
   transition: opacity 0.2s;
   letter-spacing: 0.02em;
}

.share-btn:hover {
   opacity: 0.85;
   color: #ffffff;
}

.share-btn--twitter {
   background: #000000;
}

.share-btn--facebook {
   background: #1877F2;
}

.share-btn--linkedin {
   background: #0A66C2;
}

.share-btn--bluesky {
   background: #0085FF;
}

.show-notes {
   font-family: var(--font-body);
}

.show-notes__heading {
   font-family: var(--font-heading);
   font-size: clamp(15px, 1.6vw, 18px);
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.12em;
   color: var(--text-muted);
   padding-top: 14px;
   margin-bottom: 24px;
}
.article-body .artical-wrapper{
   padding:  0 0 44px 0;
   border-bottom: 3px solid rgba(26, 24, 29, 0.85);
}

.show-notes__intro {
   margin-bottom: 28px;
   font-size: 15px;
   line-height: 1.7;
   color: var(--text-secondary);
}

.show-notes__intro p {
   margin: 0 0 14px;
}

.show-notes__intro p:last-child {
   margin-bottom: 0;
}

.show-notes__group {
   margin-bottom: 24px;
}

.show-notes__name {
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--text-primary);
   margin-bottom: 10px;
   font-family: var(--font-heading);
}

.show-notes__links {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.show-notes__links a {
   display: inline-flex;
   align-items: center;
   gap: 9px;
   color: var(--text-primary);
   text-decoration: none;
   font-size: 14px;
   font-weight: 500;
   transition: color 0.2s;
}

.show-notes__links a:hover {
   color: var(--accent-color);
}

.show-notes__icon {
   width: 16px;
   height: 16px;
   flex-shrink: 0;
   opacity: 0.75;
}

/* Divider */
.article-divider {
   border: none;
   border-top: 1px solid var(--border);
   margin: 52px 0;
}

/* Section kickers — magazine style */
article h2 {
   font-family: var(--font-heading);
   font-size: 22px;
   font-weight: 700;
   letter-spacing: -0.2px;
   text-transform: none;
   color: var(--text-primary);
   margin: 52px 0 14px;
   padding-top: 20px;
   border-top: 2px solid rgba(26, 24, 29, 0.85);
   line-height: 1.25;
   display: block;
}

article h3 {
   font-family: var(--font-body);
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   color: var(--accent);
   margin: 32px 0 10px;
   padding-top: 0;
   border-top: none;
   display: block;
}

/* ── SIDEBAR ── */
aside {
   position: sticky;
   top: 80px;
   padding-top: 40px;
   display: flex;
   flex-direction: column;
   gap: 22px;
}

.sidebar-card {
   background: var(--surface);
   border: 1px solid var(--border);
   border-radius: 10px;
   padding: 22px;
}

.sidebar-card h3 {
   font-family: var(--font-body);
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   color: var(--text-muted);
   margin-bottom: 12px;
}

.sidebar-about p {
   font-size: 14px;
   color: var(--text-secondary);
   line-height: 1.65;
   font-family: var(--font-body);
}

.sidebar-about a {
   color: var(--accent-color);
   text-decoration: none;
   font-weight: 600;
   font-size: 13px;
   display: inline-block;
   margin-top: 10px;
}

.sidebar-about a:hover {
   text-decoration: underline;
}

/* Newsletter */
.sidebar-newsletter {
   border-top: 3px solid rgba(26, 24, 29, 0.85);
}

.sidebar-newsletter h3 {
   color: #1A181D;
}

.sidebar-newsletter p {
   font-size: 14px;
   color: var(--text-secondary);
   margin-bottom: 14px;
   line-height: 1.55;
   font-family: var(--font-body);
}

.newsletter-form {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.newsletter-form input {
   background: #fff;
   border: 1px solid var(--border);
   border-radius: 6px;
   padding: 10px 14px;
   font-size: 14px;
   color: var(--text-primary);
   font-family: var(--font-body);
   outline: none;
   transition: border-color 0.2s;
}

.newsletter-form input::placeholder {
   color: var(--text-muted);
}

.newsletter-form input:focus {
   border-color: #1A181D;
}

.newsletter-form button {
   background: #1A181D;
   color: #fff;
   border: none;
   border-radius: 6px;
   padding: 11px 16px;
   font-size: 14px;
   font-weight: 700;
   cursor: pointer;
   font-family: var(--font-body);
   transition: opacity 0.2s;
}

.newsletter-form button:hover {
   opacity: 0.80;
}

/* ── EDITORIAL NEWS LIST CARDS ── */
.news-list {
   display: flex;
   flex-direction: column;
   gap: 0;
}

.news-item {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   padding: 16px 0;
   border-bottom: 1px solid var(--border);
   text-decoration: none;
   color: inherit;
   transition: opacity 0.18s;
   min-width: 0;
}

.news-item:first-child {
   padding-top: 0;
}

.news-item:last-child {
   border-bottom: none;
   padding-bottom: 0;
}

.news-item:hover {
   opacity: 0.82;
}

.news-item__thumb {
   width: 120px;
   height: 68px;
   min-width: 120px;
   max-width: 120px;
   border-radius: 5px;
   object-fit: cover;
   object-position: center;
   flex-shrink: 0;
   background: var(--surface-2);
   display: block;
}

.news-item__body {
   flex: 1;
   min-width: 0;
   display: flex;
   flex-direction: column;
   gap: 4px;
}

.news-item__category {
   font-size: 11px;
   font-style: italic;
   font-family: var(--font-body);
   line-height: 1;
}

.news-item__category span {
   font-style: normal;
   font-weight: 600;
}

.news-item__title {
   font-family: var(--font-heading);
   font-size: 14px;
   font-weight: 700;
   line-height: 1.3;
   color: var(--text-primary);
}

.news-item__meta {
   font-size: 12px;
   color: var(--text-muted);
   font-family: var(--font-body);
   margin-top: 2px;
}

.news-item__meta .meta-by {
   font-style: italic;
}

.news-item__meta .meta-author {
   font-weight: 500;
   color: var(--text-muted);
}

.news-item__meta .meta-dot {
   margin: 0 4px;
   color: var(--border);
}
.cat-game-development {
   color: #0D7377;
}
.cat-recruitment-hr,.cat-game-careers {
   color: #E07B39;
}
.cat-gaming-investment,.cat-leadership {
   color: #2B4EAF;
}
.cat-personal-branding {
   color: #5E17EB;
}


.cat-events {
   color: #0057ff;
}

.cat-resource {
   color: #5E17EB;
}

.cat-newsletter {
   color: #E07B39;
}


/* game development — --cat-dev */

/* Related episodes — reuse news-item style, no separate rules needed */

/* ── SIDEBAR SECTION HEADING ── */
.sidebar-section-title {
   font-family: var(--font-heading);
   font-size: 20px;
   font-weight: 700;
   color: var(--text-primary);
   margin-bottom: 20px;
   line-height: 1.1;
}

/* ── FULL-WIDTH NEWSLETTER SECTION ── */
.newsletter-section {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 0 24px 64px;
}

.newsletter-full {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   text-decoration: none;
   background: #1A181D;
   border-radius: 16px;
   padding: 72px 48px;
   gap: 20px;
}

.newsletter-full__eyebrow {
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.14em;
   color: rgba(245, 166, 35, 0.85);
   font-family: var(--font-body);
}

.newsletter-full__title {
   font-family: var(--font-heading);
   font-size: clamp(28px, 4vw, 44px);
   font-weight: 800;
   color: #ffffff;
   line-height: 1.1;
   max-width: 640px;
}

.newsletter-full__body {
   font-size: 16px;
   line-height: 1.65;
   color: rgba(255, 255, 255, 0.55);
   font-family: var(--font-body);
   max-width: 480px;
}

.newsletter-full__cta {
   display: inline-block;
   margin-top: 8px;
   padding: 14px 36px;
   background: #ffffff;
   color: #1A181D;
   font-family: var(--font-heading);
   font-size: 15px;
   font-weight: 700;
   border-radius: 6px;
   letter-spacing: 0.03em;
   transition: background 0.2s, color 0.2s;
}

.newsletter-full:hover .newsletter-full__cta {
   background: #FFBD59;
   color: #1A181D;
}

/* ── FULL-WIDTH PROMO SECTIONS ── */
.promo-sections {
   max-width: var(--max-w);
   margin: 0 auto;
   padding: 48px 24px 64px;
}

.promo-full {
   display: flex;
   flex-direction: column;
   text-decoration: none;
   border-radius: 12px;
   overflow: hidden;
   transition: transform 0.18s ease, box-shadow 0.18s ease;
   min-height: 260px;
   width: 100%;
}

.promo-full:hover {
   transform: translateY(-3px);
   box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}

.promo-full__inner {
   padding: 28px 30px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1;
}

.promo-full__eyebrow {
   font-size: 10px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 1px;
   font-family: var(--font-body);
}

.promo-full__title {
   font-family: var(--font-heading);
   font-size: 24px;
   font-weight: 500;
   line-height: 1.2;
}

.promo-full__body {
   font-size: 14px;
   line-height: 1.65;
   font-family: var(--font-body);
   flex: 1;
}

.promo-full__cta {
   font-size: 13px;
   font-weight: 700;
   font-family: var(--font-body);
   margin-top: 6px;
}

/* Newsletter — brand black */
.promo-full--newsletter {
   background: #1A181D;
}

.promo-full--newsletter .promo-full__eyebrow {
   color: rgba(245, 166, 35, 0.8);
}

.promo-full--newsletter .promo-full__title {
   color: #ffffff;
}

.promo-full--newsletter .promo-full__body {
   color: rgba(255, 255, 255, 0.7);
}

.promo-full--newsletter .promo-full__cta {
   color: #f5a623;
}

.promo-full--newsletter:hover {
   box-shadow: 0 10px 32px rgba(26, 24, 29, 0.3);
}

/* Hivemind.world — deep navy with banner image */
.promo-full--hivemind {
   background: #0d0d3b url('images/hivemind-events-banner.jpg') center/cover no-repeat;
   position: relative;
}

.promo-full--hivemind::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(10, 10, 60, 0.88) 0%, rgba(10, 10, 60, 0.65) 100%);
   border-radius: 12px;
}

.promo-full--hivemind .promo-full__inner {
   position: relative;
   z-index: 1;
}

.promo-full--hivemind .promo-full__eyebrow {
   color: rgba(100, 200, 255, 0.85);
}

.promo-full--hivemind .promo-full__title {
   color: #ffffff;
}

.promo-full--hivemind .promo-full__body {
   color: rgba(255, 255, 255, 0.75);
}

.promo-full--hivemind .promo-full__cta {
   color: #64c8ff;
}

.promo-full--hivemind:hover {
   box-shadow: 0 10px 32px rgba(0, 0, 80, 0.35);
}

/* LinkedIn Resource — light */
.promo-full--resource {
   background: #f5f5f5;
   border: 1px solid var(--border);
   border-left: 4px solid #1A181D;
}

.promo-full--resource .promo-full__eyebrow {
   color: var(--text-muted);
}

.promo-full--resource .promo-full__title {
   color: var(--text-primary);
}

.promo-full--resource .promo-full__body {
   color: var(--text-secondary);
}

.promo-full--resource .promo-full__cta {
   color: #1A181D;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
   .page-wrapper {
      grid-template-columns: 1fr;
   }

   aside {
      position: static;
      padding-top: 0;
   }

   .nav-left {
      display: none;
   }

   .nav-hamburger {
      display: flex;
   }

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

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

@media (max-width: 600px) {
   .page-wrapper {
      padding: 0 16px 60px;
   }

   .breadcrumb {
      padding: 16px 16px 0;
   }

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

   article {
      padding-top: 30px;
   }

   .article-meta {
      margin-bottom: 26px;
   }
}

  /* ── 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: #FFBD59; }

  .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;
  }

  /* Column 1 — Brand */
  .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: #FFBD59; }
  .footer-listen svg {
    flex-shrink: 0;
    opacity: 0.8;
  }

  /* Column 2 — Explore */
  .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: #FFBD59; }

  /* Column 3 — Ecosystem */
  .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;
  }
  .ecosystem-item a:hover .ecosystem-item__name { color: #FFBD59; }

  /* Column 4 — Connect */
  .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: #FFBD59; }
  .footer-social svg { flex-shrink: 0; opacity: 0.8; }

  /* Newsletter strip */
  .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: #FFBD59;
    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;
    align-self: center;
    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;
    text-decoration: none !important;
    letter-spacing: 0.03em;
    transition: background 0.2s;
  }
  .footer-newsletter__btn:hover {
    background: #FFBD59 !important;
    color: #1A181D !important;
  }
  @media (max-width: 600px) {
    .footer-newsletter { padding: 25px 0; }
    .footer-newsletter__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
    }
    .footer-newsletter__text {
      text-align: center;
      width: 100%;
    }
    .footer-newsletter__label { text-align: center; }
    .footer-newsletter__title { text-align: center; }
    .footer-newsletter__btn {
      width: auto;
      min-width: 160px;
      align-self: center;
      text-align: center;
      padding: 14px 32px;
      display: block;
      margin: 0 auto;
    }
  }

  /* Bottom bar */
  .footer-bottom {
    margin-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0;
    width: 100%;
  }
  .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: #FFBD59; }
  .footer-bottom__eco {
    font-size: 12px;
    color: #555555;
  }
  .footer-bottom__eco a { color: #555555; }
  .footer-bottom__eco a:hover { color: #FFBD59; }

  /* Responsive footer */
  @media (max-width: 960px) {
    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }
  @media (max-width: 600px) {
    .footer-inner {
      grid-template-columns: 1fr;
      gap: 28px;
      padding: 28px 24px 0;
      text-align: center;
    }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
    .footer-brand__logo { display: block; margin: 0 auto 16px; }
    .footer-brand__tagline { text-align: center; max-width: 100%; }
    .footer-col__heading { text-align: center; }
    .footer-listen { align-items: center; }
    .footer-listen a { justify-content: center; }
    .footer-nav { align-items: center; }
    .footer-nav a { text-align: center; }
    .footer-social { align-items: center; }
    .footer-social a { justify-content: center; }
    .ecosystem-list { align-items: center; }
    .ecosystem-item { justify-content: center; }
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-bottom__inner {
      flex-direction: column;
      align-items: center;
      gap: 6px;
      text-align: center;
    }
  }
