/* Stable Minds Wales — coastal, calm overrides on wireframe.css */

:root {
  --wales-sky: #5a8fa8;
  --wales-sea: #2d6b7f;
  --wales-sand: #f5f1ea;
  --wales-cream: #faf8f5;
  --wales-mist: #e8f0f2;
  --wales-wa: #25d366;
  --wales-wa-hover: #1ebe5d;
  --section-padding-wales: clamp(3.5rem, 7vw, 5.5rem);
}

body.wales-site {
  background: var(--white);
}

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-toggle button {
  background: transparent;
  border: 1px solid rgba(5, 49, 94, 0.2);
  color: var(--primary-color);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.active,
.lang-toggle button:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

.lang-toggle span {
  color: var(--text-light);
  font-weight: 400;
}

/* Header WhatsApp */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--wales-wa);
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: var(--wales-wa-hover);
  transform: translateY(-1px);
}

.btn-whatsapp svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
  flex-shrink: 0;
}

/* Header layout — logo left, actions + burger right */
.wales-header {
  position: relative;
  gap: 0.75rem;
}

.wales-header .header-brand {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.wales-header .header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

.wales-header .header-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wales-header .header-actions,
.wales-header .mobile-menu-btn {
  overflow: visible;
}

.wales-header .mobile-menu-btn {
  flex-shrink: 0;
}

/* Stable Minds logo */
.wales-site .header-brand a {
  display: block;
  line-height: 0;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.wales-site .logo img,
.wales-site .logo-img {
  transform: none !important;
  margin: 0 !important;
  display: block;
  width: auto;
  height: auto;
  max-height: 88px;
  max-width: min(100%, 280px, 74vw);
  object-fit: contain;
  object-position: left center;
}

.wales-site .site-header.scrolled .logo img,
.wales-site .site-header.scrolled .logo-img {
  max-height: 73px;
  max-width: min(100%, 238px, 66vw);
}

@media (min-width: 1201px) {
  .wales-site .logo-img {
    max-height: 109px;
    max-width: min(100%, 332px);
  }

  .wales-site .site-header.scrolled .logo-img {
    max-height: 85px;
    max-width: min(100%, 281px);
  }
}

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

.btn-whatsapp--icon {
  padding: 0.55rem !important;
  border-radius: 50% !important;
}

.btn-whatsapp--icon svg {
  width: 1.35rem !important;
  height: 1.35rem !important;
}

.mobile-nav-footer {
  display: none;
}

@media (min-width: 1201px) {
  .wales-header .header-brand {
    flex: 0 0 auto;
  }

  .wales-header .main-nav {
    flex: 1;
    justify-content: center;
  }

  .wales-header .main-nav-list {
    justify-content: center;
  }

  /* Community & Welsh Language only appear in mobile drawer and footer on desktop */
  .wales-header .nav-item--secondary {
    display: none;
  }
}

/* Hero */
.wales-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  color: var(--white);
  overflow: hidden;
}

.wales-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.wales-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 49, 94, 0.82) 0%,
    rgba(45, 107, 127, 0.72) 55%,
    rgba(9, 166, 171, 0.45) 100%
  );
}

.wales-hero .container {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1rem 2.5rem;
}

.wales-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  max-width: 22ch;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.wales-hero .hero-tagline {
  font-family: 'Yorris Note', cursive;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--yellow-accent);
  margin: 0 0 1rem;
  line-height: 1.25;
}

.wales-hero .hero-feedback {
  font-size: 1rem;
  max-width: 38rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  opacity: 0.95;
}

.wales-hero .hero-lead {
  font-size: 1.05rem;
  max-width: 42rem;
  line-height: 1.6;
  margin: 1.25rem 0 0;
  opacity: 0.95;
}

.wales-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.wales-hero .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.wales-hero .btn-feedback-cta {
  background: var(--yellow-accent);
  border: 2px solid var(--yellow-accent);
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255, 236, 0, 0.45);
}

.wales-hero .btn-feedback-cta:hover {
  background: #fff;
  border-color: var(--yellow-accent);
  color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(255, 236, 0, 0.55);
}

