/* ============================================================
   THE EXPERT IMPACT — style.css
   ============================================================ */

/* --- Variables --- */
:root {
  --pink: #e91e63;
  --black: #000000;
  --white: #ffffff;
  --card-bg: #111111;
  --card-border: rgba(255, 255, 255, 0.08);
  --text-muted: rgba(255, 255, 255, 0.65);
  --btn-gradient: linear-gradient(135deg, #e91e63 0%, #7b1fa2 50%, #3949ab 100%);
  --font: 'Roboto', Arial, sans-serif;
  --max-width: 1100px;
  --nav-height: 70px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--btn-gradient);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}
.btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

/* --- Section base --- */
.section { padding: 80px 0; }

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

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

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--pink); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.75) 70%),
    linear-gradient(135deg, rgba(233, 30, 99, 0.35) 0%, rgba(123, 31, 162, 0.3) 45%, rgba(0, 0, 0, 0.55) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 820px;
  padding: var(--nav-height) 24px 0;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero-subline {
  display: inline-block;
  font-size: 0.7em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 8px;
}

/* ============================================================
   LEARN WITH MONIKA
   ============================================================ */
.learn-section { background: #000; }

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

.learn-image-link {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: transform 0.25s, border-color 0.25s;
}

.learn-image-link:hover {
  transform: translateY(-4px);
  border-color: rgba(233, 30, 99, 0.4);
}

.learn-image {
  width: 100%;
  height: auto;
  display: block;
}

.learn-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pink);
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.learn-text p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.learn-text .btn { margin-top: 12px; }

/* ============================================================
   MONIKA'S EXPERTISE
   ============================================================ */
.monika-expertise-section { background: #000; }

.monika-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 32px auto 36px;
  border: 3px solid var(--pink);
  box-shadow: 0 0 0 6px rgba(233, 30, 99, 0.1);
}

.monika-expertise-intro {
  max-width: 780px;
  margin: 0 auto;
}

.monika-expertise-intro > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.monika-expertise-intro > p.monika-expertise-lead {
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 36px;
  margin-bottom: 24px;
}

.framework-list {
  max-width: 1000px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.framework-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--pink);
  border-radius: 12px;
  padding: 26px 28px;
  transition: transform 0.25s, border-color 0.25s;
}

.framework-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  border-left-color: var(--pink);
}

.framework-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: var(--white);
}

.framework-name span {
  color: var(--pink);
}

.framework-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 0;
}

/* ============================================================
   WORK WITH ME
   ============================================================ */
.work-section { background: #000; }

.work-intro {
  max-width: 780px;
  margin: 0 auto 56px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.work-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.work-card-featured {
  max-width: 1000px;
  margin: 0 auto 20px;
  padding: 44px 44px 36px;
  background: linear-gradient(145deg, #131313 0%, #0a0a0a 100%);
  border: 1px solid rgba(233, 30, 99, 0.28);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(233, 30, 99, 0.08);
}

.work-card-featured:hover {
  border-color: rgba(233, 30, 99, 0.45);
}

.work-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--white);
}

.work-card-featured .work-card-title {
  font-size: 1.75rem;
}

.work-card-lead {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

.work-card-featured .work-card-lead {
  font-size: 1.12rem;
}

.work-card-desc {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.work-card-deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.work-card-deliverables li {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.6;
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
}

.work-card-deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.work-card-shape {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: auto;
  padding-top: 4px;
}

.work-cta {
  text-align: center;
  margin-top: 44px;
}

.work-proof {
  text-align: center;
  margin-top: 32px;
}

.work-proof-link {
  display: inline-block;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 0;
  transition: opacity 0.2s;
}

.work-proof-link:hover { opacity: 0.78; }

/* ============================================================
   YOUTUBE
   ============================================================ */
.youtube-section { background: #000; }

.yt-featured {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 32px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--card-border);
}

.yt-featured-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
}

.yt-featured-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.yt-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.yt-featured-btn:hover .yt-featured-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--pink);
}

.yt-featured-play i { margin-left: 4px; }

.yt-featured-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-strip {
  max-width: 1000px;
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  min-height: 1px;
}

.yt-card {
  display: block;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
}

.yt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.yt-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.yt-card .yt-title {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.yt-more {
  display: block;
  text-align: center;
  color: var(--pink);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.yt-more:hover { opacity: 0.8; }

.yt-more i {
  margin-left: 6px;
  font-size: 0.9em;
}

/* ============================================================
   SHARED — pill badge (used by case-studies and anywhere else)
   ============================================================ */
.pill-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--pink);
  border: 1px solid rgba(233, 30, 99, 0.3);
  background: rgba(233, 30, 99, 0.1);
  border-radius: 999px;
  margin-bottom: 18px;
}

/* ============================================================
   CASE STUDIES PAGE
   ============================================================ */
.case-hero {
  padding: calc(var(--nav-height) + 72px) 0 56px;
  text-align: center;
  background: #000;
}

