/* ===========================
   Falk AI – Webbplats
   Grafisk profil: Teal, navy, orange accent, cream bakgrund
   =========================== */

:root {
  --cream: #F5F5F0;
  --navy: #264653;
  --teal: #2A9D8F;
  --turquoise: #40E0D0;
  --orange: #FF8811;
  --text: #1a2e35;
  --text-muted: #5a7280;
  --border: #d8d8d2;
  --white: #ffffff;

  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --radius: 4px;
  --max-width: 1100px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   Navigation
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 245, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--navy) !important; }

/* ===========================
   Hero
   =========================== */

.hero {
  background: var(--navy);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  mix-blend-mode: luminosity;
  opacity: 0.9;
}

/* ===========================
   Buttons
   =========================== */

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: #e07a0f;
  transform: translateY(-1px);
}

.btn-primary.btn-large {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
}

.btn-secondary {
  display: inline-block;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--teal);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ===========================
   Credibility strip
   =========================== */

.credibility {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.cred-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

.cred-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  margin-bottom: 1.25rem;
}

.cred-items span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
}

.cred-awards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}

.award {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
}

/* ===========================
   Services
   =========================== */

.services {
  padding: 6rem 0;
  background: var(--white);
}

.services h2, .about h2, .books h2, .contact h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 0;
}

.service-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(42, 157, 143, 0.1);
}

.service-icon {
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   Prisinformation (utfällbar)
   =========================== */

.pricing-details {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
  max-width: 560px;
}

.pricing-details summary {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
}

.pricing-details summary::-webkit-details-marker { display: none; }

.pricing-details summary::before {
  content: '›';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s;
  display: inline-block;
}

.pricing-details[open] summary::before {
  transform: rotate(90deg);
}

.pricing-details summary:hover { color: var(--navy); }

.pricing-content {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}

.pricing-content ul {
  list-style: none;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pricing-content li {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* ===========================
   About
   =========================== */

.about {
  padding: 6rem 0;
  background: var(--cream);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 560px;
}

.about-text p:last-of-type { margin-bottom: 1.5rem; }

.about-facts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  min-width: 180px;
}

.fact {
  display: flex;
  flex-direction: column;
  border-left: 3px solid var(--teal);
  padding-left: 1rem;
}

.fact-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--navy);
  line-height: 1;
}

.fact-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ===========================
   Books
   =========================== */

.books {
  padding: 6rem 0;
  background: var(--white);
}

.section-sub {
  color: var(--text-muted);
  margin-top: -1.5rem;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.placeholder-cover {
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: center;
  padding: 1rem;
  line-height: 1.3;
}

img.book-cover {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(38, 70, 83, 0.15);
  transition: box-shadow 0.2s, transform 0.2s;
}

img.book-cover:hover {
  box-shadow: 0 8px 28px rgba(38, 70, 83, 0.22);
  transform: translateY(-2px);
}

.book-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
}

.book-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   Contact
   =========================== */

.contact {
  padding: 6rem 0;
  background: var(--navy);
}

.contact h2 { color: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.contact-text p {
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.contact-list li { margin-bottom: 0.4rem; }

.contact-list a {
  color: var(--turquoise);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.contact-list a:hover { color: var(--white); }

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
}

.social-links a:hover { color: var(--white); }

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

.cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

/* ===========================
   Footer
   =========================== */

.site-footer {
  background: #1a2e35;
  padding: 1.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.site-footer a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}

.site-footer a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===========================
   Om-sidan
   =========================== */

.about-intro {
  background: var(--navy);
  padding: 5rem 0;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: center;
}

.about-intro-text .hero-label {
  color: var(--turquoise);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about-intro-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-lead {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  max-width: 540px;
}

.about-intro-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-intro-links .btn-secondary {
  color: var(--turquoise);
  border-color: var(--turquoise);
}

.portrait-photo {
  width: 100%;
  border-radius: var(--radius);
  display: block;
}

.about-bio {
  padding: 5rem 0;
  background: var(--cream);
}

.about-bio-inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 4rem;
  align-items: start;
}

.bio-main h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.bio-main h2:first-child { margin-top: 0; }

.bio-main p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.presentation-text {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 0.5rem;
}

.presentation-text p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-family: var(--font-sans);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.copy-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.facts-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}

.facts-card h3 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

.facts-card h3:first-child { margin-top: 0; }

.facts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.facts-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text);
  align-items: baseline;
}

