/*
Theme Name: Kelly Hansen
Author: OpenAI Codex
Description: Custom WordPress theme based on the Kelly Hansen Next.js site.
Version: 0.2.0
Requires at least: 6.4
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: kelly-hansen
*/

:root {
  --kh-background: #f8fafc;
  --kh-surface: #ffffff;
  --kh-surface-alt: #eef2f5;
  --kh-foreground: #0f172a;
  --kh-muted: #475569;
  --kh-border: #e7e9eb;
  --kh-primary: #009999;
  --kh-primary-dark: #007e7e;
  --kh-primary-soft: rgba(0, 153, 153, 0.12);
  --kh-danger: #ff5a57;
  --kh-shadow: 0 18px 36px rgba(15, 23, 42, 0.06);
  --kh-radius: 18px;
  --kh-container: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--kh-background);
  color: var(--kh-foreground);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--kh-primary);
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

p,
ul,
ol {
  margin: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--kh-container));
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  clip: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  background: var(--kh-surface);
  color: var(--kh-foreground);
  box-shadow: var(--kh-shadow);
  z-index: 100000;
}

.button,
button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 0.6rem;
  background: var(--kh-primary);
  color: #f0ffff;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
}

.button svg,
.icon-button svg,
.button-link svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.button:hover,
.button:focus-visible,
button:hover,
button:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
  background: var(--kh-primary-dark);
  color: #f0ffff;
  transform: translateY(-1px);
}

.button--outline {
  background: var(--kh-surface);
  border-color: var(--kh-border);
  color: var(--kh-foreground);
}

.button--outline:hover,
.button--outline:focus-visible {
  background: var(--kh-surface-alt);
  border-color: var(--kh-primary);
  color: var(--kh-foreground);
}

.button[aria-disabled="true"] {
  opacity: 0.55;
  pointer-events: none;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--kh-border);
  border-radius: 0.55rem;
  background: var(--kh-surface);
  color: var(--kh-foreground);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--kh-primary);
  border-color: var(--kh-primary);
  color: #f0ffff;
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--kh-primary);
  font-weight: 800;
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--kh-primary-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(231, 233, 235, 0.75);
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 56px;
}

.site-logo,
.site-footer__brand {
  color: var(--kh-primary);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.custom-logo {
  max-height: 34px;
  width: auto;
}

.site-navigation {
  justify-self: start;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  color: rgba(15, 23, 42, 0.6);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a,
.primary-menu .current_page_parent > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--kh-primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: none;
  grid-auto-flow: row;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--kh-border);
  border-radius: 0.55rem;
  background: var(--kh-surface);
}

.menu-toggle__line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--kh-foreground);
}

.site-main {
  min-height: calc(100vh - 56px);
}

.page-hero,
.home-hero {
  background: var(--kh-background);
}

.home-hero--has-background {
  overflow: hidden;
}

.home-hero--has-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.9) 42%, rgba(248, 250, 252, 0.8) 100%),
    var(--kh-home-hero-background-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero {
  padding: 7rem 0 6.25rem;
}

.page-hero--muted {
  background: var(--kh-surface-alt);
  border-bottom: 1px solid var(--kh-border);
}

.page-hero--center {
  text-align: center;
}

.page-hero__eyebrow {
  margin-bottom: 1rem;
  color: var(--kh-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--kh-border);
  border-radius: 999px;
  background: var(--kh-surface);
  color: var(--kh-foreground);
  font-size: 0.95rem;
  font-weight: 800;
}

.page-hero__title {
  max-width: 11ch;
  font-size: clamp(3.25rem, 7vw, 7rem);
}

.home-hero__title {
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.6vw, 5.6rem);
  margin-left: 18px;
}

.page-hero__title--wide {
  max-width: 14ch;
}

.page-hero__title--accent {
  color: var(--kh-primary);
}

.page-hero__subtitle {
  display: block;
  margin-top: 0.5rem;
  color: rgba(71, 85, 105, 0.95);
  font-weight: 400;
}

