@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/BebasNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-ink: #0d0722;
  --color-muted: #3d3760;
  --color-orange: #ff6b35;
  --color-purple: #7c4dff;
  --color-soft: #eef3f5;
  --color-newsletter: #e1edf2;
  --container: 82.925vw;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --type-nav: 16px;
  --type-eyebrow: 11px;
  --type-hero: 70px;
  --type-section-title: 52px;
  --type-feature-title: 72px;
  --type-card-title: 26px;
  --type-body-lg: 17px;
  --type-body-sm: 14px;
  --type-link: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.header-inner {
  min-height: 97px;
  display: grid;
  grid-template-columns: 185px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand img {
  width: 171px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  padding-top: 2px;
}

.desktop-nav a,
.mobile-panel a {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--type-nav);
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.desktop-nav a.active,
.desktop-nav a:hover,
.mobile-panel a.active,
.mobile-panel a:hover {
  color: var(--color-orange);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 1px;
  right: -3px;
  bottom: -18px;
  height: 2px;
  background: var(--color-orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-actions a,
.header-actions button,
.mobile-socials a,
.footer-socials a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}

.header-actions a:hover,
.header-actions a:focus-visible,
.mobile-socials a:hover,
.mobile-socials a:focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
  outline: 0;
}

.header-actions .icon-btn {
  width: 20px;
  height: 20px;
}

.header-actions img,
.mobile-socials img,
.footer-socials img {
  object-fit: contain;
  transition: filter .2s ease, transform .2s ease;
}

.header-actions a:hover img,
.header-actions a:focus-visible img,
.mobile-socials a:hover img,
.mobile-socials a:focus-visible img,
.footer-socials a:hover img,
.footer-socials a:focus-visible img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(86%) saturate(2009%) hue-rotate(337deg) brightness(102%) contrast(101%);
  transform: scale(1.08);
}

.header-actions img[src$="social-1.svg"],
.mobile-socials img[src$="social-1.svg"],
.footer-socials img[src$="social-1.svg"] {
  width: 16.001px;
  height: 16.001px;
}

.header-actions img[src$="social-2.svg"],
.mobile-socials img[src$="social-2.svg"],
.footer-socials img[src$="social-2.svg"] {
  width: 8.738px;
  height: 17.581px;
}

.header-actions img[src$="social-3.svg"],
.mobile-socials img[src$="social-3.svg"],
.footer-socials img[src$="social-3.svg"] {
  width: 18px;
  height: 13.224px;
}

.header-actions img[src$="search.svg"],
.mobile-socials img[src$="search.svg"] {
  width: 14.327px;
  height: 14.327px;
}

.icon-btn,
.menu-toggle {
  border: 0;
  background: transparent;
  padding: 0;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 132px 24px 24px;
  background: rgba(13, 7, 34, .34);
}

.search-overlay.is-open {
  display: flex;
}

.search-box {
  width: 100%;
  max-width: 100%;
  max-width: 620px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(13, 7, 34, .18);
}

.search-box form {
  display: grid;
  grid-template-columns: 1fr 118px 44px;
  gap: 12px;
  align-items: center;
}

.search-box input {
  width: 100%;
  height: 54px;
  border: 1px solid rgba(13, 7, 34, .18);
  padding: 0 18px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  outline: 0;
}

.search-box input::placeholder {
  color: rgba(61, 55, 96, .5);
  opacity: 1;
}

.search-box button {
  height: 54px;
  border: 0;
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
}

.search-close {
  width: 44px;
  padding: 0;
  font-size: 26px;
  line-height: 26px;
  font-weight: 400;
}