.fact-icon { font-style: normal; }

.facts-list a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.facts-list a:hover { color: var(--navy); }

.social-facts { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
.social-facts li { display: block; }

/* Timeline */

.timeline-section {
  padding: 5rem 0;
  background: var(--white);
}

.timeline-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  margin-left: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 0 0 2rem 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  padding-top: 2px;
  white-space: nowrap;
}

.timeline-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===========================
   Undersidor – sidtitel
   =========================== */

.page-header {
  background: var(--navy);
  padding: 5rem 0 4rem;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ===========================
   Undersidor – innehåll
   =========================== */

.page-content {
  padding: 5rem 0;
  background: var(--cream);
}

.page-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 700px;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section:last-child {
  margin-bottom: 0;
}

/* Verktygslista */

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 0.5rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
  border-color: var(--teal);
  box-shadow: 0 2px 12px rgba(42, 157, 143, 0.1);
}

.tool-card a {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.95rem;
}

.tool-card a:hover { color: var(--navy); }

.tool-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
  margin-bottom: 0;
}

/* Länklista */

.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.link-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.link-list a {
  color: var(--teal);
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.link-list a:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.link-list .link-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Podcast-lista */

.podcast-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.podcast-list li strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
}

.podcast-list li span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Info-box */

.info-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.info-box p {
  margin-bottom: 0;
}

/* Asterisk-förklaring */

.footnote {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
  }

  .about-facts {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-intro-inner,
  .about-bio-inner {
    grid-template-columns: 1fr;
  }

  .about-intro-photo { order: -1; }

  .photo-placeholder {
    aspect-ratio: 3/2;
    max-width: 320px;
  }

  .facts-card { position: static; }

  .timeline-item {
    grid-template-columns: 90px 1fr;
    gap: 1rem;
  }
}

/* ===========================
   Media page
   =========================== */

.page-hero {
  background: var(--navy);
  padding: 4rem 0 3rem;
}

.page-hero--image {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.35;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Rich media cards */

.media-item.media-item--rich {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  align-items: center;
}

.media-body {
  padding: 1rem 1.25rem;
}

.media-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  aspect-ratio: 16/9;
}

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

.play-badge {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.2s;
}

.media-item:hover .play-badge { opacity: 1; }

.media-thumb--podd  { background: linear-gradient(135deg, #2A9D8F, #264653); }
.media-thumb--tv    { background: linear-gradient(135deg, #264653, #1a2e35); }
.media-thumb--debatt { background: linear-gradient(135deg, #FF8811, #e07a0f); }
.media-thumb--pris  { background: linear-gradient(135deg, #c8a800, #a07800); }

.media-thumb span {
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-thumb--pris span { font-size: 2rem; }

@media (max-width: 600px) {
  .media-item--rich {
    grid-template-columns: 1fr;
  }
  .media-thumb {
    aspect-ratio: 16/5;
  }
  .media-body {
    padding: 1rem;
  }
}

.media-section {
  padding: 4rem 0 6rem;
  background: var(--cream);
}

.media-section h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  margin-top: 3rem;
  letter-spacing: -0.02em;
}

.media-section h2:first-child { margin-top: 0; }

.media-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.media-item {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.media-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(42, 157, 143, 0.1);
}

.media-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.media-type {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(42, 157, 143, 0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.media-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  align-self: center;
}

.media-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.media-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.media-archive {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.media-archive summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.media-archive summary::-webkit-details-marker { display: none; }

.media-archive summary::before {
  content: '▶';
  font-size: 0.65rem;
  color: var(--teal);
  transition: transform 0.2s;
}

.media-archive[open] summary::before {
  transform: rotate(90deg);
}

.media-archive summary:hover { background: var(--cream); }

.archive-year {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.archive-year h3 {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.archive-year ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.archive-year li {
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}

.archive-year a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.archive-year a:hover { color: var(--navy); }

.media-type-small {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  margin-right: 0.4rem;
  vertical-align: middle;
}