.wales-hero .btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: var(--white);
}

.wales-hero .btn-outline-light:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(5, 49, 94, 0.35);
}

/* Wales button hovers — deep blue (#05315e); yellow feedback CTA keeps its own hover */
body.wales-site .btn-primary:hover,
body.wales-site .btn-outline-dark:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(5, 49, 94, 0.35);
}

body.wales-site .btn-outline-dark {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

/* Sections */
.wales-section {
  padding: var(--section-padding-wales) 0;
}

.wales-section--sand {
  background: var(--wales-sand);
}

.wales-section--cream {
  background: var(--wales-cream);
}

.wales-section--mist {
  background: var(--wales-mist);
}

.wales-section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.wales-section-heading p {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  color: var(--text-light);
}

/* Cards grid */
.wales-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.wales-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 8px 28px rgba(5, 49, 94, 0.06);
  border: 1px solid rgba(5, 49, 94, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wales-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(5, 49, 94, 0.1);
}

.wales-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.wales-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Split layout */
.wales-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.wales-split--reverse .wales-split-image {
  order: 2;
}

.wales-split-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 420px;
  box-shadow: 0 16px 40px rgba(5, 49, 94, 0.12);
}

.wales-split-image--portrait {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 520px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(5, 49, 94, 0.12);
}

.wales-split-image--portrait img.milly-portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  /* Focus on face — anchor above shoulders, skip excess sky */
  object-position: center 12%;
}

.wales-split-text h2 {
  margin-bottom: 1rem;
}

/* Pill list */
.wales-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.wales-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--wales-mist);
  color: var(--primary-color);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Notice boxes */
.wales-notice {
  background: rgba(9, 166, 171, 0.1);
  border-left: 4px solid var(--accent-color);
  padding: 1.25rem 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

.wales-notice--amber {
  background: rgba(255, 236, 0, 0.15);
  border-left-color: #c9a800;
}

.wales-notice p:last-child {
  margin-bottom: 0;
}

/* Page header (inner pages) */
.wales-page-header {
  position: relative;
  padding: 5rem 0 3.5rem;
  color: var(--white);
  text-align: center;
}

.wales-page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.wales-page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5, 49, 94, 0.88), rgba(45, 107, 127, 0.78));
}

.wales-page-header .container {
  position: relative;
  z-index: 1;
}

.wales-page-header h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.wales-page-header p {
  max-width: 36rem;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}

/* Contact */
.contact-whatsapp-block {
  text-align: center;
  padding: 2rem;
  background: var(--wales-cream);
  border-radius: 20px;
  margin-bottom: 2.5rem;
}

.contact-whatsapp-block .btn-whatsapp--large {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
}