body.search-open {
  overflow: hidden;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: transform .2s ease, opacity .2s ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-panel {
  display: none;
}

.hero-section {
  aspect-ratio: 1355 / 667;
  display: grid;
  grid-template-columns: 42.3% 57.7%;
  background: var(--color-soft);
}

.hero-content {
  padding: 70px 30px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.date-badge {
  min-width: 169px;
  height: 34px;
  padding: 0 17px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(13, 7, 34, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(13, 7, 34, .7);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.date-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
}

.hero-content h1 {
  margin: 18px 0 0;
  font-family: var(--font-body);
  font-size: var(--type-hero);
  line-height: 65px;
  font-weight: 400;
  letter-spacing: 2px;
}

.hero-content h1 span,
.section-heading h2 span,
.newsletter-inner h2 span,
.feature-copy h2 span {
  color: var(--color-orange);
}

.hero-content p {
  max-width: 509px;
  margin: 22px 0 34px;
  color: rgba(13, 7, 34, .55);
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 33px;
}

.text-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  height: 24px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-link);
  line-height: 23.8px;
  font-weight: 400;
  letter-spacing: 0;
  transition: color .2s ease, transform .2s ease;
}

.text-link img {
  width: 16px;
  height: 7px;
  flex: 0 0 16px;
  margin-top: 8px;
}

.text-link:hover {
  color: var(--color-orange);
  transform: translateX(2px);
}

.hero-media,
.hero-media img {
  min-width: 0;
  height: 100%;
}

.hero-media {
  margin: 0;
  background: #000;
}

.hero-media img {
  width: 100%;
  object-fit: cover;
}

.feature-banner {
  position: relative;
  aspect-ratio: 1355 / 602;
  margin-top: 40px;
  overflow: hidden;
  background: #070512;
}

.feature-image {
  position: absolute;
  inset: 0 auto 0 0;
  width: 69%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 7, 34, 0) 35%, rgba(13, 7, 34, .92) 58%, #0d0722 100%);
}

.feature-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 48%;
  margin-left: auto;
  padding: 109px 78px 70px 0;
  text-align: right;
  color: #fff;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-feature-title);
  line-height: 1.14;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature-copy p {
  margin: 28px 0 29px;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  letter-spacing: 0;
}

.text-link-light {
  color: #fff;
}

.articles-section {
  padding: 69px 0 82px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 541px;
  align-items: start;
  gap: 48px;
  margin-bottom: 47px;
}

.eyebrow {
  margin: 0 0 7px;
  color: var(--color-purple);
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-heading h2,
.newsletter-inner h2 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 68.4px;
  font-weight: 400;
  letter-spacing: 0;
}

.section-heading > p {
  margin: 9px 0 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  letter-spacing: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 48px;
}

.article-card img {
  width: 100%;
  /* aspect-ratio: 438 / 326; */
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}

.article-card:nth-child(1) > img {
  object-position: 84% center;
}

.article-card:nth-child(2) > img {
  object-position: 50% 85%;
}

.article-card:nth-child(8) > img {
  object-position: 50% 92%;
}

.article-card:nth-child(11) > img {
  object-position: 100% 50%;
}

.article-card time {
  display: block;
  margin-bottom: 5px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
  letter-spacing: 0;
}

.article-card h3 {
  margin: 0 0 4px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-card-title);
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.article-card p {
  max-width: 344px;
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
  letter-spacing: 0;
}

.posts-action {
  display: flex;
  justify-content: center;
  padding-top: 56px;
}

.dark-btn {
  min-width: 193px;
  height: 50px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 8px 16px rgba(124, 77, 255, .35);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: background .2s ease, transform .2s ease;
}

.dark-btn img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.dark-btn:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
}

.newsletter-section {
  background: var(--color-newsletter);
}

.newsletter-inner {
  padding: 61px 0 62px;
  display: grid;
  grid-template-columns: 416px 1fr;
  align-items: center;
  gap: 101px;
}

.newsletter-inner h2 {
  font-size: var(--type-section-title);
  line-height: 62px;
  font-weight: 400;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 229px;
  gap: 18px;
}

.newsletter-form input,
.newsletter-form button {
  height: 70px;
  border: 0;
  border-radius: 0;
}

