/* WorkSans-Regular */
@font-face {
  font-display: swap;
  font-family: "Work Sans";
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/WorkSans-Regular.woff2") format("woff2");
}
/* WorkSans-Italic */
@font-face {
  font-display: swap;
  font-family: "Work Sans";
  font-weight: normal;
  font-style: italic;
  src: url("../fonts/WorkSans-Italic.woff2") format("woff2");
}
:root {
  --color-bg: hsl(0, 0%, 100%);
  --color-text: hsl(0, 0%, 0%);
  --color-accent: hsl(0, 0%, 32.2%);
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
}

h1 {
  font-size: 3rem;
  font-size: clamp(3rem, 2.5454545455rem + 1.9393939394vw, 4rem);
}

h2 {
  font-size: 2.25rem;
  font-size: clamp(2.25rem, 1.9090909091rem + 1.4545454545vw, 3rem);
}

h3 {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.1590909091rem + 1.4545454545vw, 2.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

p {
  line-height: 1.5;
  max-width: 60ch;
}

.wrapper {
  width: min(100% - 40px, 77.5rem);
  margin-inline: auto;
  padding-block: 30px;
}
@media (width >= 75em) {
  .wrapper {
    padding-block: 60px;
  }
}

.section-grid {
  display: grid;
  gap: 30px;
}
@media (width >= 75em) {
  .section-grid {
    gap: 40px;
  }
}

.button {
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 60px;
  padding: 12px 24px;
  transition: 150ms ease-in-out;
  transition-property: background, border, color;
  background: green;
  color: red;
}
.button:hover {
  background: var(--color-text);
  border-color: var(--color-text);
}
@media (width >= 75em) {
  .button {
    font-size: 1rem;
  }
}
.button.secondary {
  color: var(--color-accent);
}
.button.secondary:hover {
  color: var(--color-text);
  border-color: var(--color-text);
}

.site-header {
  border-bottom: 1px solid;
  padding: 2rem 0;
}
.site-header .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Masthead */
.masthead {
  text-align: center;
  margin-bottom: 2rem;
}
.masthead__tagline {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  text-transform: uppercase;
}
.masthead__title {
  font-family: sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.masthead__meta {
  font-size: 0.875rem;
  color: var(--color-accent);
}
.masthead a {
  text-decoration: none;
  color: inherit;
}

/* Responsive typography */
@media (min-width: 768px) {
  .masthead__title {
    font-size: 4.5rem;
  }
}
/* Navigation */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-nav a:hover {
  color: var(--color-accent);
}

.podcast-section {
  border-bottom: 1px solid #e5e5e5;
  background-color: #fafafa;
  padding: 3rem 0;
}
.podcast-section .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.section-header__bar {
  width: 0.25rem;
  height: 1.5rem;
  background-color: #171717;
}
.section-header__title {
  font-family: sans-serif;
  font-size: 1.5rem;
}

/* Grid Layout */
.podcast-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .podcast-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Media Block */
.podcast-media {
  position: relative;
  aspect-ratio: 16/9;
  background-color: black;
  overflow: hidden;
  border-radius: 2px;
}
.podcast-media__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  font-size: 0.875rem;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
@media (min-width: 768px) {
  .podcast-media {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: 100%;
    height: auto;
  }
}

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

/* Play Button */
.play-button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.play-button:hover {
  background-color: white;
}
.play-button__icon {
  width: 0;
  height: 0;
  margin-left: 0.25rem;
  border-left: 1rem solid #171717;
  border-top: 0.625rem solid transparent;
  border-bottom: 0.625rem solid transparent;
}

/* Episode Info */
.podcast-info__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #525252;
  margin-bottom: 0.5rem;
}
.podcast-info__title {
  font-family: sans-serif;
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.podcast-info__description {
  color: #525252;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.podcast-info__actions {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  font-size: 0.875rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn--primary {
  background-color: #171717;
  color: white;
  border: none;
}
.btn--primary:hover {
  background-color: #404040;
}
.btn--outline {
  background: transparent;
  border: 1px solid #171717;
}
.btn--outline:hover {
  background-color: #fafafa;
}

.beats-section {
  padding: 3rem 0;
}
.beats-section .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Grid */
.beats-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .beats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Beat Block */
.beat-block {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2rem;
}

/* Header */
.beat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.beat-header__bar {
  width: 0.25rem;
  height: 1.5rem;
  background-color: #171717;
}
.beat-header__title {
  font-family: sans-serif;
  font-size: 1.5rem;
}

/* Media */
.beat-media {
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: #f5f5f5;
  margin-bottom: 1.5rem;
}
.beat-media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.beat-media:hover img {
  transform: scale(1.05);
}

/* Stories List */
.beat-stories {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Individual Story */
.beat-story {
  cursor: pointer;
}
.beat-story:hover .beat-story__title {
  color: #525252;
}
.beat-story__title {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
}
.beat-story__excerpt {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.beat-story__meta {
  font-size: 0.75rem;
  color: #737373;
}

/* View All Link */
.beat-link {
  margin-top: 1.5rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease;
}
.beat-link:hover {
  color: #525252;
}

.featured-stories {
  padding: 3rem 0;
  border-bottom: 1px solid #e5e5e5;
}
.featured-stories .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.section-header__bar {
  width: 0.25rem;
  height: 1.5rem;
  background-color: #171717;
}
.section-header__title {
  font-family: sans-serif;
  font-size: 1.5rem;
}

/* Grid */
.stories-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Story Card */
.story-card {
  cursor: pointer;
}
.story-card:hover .story-card__media img {
  transform: scale(1.05);
}
.story-card:hover .story-card__title {
  color: #525252;
}

/* Media */
.story-card__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #f5f5f5;
}
.story-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

/* Text Elements */
.story-card__category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #525252;
  margin-bottom: 0.5rem;
}

.story-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.story-card__excerpt {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.story-card__meta {
  font-size: 0.75rem;
  color: #737373;
}

.site-footer {
  background-color: #fafafa;
  border-top: 1px solid #171717;
  padding: 3rem 0;
}
.site-footer .container {
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Upper Footer */
.footer-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-social .social-links {
  display: flex;
  justify-content: left;
  gap: 0.75rem;
}
.footer-social .social-links a {
  color: #525252;
  transition: color 0.2s ease;
}
.footer-social .social-links a:hover {
  color: #171717;
}
.footer-social .social-links a svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: none !important;
  stroke: currentColor;
}

/* Brand */
.footer-brand__title {
  font-family: sans-serif;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer-brand__description {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.6;
}

/* Navigation */
.footer-nav__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav ul li {
  margin-bottom: 0.5rem;
}
.footer-nav ul a {
  font-size: 0.875rem;
  color: #525252;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav ul a:hover {
  color: #171717;
}

/* Support */
.footer-support__title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.footer-support__description {
  font-size: 0.875rem;
  color: #525252;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.footer-support .newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
}
.footer-support .newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d4d4d4;
}
.footer-support .newsletter-form input:focus {
  outline: none;
  border-color: #171717;
}
.footer-support .newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: #171717;
  color: #fff;
}
.footer-support .newsletter-form button:hover {
  background: #404040;
}

/* Buttons */
.btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}
.btn--primary {
  background-color: #171717;
  color: white;
}
.btn--primary:hover {
  background-color: #404040;
}

/* Lower Footer */
.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #525252;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  color: #525252;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-legal a:hover {
  color: #171717;
}