.contact-divider {
  text-align: center;
  margin: 2rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-divider span {
  background: var(--white);
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.contact-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(5, 49, 94, 0.12);
  margin-top: -0.65rem;
}

.form-success,
.form-error {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

.form-success.visible {
  display: block;
  background: rgba(9, 166, 171, 0.12);
  color: var(--primary-color);
}

.form-error.visible {
  display: block;
  background: rgba(200, 60, 60,  0.1);
  color: #8b2020;
}

.consent-label {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  cursor: pointer;
}

.consent-label input {
  margin-top: 0.25rem;
}

/* Crisis strip */
.crisis-strip {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 0;
  font-size: 0.9rem;
  text-align: center;
}

.crisis-strip a {
  color: var(--yellow-accent);
  font-weight: 600;
}

/* Footer */
.wales-footer-note {
  font-size: 0.85rem;
  color: #8daab6;
  margin-top: 0.5rem;
}

/* Centred CTA rows (full-width buttons on mobile via rules below) */
.wales-cta-wrap {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.wales-cta-wrap .btn {
  margin-left: auto;
  margin-right: auto;
}

/* Contact form radio group */
.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.form-radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-weight: 400;
  color: var(--text-color);
}

#smw-contact-form .btn-primary,
#smw-contact-form button[type="submit"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin-top: 0.5rem;
  min-height: 48px;
}

.btn-whatsapp--large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

/* ── Mobile & tablet ── */
@media (max-width: 1200px) {
  /* Keep toolbar visible; wireframe hides .header-cta — override for Wales */
  body.wales-site .wales-header .header-cta--desktop {
    display: flex !important;
  }

  body.wales-site .wales-header .header-cta--desktop .wa-label {
    display: none;
  }

  body.wales-site .wales-header .header-cta--desktop .btn-whatsapp {
    padding: 0.55rem;
    border-radius: 50%;
  }

  body.wales-site .lang-toggle {
    margin-right: 0;
  }

  body.wales-site .lang-toggle button {
    padding: 0.3rem 0.5rem;
    font-size: 0.8rem;
  }

  /* Burger + close (X) — absolute bars; sit above menu overlay */
  body.wales-site.menu-open .site-header {
    z-index: 1002;
  }

  body.wales-site .header-actions {
    position: relative;
    z-index: 1003;
    overflow: visible;
  }

  body.wales-site .mobile-menu-btn {
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    box-sizing: border-box;
    overflow: visible;
    z-index: 1004;
    flex-shrink: 0;
  }

  body.wales-site .mobile-menu-btn span {
    display: block;
    position: absolute;
    left: 10px;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: top 0.25s ease, transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
  }

  body.wales-site .mobile-menu-btn span:nth-child(1) {
    top: 14px;
  }

  body.wales-site .mobile-menu-btn span:nth-child(2) {
    top: 22.5px;
  }

  body.wales-site .mobile-menu-btn span:nth-child(3) {
    top: 31px;
  }

  body.wales-site .mobile-menu-btn.active span:nth-child(1),
  body.wales-site .mobile-menu-btn.active span:nth-child(3) {
    top: 22.5px;
  }

  body.wales-site .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
  }

  body.wales-site .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  body.wales-site .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  body.wales-site .site-header {
    height: auto;
    min-height: 80px;
  }

  body.wales-site .site-header.scrolled {
    min-height: 72px;
  }

  body.wales-site .wales-header {
    min-height: 80px;
    padding: 0.5rem 0;
    align-items: center;
  }

  /* Slide-out menu */
  body.wales-site .main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5.5rem;
  }

  body.wales-site .header-brand {
    position: relative;
    z-index: 1005;
  }

  body.wales-site .main-nav-list {
    width: 100%;
  }

  body.wales-site .main-nav a {
    font-size: 1.35rem;
    padding: 0.35rem 0;
  }

  body.wales-site .mobile-nav-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(5, 49, 94, 0.1);
    width: 100%;
  }

  body.wales-site .mobile-nav-footer .btn-whatsapp {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  body.wales-site .mobile-nav-footer .wa-label {
    display: inline !important;
  }

  /* Hero */
  body.wales-site .wales-hero {
    min-height: auto;
  }

  body.wales-site .wales-hero .container {
    padding: 1.25rem 1rem 2rem;
  }

  body.wales-site .wales-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  body.wales-site .wales-hero .hero-lead {
    font-size: 1rem;
  }

  body.wales-site .wales-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  /* All primary CTAs: full width of container (not header toolbar) */
  body.wales-site a.btn,
  body.wales-site button.btn {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.35;
    min-height: 48px;
  }

  body.wales-site .wales-hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  body.wales-site .wales-hero-buttons .btn {
    width: 100%;
    max-width: 100%;
  }

  body.wales-site .btn-whatsapp.btn-whatsapp--large {
    display: flex;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  body.wales-site .mobile-nav-footer .btn-whatsapp {
    width: 100%;
    max-width: min(100%, 320px);
  }

  body.wales-site #smw-contact-form .btn-primary {
    width: 100%;
  }

  body.wales-site .form-radio-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  body.wales-site .form-control,
  body.wales-site select.form-control {
    width: 100%;
    max-width: 100%;
    font-size: 16px; /* prevents iOS zoom on focus */
  }

  /* Reduce hover jump on touch devices */
  body.wales-site .btn:hover {
    transform: none;
  }

  body.wales-site .wales-page-header {
    padding: 4rem 0 2.5rem;
  }

  body.wales-site .wales-page-header h1 {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  body.wales-site h2 {
    font-size: clamp(2rem, 7vw, 2.75rem);
  }

  body.wales-site .wales-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body.wales-site .wales-split--reverse .wales-split-image {
    order: 0;
  }

  body.wales-site .wales-split-image:not(.wales-split-image--portrait) img {
    max-height: 280px;
  }

  body.wales-site .wales-split-image--portrait {
    aspect-ratio: 3 / 4;
    max-height: none;
  }

  body.wales-site .wales-split-image--portrait img.milly-portrait-img {
    max-height: none;
    height: 100%;
    object-position: center 12%;
  }

  body.wales-site .wales-cards {
    grid-template-columns: 1fr;
  }

  body.wales-site .wales-pills {
    justify-content: flex-start !important;
  }

  body.wales-site .wales-pill {
    font-size: 0.85rem;
  }

  body.wales-site .crisis-strip {
    font-size: 0.78rem;
    padding: 0.75rem 0;
    line-height: 1.45;
  }

  body.wales-site .crisis-strip .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  body.wales-site .container {
    width: 92%;
  }

  body.wales-site .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body.wales-site .footer-col ul {
    padding-left: 0;
    list-style: none;
  }

  body.wales-site .contact-whatsapp-block {
    padding: 1.5rem 1rem;
  }

  body.wales-site .policy-content {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  body.wales-site .logo-img {
    max-height: 65px;
    max-width: min(100%, 213px, 62vw);
  }

  body.wales-site .header-actions {
    gap: 0.35rem;
  }

  body.wales-site .wales-section {
    padding: 3rem 0;
  }

  body.wales-site .main-nav a {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  body.wales-site .wales-hero .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  body.wales-site a.btn,
  body.wales-site button.btn {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  body.wales-site .logo-img {
    max-height: 56px;
    max-width: min(100%, 187px, 58vw);
  }

  body.wales-site .lang-toggle button {
    padding: 0.25rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* ========================================
   New sections added June 2026
   ======================================== */

/* How Support Works — ordered list */
body.wales-site .wales-process-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  counter-reset: process-step;
}

body.wales-site .wales-process-list li {
  counter-increment: process-step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 1rem;
  line-height: 1.6;
}

body.wales-site .wales-process-list li:last-child {
  border-bottom: none;
}

body.wales-site .wales-process-list li::before {
  content: counter(process-step);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  background: var(--wales-teal, #2d7a8a);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* Approach value blocks */
body.wales-site .wales-card--approach {
  text-align: center;
}

body.wales-site .wales-card-icon {
  font-size: 1.6rem;
  color: var(--wales-teal, #2d7a8a);
  margin-bottom: 0.6rem;
  display: block;
}

/* Pre-footer CTA band */
body.wales-site .wales-footer-cta {
  padding: 3.5rem 0;
}

body.wales-site .wales-footer-cta h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

/* Survey iframe container */
body.wales-site .wales-survey-embed {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  background: #fff;
}

body.wales-site .wales-survey-embed iframe {
  display: block;
  min-height: 600px;
}

/* Bulleted list used in welsh-language.html */
body.wales-site .wales-list {
  padding-left: 1.4rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.8;
}

body.wales-site .wales-list li {
  margin-bottom: 0.4rem;
}

/* Section sub-heading (used under h2 in approach section) */
body.wales-site .wales-section-sub {
  text-align: center;
  color: #555;
  max-width: 540px;
  margin: -1rem auto 2.5rem;
  font-size: 1.05rem;
}

@media (max-width: 480px) {
  body.wales-site .wales-process-list li {
    gap: 0.75rem;
  }

  body.wales-site .wales-process-list li::before {
    min-width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  body.wales-site .wales-footer-cta .wales-cta-wrap {
    flex-direction: column;
    align-items: stretch;
  }
}
