/* SMSLab — podcasts page */

.podcasts-page {
  background: #fff;
  color: #10142a;
}

.podcasts-page .wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.podcasts-hero {
  padding: 28px 0 40px;
  background:
    radial-gradient(700px 280px at 100% 0%, rgba(73, 84, 230, 0.08), transparent 60%),
    #f6f7fb;
  border-bottom: 1px solid rgba(24, 31, 71, 0.08);
}

.podcasts-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 13px;
  color: #8b92a8;
}

.podcasts-breadcrumbs a {
  color: #5a6178;
  text-decoration: none;
}

.podcasts-breadcrumbs a:hover {
  color: #4954e6;
}

.podcasts-kicker {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4954e6;
  margin: 0 0 10px;
}

.podcasts-hero h1 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
}

.podcasts-hero .lede {
  font-size: 16px;
  line-height: 1.65;
  color: #5a6178;
  margin: 0 0 20px;
  max-width: 46em;
}

.podcasts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.podcasts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
}

.podcasts-btn-primary {
  background: linear-gradient(135deg, #4954e6, #8a5cf6);
  color: #fff;
  box-shadow: 0 6px 20px rgba(73, 84, 230, 0.28);
}

.podcasts-btn-ghost {
  background: #fff;
  border-color: rgba(24, 31, 71, 0.14);
  color: #10142a;
}

.podcasts-section {
  padding: 48px 0 64px;
}

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

.podcast-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(24, 31, 71, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(24, 31, 71, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.podcast-card:hover {
  transform: translateY(-2px);
  border-color: rgba(73, 84, 230, 0.22);
  box-shadow: 0 14px 32px rgba(24, 31, 71, 0.1);
}

.podcast-cover-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #eef0f8;
}

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

.podcast-duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(16, 20, 42, 0.78);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.podcast-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.podcast-body h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
  margin: 0;
  color: #10142a;
}

.podcast-show {
  font-size: 12px;
  color: #4954e6;
  font-weight: 600;
}

@media (max-width: 900px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .podcasts-page .wrap {
    padding: 0 16px;
  }

  .podcasts-grid {
    grid-template-columns: 1fr;
  }
}