/* Containers */
.container {
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container.narrow {
  max-width: 64rem;
}
.container.wide {
  max-width: 80rem;
}
.container.prose {
  max-width: 48rem;
}

/* Base Article */
.article {
  min-height: 100vh;
  background: #fff;
}

/* Back link */
.article-back {
  border-bottom: 1px solid #e5e5e5;
}
.article-back .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  padding: 1rem 0;
  color: #171717;
}
.article-back .back-link:hover {
  color: #737373;
}

/* Header */
.article-header {
  padding: 3rem 0;
}
.article-header .article-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #737373;
  margin-bottom: 1rem;
}
.article-header .article-title {
  font-family: serif;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.article-header .article-subtitle {
  font-size: 1.25rem;
  color: #525252;
  margin-bottom: 2rem;
}

/* Meta */
.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
}
.article-meta .author {
  display: flex;
  gap: 1rem;
}
.article-meta .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-meta .meta-details {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #737373;
  align-items: center;
}
.article-meta .article-actions {
  display: flex;
  gap: 0.75rem;
}
.article-meta .article-actions button {
  height: 37px;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
}
.article-meta .article-actions button:hover {
  background: #f5f5f5;
}

/* Featured Image */
.article-image img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  padding-bottom: 3rem;
}

/* Prose */
.article-content {
  padding-bottom: 3rem;
  line-height: 1.75;
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 1rem;
  padding: 3rem 0;
  border-top: 1px solid #e5e5e5;
}
.author-bio img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