.case-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  margin: 0 auto 18px;
}

.case-hero-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.case-study {
  background: #000;
  padding: 40px 0 96px;
}

.case-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.case-content > h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 48px;
}

.case-section { margin-bottom: 52px; }

.case-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.case-section > p {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.case-problems {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}

.case-problems li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.case-problems li i {
  color: #ef4444;
  font-size: 1.05rem;
  margin-top: 0.15em;
  flex-shrink: 0;
}

.case-build {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.case-build-card {
  border-left: 4px solid var(--pink);
  padding: 14px 0 14px 22px;
}

.case-build-card h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.case-build-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
}

.case-results-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 36px 32px;
}

.case-results-card h3 {
  text-align: left;
  margin-bottom: 28px;
}

.case-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.case-result {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.case-result-wide {
  grid-column: 1 / -1;
  justify-content: center;
}

.case-result-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(233, 30, 99, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 1rem;
}

.case-result-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-result-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

.case-cta {
  text-align: center;
  margin-top: 56px;
}

/* Divider between case studies (invisible with just one). */
.case-study-item + .case-study-item {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--card-border);
}

@media (max-width: 640px) {
  .case-results-grid { grid-template-columns: 1fr; }
  .case-result-wide { justify-content: flex-start; }
  .case-results-card { padding: 28px 22px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #080808;
  border-top: 1px solid var(--card-border);
  padding: 48px 0 32px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-social a {
  color: var(--text-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--white); }
.footer-social i { font-size: 1.1rem; }

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom > * { margin-bottom: 8px; }

.footer-privacy {
  display: inline-block;
  color: var(--text-muted);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-privacy:hover { color: var(--white); }

.footer-legal .footer-sep {
  color: var(--text-muted);
  margin: 0 6px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  margin-bottom: 0 !important;
}

/* ============================================================
   BLOG LISTING (blog/index.html)
   ============================================================ */
.blog-hero {
  padding: calc(var(--nav-height) + 64px) 0 56px;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
}

.blog-hero-intro {
  max-width: 680px;
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.blog-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 760px;
  margin: 24px auto 0;
}

.blog-topic {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
}

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

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pink);
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.28);
  border-radius: 999px;
  margin-bottom: 10px;
}

.blog-card-date {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.blog-card-link {
  color: var(--pink);
  font-size: 0.88rem;
  font-weight: 600;
}

.blog-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 80px 0;
  grid-column: 1 / -1;
}

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero {
  padding: calc(var(--nav-height) + 56px) 0 60px;
}

.post-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.post-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 10px 0 36px;
}

.post-featured-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 40px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-content h3 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
}

.post-content p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}

.post-content ul,
.post-content ol {
  color: var(--text-muted);
  padding-left: 24px;
  margin-bottom: 18px;
  line-height: 1.8;
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content a { color: var(--pink); text-decoration: underline; }

.post-content strong { color: var(--white); font-weight: 700; }

.post-content blockquote {
  border-left: 3px solid var(--pink);
  padding-left: 20px;
  color: var(--text-muted);
  font-style: italic;
  margin: 24px 0;
}

.post-cta {
  text-align: center;
  padding: 56px 0 16px;
}

/* --- Blog post author bio box --- */
.post-author-bio {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  margin: 64px 0 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--pink);
  border-radius: 14px;
}

.post-author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 99, 0.12);
}

.post-author-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
}

.post-author-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.post-author-social {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.post-author-social a {
  color: var(--text-muted);
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.post-author-social a:hover { color: var(--pink); }
.post-author-social i { font-size: 1rem; }

.post-author-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.post-author-cta .btn {
  padding: 12px 26px;
  font-size: 0.92rem;
}

/* Ghost button variant — outlined, used as the secondary CTA */
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--pink);
  color: var(--pink);
}

.btn-ghost:hover {
  background: rgba(233, 30, 99, 0.1);
  opacity: 1;
}

@media (max-width: 640px) {
  .post-author-bio {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 22px;
  }
  .post-author-avatar {
    margin: 0 auto;
  }
  .post-author-social,
  .post-author-cta {
    justify-content: center;
  }
}

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.policy-section {
  padding: calc(var(--nav-height) + 64px) 0 80px;
}

.policy-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--white);
}

.policy-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.policy-section ul li { margin-bottom: 6px; }

.policy-section a { color: var(--pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-grid { grid-template-columns: 1fr; gap: 32px; }
  .work-grid { grid-template-columns: 1fr; gap: 16px; }
  .work-card-featured { padding: 32px 28px 28px; }
  .yt-strip { grid-template-columns: repeat(2, 1fr); }
  .yt-featured-play { width: 68px; height: 68px; font-size: 22px; }
}

@media (max-width: 560px) {
  .yt-strip { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.97);
    padding: 8px 0;
    border-bottom: 1px solid var(--card-border);
  }

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

  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-toggle { display: flex; }

  /* Layout */
  .blog-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.75rem; }
  .footer-social { gap: 20px; }

}