.newsletter-form input {
  width: 100%;
  padding: 0 30px;
  background: #fff;
  color: #000;
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  letter-spacing: 0;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: #000;
  opacity: 1;
}

.newsletter-form button {
  background: var(--color-ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: background .2s ease;
}

.newsletter-form button:hover {
  background: var(--color-orange);
}

.form-message {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}

.form-message.is-error {
  color: var(--color-orange);
}

.form-message.is-success {
  color: var(--color-muted);
}

.site-footer {
  background: var(--color-soft);
}

.footer-main {
  display: grid;
  grid-template-columns: 425px 1fr 1fr;
  gap: 92px;
  padding: 52px 0 43px;
}

.footer-brand img {
  width: 171px;
}

.footer-brand p {
  max-width: 425px;
  margin: 1px 0 27px;
  color: rgba(13, 7, 34, .4);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 24.5px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding-top: 30px;
}

.footer-links h2 {
  margin: 0 0 22px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-eyebrow);
  line-height: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 15px;
  color: rgba(13, 7, 34, .5);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-subcol {
  padding-top: 36px;
}

.copyright {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f6fafc;
  color: rgba(13, 7, 34, .3);
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 17px;
  font-weight: 400;
}

.page-rule {
  width: 100%;
  height: 1px;
  margin-top: 4px;
  background: rgba(13, 7, 34, .36);
}

.thank-you-page {
  min-height: 640px;
  padding-bottom: 100px;
  text-align: center;
}

.thank-you-panel {
  width: 100%;
  max-width: 820px;
  margin: 72px auto 0;
}

.thank-you-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 7, 34, .12);
  border-radius: 50%;
  background: #eef3f5;
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 36px;
  line-height: 1;
  transform: scale(.92);
  animation: thankYouPop .5s ease forwards;
}

.thank-you-page h1 {
  margin: 0 0 18px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.thank-you-intro {
  max-width: 620px;
  margin: 0 auto 32px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.thank-you-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.thank-you-button {
  min-width: 154px;
  height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-ink);
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 8px 16px rgba(124, 77, 255, .2);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.thank-you-button.secondary {
  background: #fff;
  color: var(--color-ink);
  box-shadow: none;
}

.thank-you-button:hover {
  border-color: var(--color-orange);
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-2px);
}

.thank-you-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto 34px;
  text-align: left;
}

.thank-you-step {
  min-height: 124px;
  padding: 20px;
  border: 1px solid rgba(13, 7, 34, .1);
  background: #f6fafc;
}

.thank-you-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--color-orange);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.thank-you-step h2 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
}

.thank-you-step p {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 23.8px;
  font-weight: 400;
}

@keyframes thankYouPop {
  to {
    transform: scale(1);
  }
}

.about-intro {
  padding-bottom: 100px;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 671px) minmax(0, 538px);
  justify-content: space-between;
  padding-top: 48px;
}

.about-intro h1,
.page-heading {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.about-intro h1 span,
.page-heading span,
.testimonials-section h2 span {
  color: var(--color-orange);
}

.about-intro-copy p {
  margin: 0 0 22px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.about-contact {
  width: max-content;
}

.about-hero-img {
  width: 100%;
  aspect-ratio: 1355 / 473;
  margin-top: 50px;
  object-fit: cover;
}

.impact-section {
  padding: 99px 0 100px;
  background: var(--color-newsletter);
  border-top: 1px solid var(--color-ink);
  border-bottom: 1px solid var(--color-ink);
}

.center {
  text-align: center;
}

.impact-section .eyebrow.center {
  margin-bottom: 16px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.impact-section .page-heading {
  line-height: 36px;
}

.impact-card {
  padding: 30px 24px 26px;
  border: 1px solid var(--color-ink);
  text-align: center;
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
  transition: box-shadow .25s ease, transform .25s ease;
}

.impact-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, .25);
  transform: translateY(-2px);
}

.impact-card.featured {
  background: var(--color-ink);
  color: #fff;
  border-color: var(--color-ink);
}

.impact-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 86px;
  background: rgba(99, 102, 241, .1);
}