/* Related */
.related {
  padding-bottom: 4rem;
}
.related h3 {
  padding-bottom: 1rem;
}
.related .related-item {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 1rem;
}
.related .related-item a {
  color: #171717;
  text-decoration: none;
}
.related .related-item a:hover {
  color: #737373;
}

/* Lucide icons */
.lucide {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* Layout */
.container {
  margin: 0 auto;
}
.container.narrow {
  max-width: 64rem;
}
.container.prose {
  max-width: 48rem;
}

.about-page {
  min-height: 100vh;
  background: #fff;
}

/* Hero */
.about-hero {
  border-bottom: 1px solid #171717;
  padding: 4rem 0;
  text-align: center;
}
.about-hero h1 {
  font-family: sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
}
.about-hero p {
  font-size: 1.25rem;
  color: #525252;
  max-width: 40rem;
  margin: 0 auto;
}

/* Sections */
section {
  padding: 4rem 0;
}

.about-mission,
.about-values,
.about-team,
.about-support,
.about-contact {
  border-top: 1px solid #e5e5e5;
}

/* Typography */
h2 {
  font-family: sans-serif;
  font-size: 1.875rem;
}

h3 {
  font-family: sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

p {
  color: #404040;
  line-height: 1.75;
}

/* Values Grid */
.values-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Team */
.team-member {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 2rem;
}
.team-member:last-child {
  border-bottom: none;
}
.team-member .avatar {
  width: 80px;
  height: 80px;
  background: #e5e5e5;
  border-radius: 50%;
  flex-shrink: 0;
}
.team-member .role {
  font-size: 0.875rem;
  color: #737373;
  margin-bottom: 0.5rem;
}

/* Buttons */
.button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-size: 0.875rem;
  transition: 0.2s;
}
.btn.primary {
  background: #171717;
  color: #fff;
}
.btn.primary:hover {
  background: #404040;
}
.btn.secondary {
  border: 1px solid #171717;
}
.btn.secondary:hover {
  background: #f5f5f5;
}

/* Contact */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-item a:hover {
  color: #737373;
}

.social {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.social a {
  padding: 0.5rem;
  border-radius: 4px;
}
.social a:hover {
  background: #f5f5f5;
}

/* Newsletter */
.about-newsletter {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  text-align: center;
}
.about-newsletter .newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 400px;
  margin: 0 auto;
}
.about-newsletter .newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d4d4d4;
}
.about-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: #171717;
}
.about-newsletter .newsletter-form button {
  padding: 0.75rem 1.5rem;
  background: #171717;
  color: #fff;
}
.about-newsletter .newsletter-form button:hover {
  background: #404040;
}

/* Lucide fix (important) */
.lucide {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}/*# sourceMappingURL=style.css.map */