/*
Theme Name: Lac Hong Staging
Theme URI: https://staging.lachongcenter.org
Author: Lac Hong Center
Description: Clean staging homepage theme for Lac Hong School.
Version: 0.2.12
Requires at least: 6.0
Tested up to: 6.8
Text Domain: lac-hong-staging
*/

:root {
  --olive: #7b8933;
  --leaf: #4f6f32;
  --red: #b8322d;
  --gold: #efef1c;
  --jade: #dde8cf;
  --pink: #d94d8c;
  --blue: #4d8fb8;
  --paper: #f7f7f4;
  --ink: #222222;
  --muted: #62665c;
  --white: #ffffff;
  --line: rgba(34, 34, 34, 0.12);
  --shadow: 0 18px 42px rgba(34, 34, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 136px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Libre Franklin", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.trust-strip {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 8px 20px;
  color: var(--white);
  background: var(--leaf);
  font-size: 13px;
  font-weight: 700;
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  width: min(1400px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  padding: 10px 0;
}

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

.brand-lockup img {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 21px;
  line-height: 1.05;
  font-weight: 900;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 0;
  font-size: 15px;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle-icon {
  position: relative;
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 0;
}

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.link-action {
  color: var(--leaf);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline-dark {
  color: var(--ink);
  border-color: rgba(34, 34, 34, 0.28);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: calc(100vh - 124px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "eyebrow proof"
    "title proof"
    "lede actions";
  column-gap: 34px;
  align-items: end;
  width: 100%;
  min-height: 30%;
  padding: 22px max(20px, calc((100% - 1180px) / 2));
  background: rgba(22, 34, 19, 0.88);
}

.hero-inner .eyebrow {
  grid-area: eyebrow;
  color: var(--gold);
}

.hero-inner h1 {
  grid-area: title;
}

.hero-inner .hero-lede {
  grid-area: lede;
  color: var(--white);
}

.hero-inner .hero-actions {
  grid-area: actions;
}

.hero-inner .hero-proof {
  grid-area: proof;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 900;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.1vw, 56px);
  font-weight: 900;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  font-weight: 900;
  line-height: 1.18;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 600;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 150px));
  gap: 10px;
  margin-bottom: 0;
}

.hero-proof div {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 2px 0 0;
  font-size: 16px;
  font-weight: 900;
}

.task-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.task-panel a {
  display: grid;
  min-height: 132px;
  padding: 22px;
  border-right: 1px solid var(--line);
  align-content: start;
}

.task-panel a:last-child {
  border-right: 0;
}

.task-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.task-panel strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.task-panel small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

.section-grid,
.schedule-grid,
.story-grid,
.contact-inner,
.section-heading,
.class-layout,
.proof-grid,
.support-grid,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.mission-section {
  background: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: 64px;
  align-items: start;
}

.mission-copy p,
.section-heading p,
.schedule-grid p,
.story-content p,
.support-section .section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.trust-line {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--ink) !important;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 820px;
}

.class-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.class-card,
.support-grid article {
  min-height: 278px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.05);
}

.classes-section .class-card {
  color: var(--white);
  background: var(--leaf);
}

.class-card.featured {
  color: var(--white);
  background: var(--leaf);
}

