:root {
  --blue-950: #063f2d;
  --blue-800: #087a55;
  --blue-650: #00a77c;
  --blue-500: #00cc99;
  --aqua-500: #8fdc6d;
  --green-500: #5dbb63;
  --coral-500: #f2a650;
  --ink: #17352b;
  --muted: #66746a;
  --line: #dbe9dd;
  --sky-50: #effff8;
  --gray-50: #f8f6ef;
  --white: #ffffff;
  --shadow: 0 16px 46px rgba(6, 63, 45, 0.1);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  line-height: 1.75;
  background: #ffffff;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  max-width: 100%;
}

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

a:hover {
  color: var(--blue-650);
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
  font-weight: 760;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 4.8rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.65rem);
}

h3 {
  font-size: 1.18rem;
}

table {
  border-collapse: collapse;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 8px;
  left: 8px;
  transform: translateY(-130%);
  background: var(--blue-950);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 247, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 233, 221, 0.85);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(6, 63, 45, 0.08);
}

.header-inner,
.section-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 62px;
  height: auto;
  border-radius: 4px;
  flex: 0 0 auto;
}

.brand-name,
.brand-tagline {
  display: block;
}

.brand-name {
  font-weight: 800;
  line-height: 1.25;
  color: var(--blue-950);
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--muted);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.global-nav a {
  padding: 10px 13px;
  border-radius: var(--radius);
  color: var(--ink);
}

.global-nav a:hover,
.global-nav a.is-current {
  background: var(--sky-50);
  color: var(--blue-800);
}

.global-nav .nav-cta {
  background: var(--blue-650);
  color: var(--white);
}

.global-nav .nav-cta:hover,
.global-nav .nav-cta.is-current {
  background: var(--blue-800);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  position: relative;
}

.nav-toggle-line,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--blue-950);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-line {
  top: 21px;
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  top: 28px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.section {
  padding: 88px 0;
}

.soft-blue {
  background: linear-gradient(180deg, #effff8 0%, #f7fff5 100%);
}

.soft-gray {
  background: var(--gray-50);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: right center;
  overflow: hidden;
}

.hero-mobile-media {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.96) 0%, rgba(255, 253, 247, 0.84) 36%, rgba(255, 253, 247, 0.2) 68%, rgba(255, 253, 247, 0.06) 100%),
    linear-gradient(180deg, rgba(6, 63, 45, 0.12), rgba(6, 63, 45, 0.02));
}

.hero-inner {
  position: relative;
  padding: 88px 0;
}

.hero-lead,
.page-hero p,
.lead-block {
  font-size: 1.08rem;
  color: var(--muted);
}

.hero-lead {
  max-width: 640px;
  margin: 22px 0 0;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-statement {
  max-width: 760px;
  margin-top: 30px;
  padding-left: 18px;
  border-left: 4px solid var(--blue-500);
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.14rem);
  font-weight: 650;
  line-height: 1.9;
}

.hero-statement p {
  margin-bottom: 0.65rem;
}

.hero-statement p:last-child {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue-650);
  box-shadow: 0 10px 24px rgba(0, 167, 124, 0.22);
}

.button-primary:hover {
  color: var(--white);
  background: var(--blue-800);
}

.button-secondary {
  color: var(--blue-800);
  background: var(--sky-50);
  border-color: var(--line);
}

.button-outline {
  color: var(--blue-950);
  background: rgba(255, 253, 247, 0.82);
  border-color: rgba(0, 167, 124, 0.28);
}

.button-light {
  color: var(--blue-950);
  background: var(--white);
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--blue-650);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.home-page .hero .eyebrow {
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 900;
}

.home-page section[aria-labelledby="latest-title"] .eyebrow {
  font-size: 0.94rem;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
}

.lead-block p:last-child {
  margin-bottom: 0;
}

.feature-row,
.tag-row,
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-row {
  margin-top: 20px;
}

.feature-row span,
.tag-row span,
.category-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sky-50);
  color: var(--blue-800);
  font-size: 0.85rem;
  font-weight: 800;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.text-link {
  color: var(--blue-800);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

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

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

.article-card,
.job-card,
.voice-card,
.principle-card,
.number-card,
.category-card,
.info-tile,
.detail-side,
.contact-form,
.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(6, 63, 45, 0.06);
}