.page-hero__summary,
.home-hero__summary {
  max-width: 46rem;
  margin-top: 1.75rem;
  color: var(--kh-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-hero--center .page-hero__title,
.page-hero--center .page-hero__summary {
  margin-right: auto;
  margin-left: auto;
}

.home-hero {
  position: relative;
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.34fr);
  align-items: start;
  gap: 4rem;
  min-height: calc(100vh - 56px);
  padding: 6.5rem 0 7rem;
}

.home-hero__vertical {
  position: absolute;
  top: 0;
  left: 0;
  color: rgba(15, 23, 42, 0.05);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  transform: translateX(-0.2rem) rotate(180deg);
  writing-mode: vertical-rl;
}

.home-hero__content {
  max-width: 48rem;
  padding-left: 1.5rem;
}

.home-hero__eyebrow {
  color: var(--kh-primary);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 2.5rem;
}

.home-hero__tag {
  color: var(--kh-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

.home-hero__media {
  justify-self: end;
  align-self: start;
  display: flex;
  justify-content: center;
  width: min(475px, 100%);
}

.home-hero__image-frame,
.feature-image-frame,
.workshop-card__placeholder {
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  background: linear-gradient(145deg, rgba(0, 153, 153, 0.08), rgba(238, 242, 245, 0.8));
  box-shadow: var(--kh-shadow);
  overflow: hidden;
}

.home-hero__image-frame {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.home-hero__image,
.feature-image-frame img,
.workshop-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__image {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.feature-image-frame {
  min-height: 320px;
}

.feature-image-frame--empty,
.workshop-card__placeholder {
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--kh-muted);
  text-align: center;
}

.section-band {
  border-top: 1px solid var(--kh-border);
}

.section-band--muted {
  background: var(--kh-surface-alt);
}

.indexed-section {
  padding: 6rem 0;
}

.indexed-layout {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: 4rem;
}

.indexed-layout__sidebar {
  position: relative;
}

.indexed-layout__pin {
  position: sticky;
  top: 6.5rem;
}

.indexed-layout__number {
  color: var(--kh-primary);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.indexed-layout__title {
  margin-top: 0.5rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.indexed-layout__content {
  min-width: 0;
}

.lead-copy {
  color: var(--kh-muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.lead-copy > * + *,
.line-list__body > * + *,
.principle-item__text > * + * {
  margin-top: 0.9rem;
}

.lead-copy ul,
.lead-copy ol,
.line-list__body ul,
.line-list__body ol,
.principle-item__text ul,
.principle-item__text ol {
  padding-left: 1.35rem;
}

.lead-copy li + li,
.line-list__body li + li,
.principle-item__text li + li {
  margin-top: 0.45rem;
}

.lead-copy--strong {
  color: var(--kh-foreground);
  font-weight: 700;
}

.stack-lg > * + * {
  margin-top: 2rem;
}

.stack-md > * + * {
  margin-top: 1.5rem;
}

.stack-sm > * + * {
  margin-top: 1rem;
}

.line-list__item + .line-list__item,
.case-study + .case-study {
  margin-top: 2.3rem;
  padding-top: 2.3rem;
  border-top: 1px solid var(--kh-border);
}

.case-study__label {
  color: var(--kh-primary);
  font-size: 1.02rem;
}

.line-list__heading {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.line-list__body {
  margin-top: 0.7rem;
  max-width: 44rem;
  color: var(--kh-muted);
  font-size: 1.08rem;
}

.principle-item__title,
.case-study__label,
.split-feature__title,
.article-preview__title,
.project-card__title,
.workshop-card__title,
.podcast-card__title,
.resume-panel__title {
  font-weight: 700;
  letter-spacing: -0.05em;
}

.principle-item__title,
.split-feature__title,
.podcast-card__title {
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
}

.principle-item__text,
.case-study__text,
.split-feature__copy p,
.article-preview__excerpt,
.project-card__summary,
.workshop-card__excerpt,
.podcast-card__excerpt,
.help-desk__sidebar-card p,
.resume-panel__copy,
.placeholder-card p {
  color: var(--kh-muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 3.5rem;
  align-items: start;
}

.split-feature__copy {
  max-width: 46rem;
}

.split-feature__visual {
  align-self: stretch;
}

.section-heading-center {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.section-heading-center h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.section-heading-center p {
  margin-top: 1.25rem;
  color: var(--kh-muted);
  font-size: 1.08rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.project-card,
.workshop-card,
.podcast-card,
.entry-shell,
.placeholder-card,
.help-desk__sidebar-card {
  border: 1px solid var(--kh-border);
  border-radius: var(--kh-radius);
  background: var(--kh-surface);
  box-shadow: var(--kh-shadow);
}

.project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.8rem;
}

.project-card__title {
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
}

.project-card__summary {
  margin-top: 1.25rem;
}

.project-card__footer {
  margin-top: auto;
  padding-top: 2rem;
}

.help-desk__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.75fr);
  gap: 4rem;
}

.help-desk__posts {
  min-width: 0;
}

.article-preview + .article-preview {
  margin-top: 4rem;
}

.article-preview__date {
  color: var(--kh-muted);
  font-size: 0.94rem;
}

.article-preview__title {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.article-preview__tags,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: #e8edf4;
  color: var(--kh-foreground);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.tag--warm {
  background: var(--kh-danger);
  color: #fff;
}

.article-preview__excerpt {
  margin-top: 1rem;
}

.article-preview__link {
  margin-top: 1.3rem;
}

.help-desk__sidebar-card {
  position: sticky;
  top: 6.5rem;
  padding: 1.7rem;
  background: var(--kh-surface-alt);
}

.help-desk__sidebar-card h3 {
  font-size: 1.9rem;
}

.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.podcast-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.5rem;
}

.podcast-card__play {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 0.9rem;
  background: var(--kh-surface-alt);
  color: var(--kh-primary);
}

.podcast-card__title {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.podcast-card__excerpt {
  margin-top: 0.7rem;
}

.podcast-card__duration {
  margin-top: 0.9rem;
  color: var(--kh-primary);
  font-size: 0.95rem;
  font-weight: 800;
}

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

.workshop-card {
  overflow: hidden;
}

.workshop-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, rgba(0, 153, 153, 0.12), rgba(238, 242, 245, 0.7));
}

.workshop-card__media a {
  display: block;
  width: 100%;
  height: 100%;
}

.workshop-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.workshop-card__title {
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
}

.contact-form {
  max-width: 100%;
}

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

.contact-form input,
.contact-form textarea,
.search-field {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--kh-border);
  border-radius: 0.55rem;
  background: var(--kh-surface);
  color: var(--kh-foreground);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus,
.search-field:focus {
  outline: 2px solid rgba(0, 153, 153, 0.18);
  outline-offset: 1px;
  border-color: rgba(0, 153, 153, 0.45);
}

.contact-form textarea {
  min-height: 132px;
  margin-top: 1rem;
  resize: vertical;
}

.contact-form .button {
  margin-top: 1rem;
}

.contact-notice {
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border-radius: 0.75rem;
  font-weight: 700;
}

.contact-notice--success {
  background: rgba(0, 153, 153, 0.12);
  color: var(--kh-primary-dark);
}

.contact-notice--error {
  background: rgba(255, 90, 87, 0.12);
  color: #a12727;
}

.resume-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.resume-panel__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.resume-panel__copy {
  max-width: 48rem;
  margin: 1.4rem auto 0;
}

.resume-panel__actions {
  margin-top: 2.5rem;
}

.placeholder-card,
.entry-shell {
  padding: 2rem;
}

.placeholder-card h3,
.entry-title {
  font-size: clamp(2rem, 4vw, 3rem);
}

.entry-meta {
  margin-bottom: 0.75rem;
  color: var(--kh-muted);
  font-size: 0.92rem;
}

.single-feature {
  margin-bottom: 1.8rem;
  overflow: hidden;
  border-radius: 1rem;
}

.entry-content {
  color: var(--kh-muted);
  font-size: 1.05rem;
  line-height: 1.82;
}

.entry-content > * + * {
  margin-top: 1rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  color: var(--kh-foreground);
  letter-spacing: -0.04em;
}

.entry-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.entry-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.2rem;
}

.entry-content blockquote {
  padding-left: 1.2rem;
  border-left: 3px solid var(--kh-primary);
  color: var(--kh-foreground);
  font-weight: 700;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.entry-card {
  padding: 1.4rem;
  border: 1px solid var(--kh-border);
  border-radius: 1rem;
  background: var(--kh-surface);
  box-shadow: var(--kh-shadow);
}

.entry-card__title {
  margin-top: 0.55rem;
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.entry-card__excerpt {
  margin-top: 0.8rem;
  color: var(--kh-muted);
}

.site-footer {
  border-top: 1px solid var(--kh-border);
  background: var(--kh-background);
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 1.25rem;
}

.site-footer__brandline {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.site-footer__copyright {
  color: var(--kh-muted);
  font-size: 0.95rem;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__signature {
  display: flex;
  justify-content: center;
  gap: 0.7rem 1.25rem;
  flex-wrap: wrap;
  padding: 0.35rem 0 2rem;
  color: var(--kh-muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

.site-footer__signature strong {
  color: var(--kh-primary);
  font-weight: 500;
}

.search-form {
  display: flex;
  gap: 0.9rem;
}

.pagination,
.nav-links {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--kh-border);
  border-radius: 999px;
  background: var(--kh-surface);
}

.nav-links .current {
  background: var(--kh-primary);
  border-color: var(--kh-primary);
  color: #f0ffff;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 0.6rem;
  color: var(--kh-muted);
  font-size: 0.92rem;
  text-align: center;
}

.alignleft {
  float: left;
  margin: 0.45rem 1.4rem 1rem 0;
}

.alignright {
  float: right;
  margin: 0.45rem 0 1rem 1.4rem;
}

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1080px) {
  .indexed-layout,
  .split-feature,
  .help-desk__layout,
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    padding-left: 0;
    display: block;
  }

  .home-hero__media {
    display: none;
  }

  .home-hero__image-frame {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .help-desk__sidebar-card {
    position: static;
  }

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

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-navigation {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
  }

  .site-navigation.is-open {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0 1.35rem;
  }

  .workshop-grid,
  .project-grid,
  .entry-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .indexed-section {
    padding: 5rem 0;
  }
}

@media (max-width: 720px) {
  .home-hero__grid {
    min-height: auto;
    padding: 4.75rem 0 5.25rem;
  }

  .home-hero__vertical {
    display: none;
  }

  .home-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__actions .button,
  .home-hero__actions .button--outline {
    width: 100%;
  }

  .indexed-layout {
    gap: 2rem;
  }

  .indexed-layout__pin {
    position: static;
  }

  .contact-form__grid,
  .podcast-card {
    grid-template-columns: 1fr;
  }

  .podcast-card__play {
    width: 88px;
    height: 88px;
  }

  .site-footer__top,
  .site-footer__brandline {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__signature {
    justify-content: flex-start;
  }

  .search-form {
    flex-direction: column;
  }
}