.class-card span {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.class-card.featured span {
  color: var(--ink);
  background: var(--gold);
}

.class-card p,
.support-grid p {
  color: var(--muted);
}

.classes-section .class-card p {
  color: rgba(255, 255, 255, 0.86);
}

.class-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

.classes-section .class-card a {
  display: none;
}

.class-card a,
.support-grid a,
.text-link {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.class-card.featured a {
  color: var(--gold);
}

.schedule-section {
  background: var(--jade);
}

.schedule-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.event-stack {
  display: grid;
  gap: 14px;
}

.event-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  min-height: 128px;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(34, 34, 34, 0.06);
}

.event-card time {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 900;
  text-align: center;
}

.event-card p {
  margin-bottom: 0;
}

.story-section {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.story-photo {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  min-height: 370px;
  object-fit: cover;
}

.proof-section {
  color: var(--white);
  background: var(--leaf);
}

.proof-section .eyebrow {
  color: var(--gold);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-grid div {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.proof-grid strong {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
}

.proof-grid span {
  display: block;
  font-weight: 700;
}

.support-section {
  background: var(--paper);
}

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

.support-grid article {
  display: flex;
  flex-direction: column;
}

.support-grid a,
.signup-form {
  margin-top: auto;
}

.signup-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.signup-form input {
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 6px;
  font: inherit;
}

.signup-form button {
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--leaf);
  font: inherit;
  font-weight: 900;
}

.contact-section {
  padding: 84px 0;
  color: var(--white);
  background: var(--red);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 44px;
  align-items: center;
}

.contact-inner p {
  font-size: 18px;
}

.contact-card {
  padding: 28px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 900;
}

.contact-card p {
  color: var(--muted);
}

.contact-card .button {
  width: 100%;
  margin-top: 10px;
}

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

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 44px 0;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
  font-size: 15px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.site-footer a + a {
  margin-top: 8px;
}

.editable-homepage > .wp-block-group,
.editable-homepage > .wp-block-columns {
  width: min(980px, calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.editable-homepage > .wp-block-group {
  padding: 72px 0;
}

.editable-homepage > .wp-block-group:first-child {
  width: 100%;
  max-width: none;
  padding: 86px max(20px, calc((100% - 980px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(22, 34, 19, 0.94) 0%, rgba(79, 111, 50, 0.9) 100%);
}

.editable-homepage > .wp-block-group:first-child h1 {
  max-width: 760px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(46px, 6vw, 76px);
}

.editable-homepage > .wp-block-group:first-child p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 600;
}

.editable-homepage > .wp-block-group:first-child .wp-block-buttons {
  margin-top: 28px;
}

.editable-homepage > .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 28px;
  margin-bottom: 28px;
}

.editable-homepage .wp-block-column {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.05);
}

.editable-homepage .wp-block-heading {
  color: var(--ink);
}

.editable-homepage > .wp-block-group:first-child .wp-block-heading {
  color: var(--white);
}

.editable-homepage p,
.editable-homepage li {
  color: var(--muted);
  font-size: 18px;
}

.editable-homepage li + li {
  margin-top: 8px;
}

.editable-homepage a:not(.wp-block-button__link):not(.button) {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.editable-homepage .button-primary {
  color: var(--white);
  text-decoration: none;
}

.editable-homepage .button-ghost {
  color: var(--white);
  text-decoration: none;
}

.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 2px solid var(--red);
  border-radius: 6px;
  color: var(--white);
  background: var(--red);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.is-style-outline .wp-block-button__link {
  color: var(--red);
  background: transparent;
}

.editable-homepage .wp-block-table {
  width: min(1180px, calc(100% - 40px));
  margin: 30px auto 72px;
  overflow-x: auto;
}

.editable-homepage .wp-block-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(34, 34, 34, 0.05);
}

.editable-homepage .wp-block-table th,
.editable-homepage .wp-block-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  text-align: left;
  vertical-align: top;
}

.editable-homepage .wp-block-table th {
  color: var(--white);
  background: var(--leaf);
  font-weight: 900;
}

.editable-homepage .wp-block-table tbody tr:nth-child(even) {
  background: rgba(221, 232, 207, 0.38);
}

.editable-homepage .wp-block-table tbody tr:last-child td {
  border-bottom: 0;
}

.editable-homepage .wp-block-table td:first-child {
  width: 120px;
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.page-title-band {
  padding: 58px 20px;
  color: var(--white);
  background: var(--leaf);
}

.page-title-band > div {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.page-title-band h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(40px, 5vw, 64px);
}

.not-found-section {
  width: min(1180px, calc(100% - 40px));
  min-height: 360px;
  margin: 0 auto;
  padding: 72px 0;
}

.not-found-section p {
  max-width: 620px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1450px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 140px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-top: 3px solid var(--leaf);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: block;
  }

  .nav-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu a,
  .nav-links > a {
    display: block;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav-menu li:last-child a,
  .nav-links > a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 960px) {
  .trust-strip {
    flex-wrap: wrap;
    gap: 8px 16px;
    justify-content: flex-start;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    max-height: calc(100vh - 140px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-top: 3px solid var(--leaf);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: block;
  }

  .nav-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-menu a,
  .nav-links > a {
    display: block;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav-menu li:last-child a,
  .nav-links > a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lede"
      "actions"
      "proof";
    row-gap: 10px;
    min-height: 36%;
    padding: 22px max(20px, calc((100% - 1180px) / 2));
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .task-panel,
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .class-layout,
  .section-grid,
  .schedule-grid,
  .story-grid,
  .contact-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .editable-homepage > .wp-block-columns {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 961px) and (max-width: 1120px) {
  .nav-shell {
    gap: 16px;
    width: min(100% - 28px, 1240px);
  }

  .brand-lockup {
    gap: 10px;
  }

  .brand-lockup img {
    width: 96px;
    height: 96px;
  }

  .brand-lockup strong {
    font-size: 18px;
  }

  .brand-lockup small,
  .nav-links,
  .nav-actions {
    font-size: 12px;
  }

  .nav-menu,
  .nav-actions {
    gap: 12px;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-shell,
  .task-panel,
  .section-grid,
  .schedule-grid,
  .story-grid,
  .contact-inner,
  .section-heading,
  .class-layout,
  .proof-grid,
  .support-grid,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-lockup img {
    width: 92px;
    height: 92px;
  }

  .brand-lockup strong {
    font-size: 17px;
  }

  .brand-lockup small {
    display: none;
  }

  .button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-inner {
    width: 100%;
    min-height: 42%;
    padding: 22px 14px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr;
  }

  .task-panel {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .task-panel a {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 66px 0;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .signup-form {
    grid-template-columns: 1fr;
  }

  .editable-homepage > .wp-block-group,
  .editable-homepage > .wp-block-columns {
    width: min(100% - 28px, 980px);
  }

  .editable-homepage > .wp-block-group {
    padding: 52px 0;
  }

  .editable-homepage > .wp-block-group:first-child {
    padding: 64px 14px;
  }

  .editable-homepage .wp-block-column {
    padding: 22px;
  }

  .page-title-band {
    padding: 42px 14px;
  }
}