.article-card,
.job-card,
.voice-card,
.principle-card,
.number-card,
.category-card {
  padding: 24px;
}

.category-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 167, 124, 0.36);
}

.category-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-800);
  font-weight: 900;
  line-height: 1.45;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-card h3 {
  margin-bottom: 12px;
}

.article-card p:last-child,
.job-card p:last-child,
.voice-card p:last-child {
  margin-bottom: 0;
}

.article-meta {
  color: var(--blue-650);
  font-size: 0.86rem;
  font-weight: 800;
}

.article-card-large {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.article-card-large .tag-row {
  margin-top: auto;
}

.recruit-highlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.numbers-panel,
.number-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.number-item,
.number-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.number-value {
  color: var(--blue-800);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
}

.number-unit {
  color: var(--muted);
  font-weight: 800;
  margin-left: 4px;
}

.number-item p,
.number-card p {
  margin: 10px 0 0;
  font-weight: 800;
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 0.85fr));
  gap: 20px;
  align-items: stretch;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.overview-card {
  min-height: 170px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.overview-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-650);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.overview-card strong {
  display: block;
  color: var(--blue-950);
  font-size: 1.3rem;
  line-height: 1.45;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
}

.info-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  padding: 24px;
}

.info-tile span {
  color: var(--blue-650);
  font-size: 0.85rem;
  font-weight: 850;
}

.info-tile strong {
  font-size: 1.25rem;
}

.page-hero {
  padding: 96px 0;
  background:
    linear-gradient(120deg, rgba(255, 248, 235, 0.98), rgba(239, 255, 248, 0.92)),
    linear-gradient(135deg, var(--blue-500), var(--aqua-500));
}

.compact-hero .section-inner {
  max-width: 880px;
}

.recruit-hero {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 45, 0.94), rgba(0, 126, 91, 0.86)),
    url("assets/img/hero-hospital-team.png") center / cover;
}

.recruit-hero p,
.recruit-hero .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.category-tabs {
  margin-bottom: 38px;
}

.category-tabs a {
  border: 1px solid transparent;
}

.category-tabs a.is-active {
  background: var(--blue-650);
  color: var(--white);
}

.article-header {
  padding: 84px 0 52px;
  background: var(--sky-50);
}

.narrow {
  max-width: 820px;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-800);
  font-weight: 850;
}

.article-body {
  padding-top: 56px;
}

.article-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.article-body p {
  font-size: 1.05rem;
}

.job-card dl,
.job-summary,
.detail-side dl {
  display: grid;
  gap: 12px;
}

.job-card h4 {
  margin: 18px 0 10px;
  color: var(--blue-950);
  font-size: 1rem;
}

.direct-apply-note {
  margin: -8px 0 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral-500);
  border-radius: var(--radius);
  background: #fff8eb;
}

.direct-apply-note strong {
  color: var(--blue-950);
}

.direct-apply-note p {
  margin: 6px 0 0;
  color: var(--muted);
}

.job-card dl div,
.job-summary div,
.detail-side dl div {
  display: grid;
  gap: 4px;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

dd {
  margin: 0;
}

.stack-list,
.voice-list,
.job-list {
  display: grid;
  gap: 18px;
}

.stack-item,
.voice-row,
.job-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stack-item span,
.principle-card span {
  color: var(--coral-500);
  font-weight: 900;
}

.avatar {
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-650), var(--aqua-500));
  color: var(--white);
  font-weight: 900;
}

.avatar.large {
  width: 76px;
  font-size: 1.4rem;
}

.quote {
  color: var(--blue-950);
  font-weight: 850;
}

.voice-role {
  color: var(--blue-650);
  font-weight: 850;
}

.job-row {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.85fr) auto;
  align-items: center;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.detail-main h2 {
  margin: 0 0 16px;
  font-size: 1.55rem;
}

.detail-main h2:not(:first-child) {
  margin-top: 42px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 12px;
  height: 8px;
  border-left: 3px solid var(--aqua-500);
  border-bottom: 3px solid var(--aqua-500);
  transform: rotate(-45deg);
}

