/* ============================================================
   Design tokens
   ============================================================ */
:root {
  --accent: #19979f;
  --accent-deep: #0f747b;
  --accent-soft: #e8f8f8;
  --accent-line: #cde9ea;
  --bg: #f7fbfb;
  --bg-strong: #f0f8f8;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --text: #173537;
  --muted: #637f81;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 72px rgba(25, 151, 159, 0.09);
  --shadow-soft: 0 16px 34px rgba(25, 151, 159, 0.08);
}

/* ============================================================
   Reset & base
   ============================================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(25, 151, 159, 0.12), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(25, 151, 159, 0.12), transparent 22%),
    linear-gradient(180deg, #fbfefe 0%, #f4fbfb 48%, #eef8f8 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(25, 151, 159, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 151, 159, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 95%);
}

/* Global link reset — no underlines anywhere */
a {
  color: inherit;
  text-decoration: none;
  border-bottom: none;
}

/* ============================================================
   Ambient blobs
   ============================================================ */
.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(88px);
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
}

.ambient-a {
  left: -10rem;
  top: 6rem;
  background: rgba(25, 151, 159, 0.14);
}

.ambient-b {
  right: -12rem;
  top: 28rem;
  background: rgba(25, 151, 159, 0.12);
}

/* ============================================================
   Shell
   ============================================================ */
.page-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

/* ============================================================
   Surface (glass card base)
   ============================================================ */
.surface {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 253, 253, 0.9));
  border: 1px solid var(--accent-line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}

/* ============================================================
   Header (sticky pill)
   ============================================================ */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  margin-bottom: 32px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--accent-line);
  box-shadow: 0 10px 28px rgba(25, 151, 159, 0.06);
  position: sticky;
  top: 18px;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.brand {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  color: var(--text);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: 40px;
}

.eyebrow,
.section-kicker,
.entry-tag,
.feature-tag,
.find-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.lead {
  margin: 22px 0 0;
  font-size: 1.04rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 42rem;
}

.lead a {
  color: var(--accent-deep);
  font-weight: 700;
  transition: opacity 180ms ease;
}

.lead a:hover {
  opacity: 0.7;
}

.hero-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}

.hero-note p {
  margin: 0;
  line-height: 1.8;
  color: #345759;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
}

.stats-strip div {
  padding: 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(240, 248, 248, 0.74);
  border: 1px solid var(--accent-line);
}

.stats-strip dt {
  margin: 0 0 8px;
  font-size: 0.82rem;
  color: var(--muted);
}

.stats-strip dd {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* Hero photo */
.hero-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--accent-line);
  box-shadow: var(--shadow-soft);
  min-height: 100%;
}

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

/* ============================================================
   Buttons
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 26px rgba(25, 151, 159, 0.2);
}

.button-primary:hover {
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 1px solid var(--accent-line);
}

.button-secondary:hover {
  background: var(--accent-soft);
}

/* Mobile-only hero buttons (播客 + 即刻) — hidden on desktop */
.hero-action-mobile {
  display: none;
}