.impact-card.featured .impact-icon {
  background: #fff;
}

.impact-icon img {
  width: 32px;
  height: 32px;
}

.impact-card h3 {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 68.4px;
  font-weight: 400;
}

.impact-card .eyebrow {
  margin-bottom: 13px;
}

.impact-card span {
  display: block;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.impact-card.featured span {
  color: #fff;
}

.testimonials-section {
  padding: 100px 0 100px;
}

.section-heading.compact {
  margin-bottom: 32px;
}

.section-heading.compact > p {
  max-width: 541px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.testimonial-card {
  padding: 30px;
  min-height: 420px;
  border: 1px solid var(--color-ink);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.testimonial-head {
  display: flex;
  align-items: flex-start;
  gap: 38px;
  margin-bottom: 26px;
}

.testimonial-head > img {
  width: 82px;
  height: 82px;
  border-radius: 82px;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0 0 9px;
  font-family: var(--font-body);
  font-size: var(--type-card-title);
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.testimonial-card .eyebrow {
  margin: 0;
}

.testimonial-card > p {
  max-width: 100%;
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
}

.testimonial-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.testimonial-socials a {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.testimonial-socials img {
  max-width: 18px;
  max-height: 18px;
}

.card-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}

.card-socials img[src$="social-1.svg"] {
  width: 16.001px;
  height: 16.001px;
}

.card-socials img[src$="social-2.svg"] {
  width: 8.738px;
  height: 17.581px;
}

.card-socials img[src$="social-3.svg"] {
  width: 18px;
  height: 13.224px;
}

.card-socials img[src$="social-mail.svg"] {
  width: 21.173px;
  height: 14.671px;
}

.article-list-page {
  padding-bottom: 100px;
}

.search-page-heading {
  margin: 43px 0 39px;
}

.search-page-heading .category-line {
  margin: 0 0 18px;
}

.search-page-heading h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.search-page-heading h1 span {
  color: var(--color-orange);
}

.category-line {
  margin: 43px 0 39px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.category-filter {
  margin: 43px 0 39px;
}

.category-filter .category-line {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.category-filter select {
  width: auto;
  border: 0;
  border-radius: 0;
  padding: 0 18px 0 0;
  background-color: transparent;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  outline: 0;
  cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--color-ink) 50%), linear-gradient(135deg, var(--color-ink) 50%, transparent 50%);
  background-position: calc(100% - 7px) 8px, calc(100% - 2px) 8px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.empty-posts {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.category-line span {
  color: #bebebe;
}

.article-grid-large {
  row-gap: 53px;
}

.article-grid-large .article-card img {
  margin-bottom: 24px;
}

.articles-action {
  padding-top: 76px;
}

.newsletter-page {
  padding-bottom: 100px;
  text-align: center;
}

.newsletter-page h1 {
  margin: 49px 0 22px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.newsletter-page-copy {
  width: 100%;
  max-width: 100%;
  max-width: 678px;
  margin: 0 auto;
  text-align: left;
}

.newsletter-page-copy p {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.legal-page {
  padding-bottom: 100px;
}

.legal-page .eyebrow {
  margin-top: 49px;
}

.legal-page h1 {
  max-width: 820px;
  margin: 18px 0 20px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.legal-page-content {
  max-width: 860px;
  margin-top: 44px;
}

.legal-page-content p,
.legal-page-content li {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.legal-page-content p {
  margin: 0 0 16px;
}

.legal-page-content h2 {
  margin: 34px 0 14px;
  border-top: 1px solid rgba(13, 7, 34, 0.14);
  padding-top: 28px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  letter-spacing: 0;
}

.legal-page-content h2:first-child {
  margin-top: 0;
}

.legal-page-content ul,
.legal-page-content ol {
  margin: 0 0 16px 22px;
  padding: 0;
}

.signup-card {
  width: 100%;
  max-width: 479px;
  margin: 41px auto 100px;
  background: var(--color-soft);
  text-align: center;
}

.signup-card > img {
  display: block;
  width: 100%;
  height: 315px;
  aspect-ratio: 479 / 315;
  object-fit: cover;
}

.signup-card-body {
  padding: 24px 20px 30px;
}

.signup-card h2 {
  margin: 0 0 7px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-card-title);
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.signup-card-body > p {
  margin: 0 0 27px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
}

.signup-form {
  position: relative;
  display: grid;
  gap: 15px;
}

.signup-form input,
.signup-form button {
  width: 100%;
  height: 50px;
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 400;
}

.signup-form input {
  border: 1px solid rgba(13, 7, 34, .14);
  padding: 0 14px;
  background: #fff;
  color: var(--color-muted);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  outline: 0;
}

.signup-form input::placeholder {
  color: rgba(61, 55, 96, .5);
  opacity: 1;
}

.signup-form button {
  margin-top: 15px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 8px 16px rgba(124, 77, 255, .35);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .5px;
  transition: background .2s ease, transform .2s ease;
}

.signup-form button img {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.signup-form button:hover {
  background: var(--color-orange);
  transform: translateY(-2px);
}

.signup-form .form-message {
  top: calc(100% + 8px);
  width: 100%;
  text-align: left;
}

.podcast-page {
  padding-bottom: 102px;
  text-align: center;
}

.podcast-page h1 {
  margin: 49px 0 24px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.podcast-intro {
  width: 100%;
  max-width: 100%;
  max-width: 620px;
  margin: 0 auto 44px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
  text-align: left;
}

.podcast-player {
  width: 100%;
  max-width: 612px;
  margin: 0 auto 102px;
  border: 1px solid var(--color-ink);
  background: #fff;
  text-align: left;
  overflow: hidden;
}

.podcast-player audio {
  display: none;
}

.player-top {
  padding: 28px 0 0 27px;
  display: grid;
  grid-template-columns: 121px 1fr;
  gap: 41px;
}

.player-art {
  padding-top: 0;
}

.player-logo {
  width: 116.682px;
  height: auto;
  margin-bottom: 10px;
}

.episode-thumb {
  width: 121px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ink);
  overflow: hidden;
}

.episode-thumb img {
  width: 104px;
  height: 52px;
  object-fit: cover;
}

.player-main h2 {
  width: 423px;
  margin: 0 0 29px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-card-title);
  line-height: 34px;
  font-weight: 400;
  letter-spacing: 1px;
}

.player-row {
  width: 376px;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
}

.play-toggle,
.player-actions button,
.episode-item {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.play-toggle {
  width: 50px;
  height: 50px;
}

.play-toggle img {
  width: 50px;
  height: 50px;
}

.wave-track {
  --progress: 37.38%;
  position: relative;
  height: 59px;
  cursor: pointer;
  touch-action: none;
  outline: 0;
}

.wave-track::before,
.wave-fill {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 43px;
  background-repeat: repeat-x;
  background-size: 8px 43px;
  background-image: linear-gradient(to top, transparent 0 9px, rgba(13, 7, 34, .12) 9px 34px, transparent 34px 43px);
  mask-image: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 6px);
}

.wave-fill {
  right: auto;
  width: var(--progress);
  background-image: linear-gradient(to top, transparent 0 9px, rgba(255, 107, 53, .5) 9px 34px, transparent 34px 43px);
}

.wave-handle {
  position: absolute;
  top: 0;
  left: var(--progress);
  width: 2px;
  height: 59px;
  background: rgba(255, 107, 53, .65);
  transform: translateX(-1px);
}

.player-time {
  width: 376px;
  margin: 6px 0 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 13px;
  font-weight: 400;
}

.player-actions {
  width: 376px;
  margin-top: 13px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 14px;
  font-weight: 600;
}

.player-actions .skip-back {
  width: 39px;
  height: 39px;
}

.player-actions .skip-forward {
  width: 55px;
  height: 55px;
  margin-left: -12px;
}

.player-actions img {
  width: 100%;
  height: 100%;
}

.episode-list {
  max-height: 378px;
  border-top: 1px solid rgba(13, 7, 34, .2);
  overflow-y: auto;
  scrollbar-color: rgba(13, 7, 34, .2) #f2f2f2;
  scrollbar-width: thin;
}

.episode-list::-webkit-scrollbar {
  width: 20px;
}

.episode-list::-webkit-scrollbar-track {
  background: #f2f2f2;
}

.episode-list::-webkit-scrollbar-thumb {
  border: 6px solid #f2f2f2;
  border-radius: 20px;
  background: rgba(13, 7, 34, .22);
}

.episode-item {
  width: 100%;
  height: 54px;
  padding: 0 39px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13, 7, 34, .2);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 23px;
  font-weight: 600;
  text-align: left;
}

.episode-item span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.episode-item img {
  width: 26px;
  height: 22px;
  padding: 6px 3px;
  background: var(--color-ink);
  object-fit: cover;
}

.episode-item time {
  color: rgba(61, 55, 96, .65);
  font-size: 17px;
  line-height: 23px;
  font-weight: 400;
}

.episode-item.active,
.episode-item:hover {
  background: rgba(238, 243, 245, .7);
}

.contact-page {
  padding-bottom: 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 499px) minmax(0, 667px);
  justify-content: space-between;
  align-items: start;
  padding-top: 48px;
}

.contact-info h1 {
  max-width: 499px;
  margin: 27px 0 8px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--type-section-title);
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

.contact-info h1 span {
  color: var(--color-orange);
}

.contact-copy {
  max-width: 499px;
  margin: 0 0 21px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 23.67px;
  font-weight: 400;
}

.contact-list {
  width: 100%;
  max-width: 421px;
  display: grid;
  gap: 24px;
}

.contact-card {
  min-height: 88px;
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  background: var(--color-newsletter);
}

.contact-card-link {
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease;
}

.contact-card-link:hover,
.contact-card-link:focus-visible {
  background: #d8e8ef;
  transform: translateY(-2px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  background: #fff;
}

.contact-icon img {
  max-width: 25px;
  max-height: 25px;
}

.contact-card h2 {
  margin: 0 0 4px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-card p {
  margin: 0;
  color: #6a7282;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

.contact-form-panel {
  position: relative;
  width: 100%;
  max-width: 667px;
  min-height: 606px;
  height: auto;
  margin-top: 28px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(13, 7, 34, .07);
}

.contact-form-panel h2 {
  margin: 0 0 30px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 36px;
  line-height: 60px;
  font-weight: 400;
  letter-spacing: 0;
}

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

.form-field {
  grid-column: 1 / -1;
}

.form-field.half {
  grid-column: auto;
}

.form-field.no-label {
  padding-top: 29px;
}

.form-field label {
  display: block;
  margin: 0 0 5px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(13, 7, 34, .2);
  border-radius: 0;
  padding: 0 10px;
  color: #6a7282;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  outline: 0;
}

.form-field input {
  height: 49px;
}

.form-field textarea {
  height: 154px;
  padding-top: 14px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #6a7282;
  opacity: 1;
}

.contact-form-panel button {
  width: 95px;
  height: 50px;
  margin-top: 24px;
  border: 0;
  background: var(--color-ink);
  color: #fff;
  box-shadow: 0 8px 16px rgba(124, 77, 255, .35);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  letter-spacing: .5px;
}

.contact-form-panel .form-message {
  left: 40px;
  top: auto;
  bottom: 16px;
}

.single-post-page {
  padding-bottom: 96px;
}

.post-hero {
  max-width: 900px;
  padding-top: 43px;
}

.post-hero .category-line {
  margin: 0 0 18px;
}

.post-hero h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 64px;
  line-height: 72px;
  font-weight: 400;
  letter-spacing: 0;
}

.post-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
}

.post-meta span,
.post-meta time {
  display: inline-flex;
  align-items: center;
}

.post-meta span::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 18px;
  border-radius: 50%;
  background: var(--color-orange);
}

.post-featured-image {
  margin: 48px 0 0;
}

.post-featured-image img {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  object-fit: contain;
  object-position: center;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 302px) minmax(0, 760px);
  justify-content: start;
  gap: 48px;
  padding-top: 70px;
}

.post-sidebar-column {
  position: sticky;
  top: 24px;
  align-self: start;
}

.post-sidebar {
  padding: 30px 26px;
  background: var(--color-soft);
}

.post-sidebar-column .post-featured-image {
  margin: 0 0 24px;
}

.post-sidebar-column .post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.post-sidebar > p:not(.eyebrow) {
  margin: 0;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-sm);
  line-height: 23.8px;
  font-weight: 400;
}

.post-share {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.post-share a {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.post-share img[src$="social-1.svg"] {
  width: 16.001px;
  height: 16.001px;
}

.post-share img[src$="social-2.svg"] {
  width: 8.738px;
  height: 17.581px;
}

.post-share img[src$="social-3.svg"] {
  width: 18px;
  height: 13.224px;
}

.post-content {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.post-content p {
  margin: 0 0 22px;
}

.post-lead {
  color: var(--color-ink);
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
}

.post-content h2 {
  margin: 42px 0 14px;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 36px;
  line-height: 46px;
  font-weight: 400;
  letter-spacing: 0;
}

.post-content ul {
  margin: 0 0 34px;
  padding-left: 22px;
}

.post-content li {
  margin-bottom: 10px;
}

.post-content blockquote {
  margin: 42px 0;
  padding: 30px 34px;
  border-left: 4px solid var(--color-orange);
  background: var(--color-newsletter);
}

.post-content blockquote p {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  line-height: 40px;
  font-weight: 400;
}

.post-gallery {
  margin-top: 52px;
}

.post-gallery h2 {
  margin: 0 0 22px;
}

.post-gallery-grid {
  column-count: 2;
  column-gap: 18px;
}

.post-gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 18px;
  overflow: hidden;
  background: var(--color-soft);
}

.post-gallery-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}

.post-gallery-item:nth-child(3n + 1) img {
  height: 230px;
}

.post-gallery-item:nth-child(3n + 2) img {
  height: 160px;
}

.post-gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 42px;
  background: rgba(13, 7, 34, .88);
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox-modal.is-open {
  display: flex;
}

.lightbox-modal img {
  display: block;
  max-width: min(1180px, 100%);
  max-height: calc(100vh - 120px);
  object-fit: contain;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .35);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  background: #fff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 20px;
  line-height: 44px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 48px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.post-inline-image {
  margin: 42px 0;
}

.post-inline-image img {
  width: 100%;
  aspect-ratio: 760 / 430;
  object-fit: cover;
  object-position: 84% center;
}

.related-posts {
  padding-bottom: 96px;
}

.not-found-page {
  padding-bottom: 96px;
}

.not-found-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 690px);
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.not-found-copy h1 {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 72px;
  line-height: 80px;
  font-weight: 400;
  letter-spacing: 0;
}

.not-found-copy h1 span {
  color: var(--color-orange);
}

.not-found-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 22px 0 34px;
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 29.75px;
  font-weight: 400;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.not-found-media {
  position: relative;
  margin: 0;
  background: var(--color-ink);
  overflow: hidden;
}

.not-found-media img {
  width: 100%;
  aspect-ratio: 690 / 520;
  object-fit: cover;
  opacity: .72;
  filter: grayscale(1);
}

.not-found-media figcaption {
  position: absolute;
  left: 34px;
  bottom: 20px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 160px;
  font-weight: 400;
  letter-spacing: 3px;
}

@media (min-width: 1635px) {
  .article-grid {
    column-gap: 1.2240vw;
    row-gap: 2.9376vw;
  }

  .article-grid-large {
    row-gap: 3.2436vw;
  }

  .section-heading {
    grid-template-columns: 1fr 33.1089vw;
    gap: 2.9376vw;
  }

  .newsletter-inner {
    grid-template-columns: 25.4590vw 51.2852vw;
    gap: 6.1812vw;
    padding-top: 3.7332vw;
    padding-bottom: 3.7944vw;
  }

  .newsletter-form {
    grid-template-columns: 35.9241vw 14.0147vw;
    gap: 1.1016vw;
  }

  .footer-main {
    grid-template-columns: 26.0098vw 1fr 1fr;
    gap: 5.6304vw;
    padding-top: 3.1824vw;
    padding-bottom: 2.6316vw;
  }

  .about-intro-grid {
    grid-template-columns: 41.0649vw 32.9253vw;
    gap: 8.9351vw;
    justify-content: start;
  }

  .about-intro-copy p,
  .section-heading.compact > p {
    max-width: 33.1089vw;
  }

  .impact-grid,
  .testimonial-grid {
    gap: 1.2240vw;
  }

  .testimonial-grid {
    row-gap: 1.8360vw;
  }

  .newsletter-page-copy {
    max-width: 41.4933vw;
  }

  .signup-card {
    max-width: 29.3146vw;
  }

  .podcast-intro {
    max-width: 37.9437vw;
  }

  .podcast-player {
    max-width: 37.4541vw;
  }

  .post-hero {
    max-width: 55.0796vw;
    padding-top: 2.6316vw;
  }

  .post-featured-image {
    margin-top: 2.9376vw;
  }

  .post-layout {
    grid-template-columns: 18.4823vw 46.5116vw;
    gap: 2.9376vw;
    padding-top: 4.2840vw;
  }

  .post-sidebar {
    padding: 1.8360vw 1.5912vw;
  }

  .related-posts,
  .single-post-page,
  .not-found-page {
    padding-bottom: 5.8752vw;
  }

  .not-found-grid {
    min-height: 39.1677vw;
    grid-template-columns: 31.8237vw 42.2277vw;
    gap: 4.2840vw;
  }

  .not-found-copy > p:not(.eyebrow) {
    max-width: 28.7638vw;
  }

  .contact-layout {
    grid-template-columns: 30.5386vw 40.8201vw;
    gap: 11.5055vw;
    justify-content: start;
  }

  .contact-info h1,
  .contact-copy {
    max-width: 30.5386vw;
  }

  .contact-list {
    max-width: 25.7650vw;
    gap: 1.4688vw;
  }

  .contact-card {
    min-height: 5.3856vw;
    padding: 0.9792vw;
    grid-template-columns: 3.4272vw 1fr;
    gap: 0.7344vw;
  }

  .contact-icon {
    width: 3.4272vw;
    height: 3.4272vw;
  }

  .contact-icon img {
    max-width: 1.5300vw;
    max-height: 1.5300vw;
  }

  .contact-form-panel {
    max-width: 40.8201vw;
    height: 37.0869vw;
    margin-top: 1.7136vw;
    padding: 2.4480vw;
  }

  .contact-form-grid {
    gap: 1.4688vw;
  }

  .form-field.no-label {
    padding-top: 1.7748vw;
  }

  .form-field input {
    height: 2.9988vw;
  }

  .form-field textarea {
    height: 9.4247vw;
    padding-top: 0.8568vw;
  }

  .contact-form-panel button {
    width: 5.8140vw;
    height: 3.0600vw;
    margin-top: 1.4688vw;
  }

  .contact-form-panel .form-message {
    left: 2.4480vw;
    bottom: 0.9792vw;
  }
}