.detail-side {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.detail-side h2 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.signature {
  margin-top: 24px;
  color: var(--blue-950);
  font-weight: 850;
  text-align: right;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.hours-table {
  width: 100%;
  min-width: 620px;
}

.hours-table th,
.hours-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.hours-table thead th {
  background: var(--blue-800);
  color: var(--white);
}

.hours-table tbody th {
  color: var(--blue-800);
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-frame {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.contact-box {
  padding: 20px;
  margin-top: 24px;
}

.contact-box span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 850;
}

.contact-box a {
  display: inline-block;
  margin: 4px 0;
  color: var(--blue-800);
  font-size: 1.5rem;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.confirm-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(6, 63, 45, 0.06);
}

.confirm-list {
  display: grid;
  gap: 0;
  margin: 22px 0 0;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.confirm-list div:last-child {
  border-bottom: 1px solid var(--line);
}

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

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

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

label span {
  color: var(--ink);
}

label strong {
  color: var(--coral-500);
  font-size: 0.78rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfe4d1;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
  min-height: 180px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 204, 153, 0.18);
  border-color: var(--blue-650);
}

small {
  color: var(--muted);
  text-align: right;
}

.checkbox-label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  font-weight: 700;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  margin-top: 0.25em;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-alert {
  padding: 16px;
  border-radius: var(--radius);
  background: #fff3f1;
  border: 1px solid #ffd4cd;
  color: #9b2d20;
}

.form-alert[hidden] {
  display: none;
}

.form-alert.is-success {
  background: var(--sky-50);
  border-color: #a8e7ca;
  color: var(--blue-950);
}

.form-alert p {
  margin-bottom: 8px;
  font-weight: 850;
}

.form-alert ul {
  margin: 0;
  padding-left: 1.2em;
}

.footer-cta {
  padding: 64px 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 63, 45, 0.96), rgba(0, 167, 124, 0.88)),
    url("assets/img/hero-hospital-team.png") center / cover;
}

.footer-cta .eyebrow,
.footer-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-cta-inner h2 {
  max-width: 720px;
}

.site-footer {
  padding: 56px 0 24px;
  background: #063f2d;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 36px;
}

.footer-brand .brand-name,
.site-footer h2 {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 86px;
  background: var(--white);
}

.footer-brand .brand-tagline,
.footer-description {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  width: min(var(--container), calc(100% - 32px));
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .global-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: rgba(255, 253, 247, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.22s ease;
  }

  .nav-open .global-nav {
    transform: translateY(0);
  }

  .global-nav a {
    padding: 13px 14px;
  }

  .hero {
    min-height: 640px;
    background-position: right center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 253, 247, 0.97) 0%, rgba(255, 253, 247, 0.84) 56%, rgba(255, 253, 247, 0.34) 100%),
      linear-gradient(180deg, rgba(6, 63, 45, 0.12), rgba(6, 63, 45, 0.02));
  }

  .split-layout,
  .recruit-highlight,
  .info-grid,
  .overview-grid,
  .form-layout,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .job-row {
    grid-template-columns: 1fr;
  }

  .detail-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .section-inner {
    width: min(100% - 24px, var(--container));
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    width: 54px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: 620px;
    display: block;
    background-image: none;
    background-position: right center;
    overflow: visible;
  }

  .hero-mobile-media {
    display: block;
    width: 100%;
    background: var(--white);
  }

  .hero-mobile-media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1044 / 730;
    object-fit: cover;
    object-position: center top;
  }

  .hero-inner {
    padding: 34px 0 70px;
  }

  .page-hero {
    padding: 70px 0;
  }

  .hero-overlay {
    display: none;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .three-columns,
  .five-columns,
  .two-columns,
  .numbers-panel,
  .number-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .article-card,
  .job-card,
  .voice-card,
  .principle-card,
  .number-card,
  .number-item,
  .contact-form {
    padding: 20px;
  }

  .stack-item,
  .voice-row {
    grid-template-columns: 1fr;
  }

  .footer-cta-inner {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .confirm-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .category-tabs a {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }
}