/* ============================================================
   Entry cards (quick links)
   ============================================================ */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.entry-card {
  border-radius: var(--radius-xl);
  padding: 24px;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.entry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.entry-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.entry-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   Section shared
   ============================================================ */
.section {
  margin-top: 56px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

/* ============================================================
   About — left photo, right keyword grid
   ============================================================ */


.keyword-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.keyword-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.keyword-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.keyword-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

/* ============================================================
   Podcast
   ============================================================ */

/* Duo — two side-by-side podcast cards */
.podcast-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.podcast-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.podcast-card-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.podcast-logo {
  width: 110px;
  height: 110px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-card-body {
  flex: 1;
  min-width: 0;
}

.podcast-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
}

.podcast-tagline {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

.podcast-card-stats {
  display: flex;
  gap: 16px;
  margin: 0 0 14px;
}

.podcast-card-stats div {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.podcast-card-stats dt {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
}

.podcast-card-stats dd {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

/* Recommended episodes list */
.podcast-episodes {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-line);
}

.podcast-episodes h4 {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.podcast-episodes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.podcast-episodes li {
  padding: 6px 0;
}

.podcast-episodes li + li {
  border-top: 1px solid rgba(205, 233, 234, 0.5);
}

.podcast-episodes a {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  transition: color 180ms ease;
}

.podcast-episodes a:hover {
  color: var(--accent-deep);
}

/* ============================================================
   Guest grid
   ============================================================ */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.guest-card {
  border-radius: var(--radius-xl);
  padding: 24px;
  display: grid;
  gap: 8px;
  color: inherit;
  min-height: 120px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.guest-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.guest-card strong {
  font-size: 1rem;
}

.guest-card span {
  color: var(--muted);
  line-height: 1.75;
}

/* ============================================================
   Products
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.product-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-head span {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
}

.product-head .tag-archived {
  background: #f0f0f0;
  color: #888;
}

.product-head .tag-consult {
  background: #fff8e6;
  color: #b8860b;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.link-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.link-cluster a {
  color: var(--accent-deep);
  font-weight: 700;
  transition: opacity 180ms ease;
}

.link-cluster a:hover {
  opacity: 0.7;
}

/* ============================================================
   Collaboration
   ============================================================ */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collab-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.collab-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.collab-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.collab-brands {
  border-radius: var(--radius-xl);
  padding: 28px;
  margin-top: 18px;
  text-align: center;
}

.collab-brands h4 {
  margin: 0 0 10px;
  font-size: 0.92rem;
  color: var(--accent-deep);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.collab-brands p {
  margin: 0;
  color: var(--muted);
  line-height: 2;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.collab-cta {
  margin-top: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-xl);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  text-align: center;
}

.collab-cta p {
  margin: 0;
  line-height: 1.8;
  color: #345759;
}

/* ============================================================
   Portfolio
   ============================================================ */
.portfolio-group {
  margin-bottom: 32px;
}

.portfolio-group:last-child {
  margin-bottom: 0;
}

.portfolio-group-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.portfolio-group-header h3 {
  margin: 0;
  font-size: 1.3rem;
}

.portfolio-period {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.portfolio-group-desc {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

/* Portfolio cover wall */
.portfolio-cover-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.portfolio-cover-card {
  position: relative;
  min-height: 182px;
  padding: 18px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-cover-card::before {
  content: "";
  position: absolute;
  inset: auto -8% -34% 36%;
  height: 72%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(6px);
  z-index: -1;
}

.portfolio-cover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(10, 20, 24, 0.18));
  z-index: -1;
}

.portfolio-cover-tag {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.portfolio-cover-card h4,
.portfolio-cover-card p {
  position: relative;
  z-index: 1;
}

.portfolio-cover-card h4 {
  margin: 0;
  color: #ffffff;
  font-size: 1.18rem;
  line-height: 1.2;
}

.portfolio-cover-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.6;
}

.portfolio-cover-card--philosophy {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #2e46db 8%, #7344ee 52%, #ff8a00 100%);
}

.portfolio-cover-card--voice {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 232, 130, 0.32), transparent 18%),
    linear-gradient(135deg, #3668ff 0%, #8f5cff 46%, #ff7cc7 100%);
}

.portfolio-cover-card--reading {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 240, 214, 0.26), transparent 20%),
    linear-gradient(135deg, #9e4b28 0%, #c96836 52%, #e0a16e 100%);
}

.portfolio-cover-card--classics {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, #8090a5 0%, #b7c1d0 45%, #52627e 100%);
}

.portfolio-cover-card--data {
  background:
    radial-gradient(circle at 70% 32%, rgba(255, 238, 198, 0.28), transparent 18%),
    linear-gradient(135deg, #ff7600 0%, #ff9132 52%, #00d4d0 100%);
}

.portfolio-cover-card--drawing {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 244, 212, 0.24), transparent 18%),
    linear-gradient(135deg, #b35f27 0%, #d9a252 48%, #7a3a1f 100%);
}

.portfolio-cover-card--game {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, #121722 0%, #30394b 52%, #606a7d 100%);
}

.portfolio-cover-card--speaking {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, #2d2d35 0%, #565a67 48%, #ff96ab 100%);
}

/* Small button variant */
.button-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.portfolio-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.portfolio-card-img {
  display: block;
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
}

.portfolio-card h4 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.portfolio-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
  font-size: 0.95rem;
}

/* ============================================================
   Find me / Contact
   ============================================================ */
.find-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
  gap: 24px;
}

.find-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.find-card {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.find-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.find-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.find-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-deep);
  font-weight: 700;
  transition: opacity 180ms ease;
}

.find-card a:hover {
  opacity: 0.7;
}

.contact-card {
  border-radius: var(--radius-xl);
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.contact-copy {
  display: grid;
  gap: 12px;
}

.note-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

/* Social preferences */
.preference-section {
  margin-top: 24px;
}

.preference-card {
  border-radius: var(--radius-xl);
  padding: 28px 32px;
}

.preference-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  gap: 32px;
  align-items: center;
}

.preference-text {
  min-width: 0;
}

.preference-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.preference-card h4 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.preference-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  line-height: 2;
}

/* ============================================================
   Code inline
   ============================================================ */
code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(25, 151, 159, 0.1);
  color: var(--accent-deep);
  font-family: "SFMono-Regular", Consolas, Menlo, monospace;
  font-size: 0.92em;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  margin-top: 40px;
  padding: 0 6px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ============================================================
   Global image safety
   ============================================================ */
img {
  max-width: 100%;
  height: auto;
}

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

/* --- Tablet: 720 – 1100 --- */
@media (max-width: 1100px) {
  .entry-grid,
  .keyword-grid,
  .portfolio-items,
  .collab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-cover-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .hero,
  .find-layout,
  .product-grid,
  .guest-grid,
  .preference-body {
    grid-template-columns: 1fr;
  }

  .preference-photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-visual {
    max-height: 420px;
  }

  .podcast-duo {
    grid-template-columns: 1fr;
  }

  .find-cards {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    border-radius: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

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

/* --- Mobile: < 720 --- */
@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 12px;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .hero-copy,
  .keyword-card,
  .product-card,
  .portfolio-card,
  .guest-card,
  .find-card,
  .contact-card,
  .preference-card,
  .podcast-card,
  .collab-card,
  .collab-brands {
    padding: 20px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .lead {
    font-size: 0.96rem;
  }

  /* Hide entry cards on mobile, show inline buttons instead */
  .entry-grid {
    display: none;
  }

  .hero-action-mobile {
    display: inline-flex;
  }

  /* Single-column everywhere on mobile */
  .keyword-grid,
  .portfolio-items,
  .find-cards,
  .collab-grid,
  .guest-grid,
  .product-grid,
  .podcast-duo,
  .preference-body {
    grid-template-columns: 1fr;
  }

  .preference-photo {
    max-width: 280px;
    margin: 16px auto 0;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Hero photo height */
  .hero-visual {
    max-height: 340px;
  }

  /* Podcast card — stack logo + text on very narrow */
  .podcast-card-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .podcast-card-stats {
    justify-content: center;
  }

  .podcast-card .hero-actions {
    justify-content: center;
  }

  /* Nav stacks */
  .site-nav {
    gap: 12px 18px;
  }

  /* Portfolio images */
  .portfolio-card-img {
    max-height: 140px;
  }

  .portfolio-cover-grid {
    grid-template-columns: 1fr;
  }

  /* Section spacing */
  .section {
    margin-top: 40px;
  }
}

/* --- Very small: < 420 --- */
@media (max-width: 420px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .podcast-logo {
    width: 90px;
    height: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .entry-card,
  .guest-card {
    transition: none;
  }
}
