@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #132028;
  --muted: #667781;
  --line: #dce5e8;
  --paper: #ffffff;
  --soft: #f3f7f6;
  --navy: #102a43;
  --teal: #087f8c;
  --mint: #12b886;
  --sun: #ffb703;
  --coral: #f45d48;
  --shadow: 0 18px 50px rgba(16, 42, 67, 0.14);
  --radius: 8px;
  --head: 'Manrope', sans-serif;
  --body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--soft);
  font-size: 15px;
  line-height: 1.7;
}

body::selection { background: rgba(18, 184, 134, 0.22); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.utility-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

.utility-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lang-select {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  outline: none;
}

.lang-select option { color: var(--ink); background: #fff; }

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

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

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: max-content;
}

.wordmark-card {
  width: 292px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 8px;
  color: #3d3528;
  background: linear-gradient(135deg, #d4b174 0%, #f2dfb7 47%, #b88945 100%);
  border: 1px solid rgba(61, 53, 40, 0.35);
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.16);
}

.wordmark-lines {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 28px;
  margin-bottom: 4px;
}

.wordmark-lines i {
  display: block;
  width: 7px;
  border: 2px solid #3d3528;
  border-bottom: 0;
}

.wordmark-lines i:nth-child(1) { height: 16px; }
.wordmark-lines i:nth-child(2) { height: 24px; }
.wordmark-lines i:nth-child(3) { height: 30px; }
.wordmark-lines i:nth-child(4) { height: 21px; }
.wordmark-lines i:nth-child(5) { height: 27px; }

.wordmark-title {
  display: block;
  font-family: 'Arial Narrow', 'Manrope', sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.9;
}

.wordmark-sub {
  display: block;
  margin-top: 5px;
  padding: 2px 8px;
  color: #e9dcc7;
  background: rgba(61, 53, 40, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-style: italic;
  line-height: 1.2;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.header-search {
  max-width: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 42, 67, 0.06);
}

.header-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 12px 0 12px 18px;
  color: var(--ink);
}

.icon-btn,
.menu-btn {
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--teal);
  transition: transform 0.18s ease, background 0.18s ease;
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  margin: 3px;
  font-size: 22px;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  font-size: 20px;
}

.icon-btn:hover,
.menu-btn:hover,
.btn:hover { transform: translateY(-2px); }

.main-nav {
  border-top: 1px solid rgba(220, 229, 232, 0.75);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item { position: relative; }

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 13px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal);
  background: rgba(8, 127, 140, 0.09);
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  padding: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 0 0 8px 8px;
}

.sub-menu a {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.35;
}

.nav-item:hover .sub-menu { display: block; }

.home-hero,
.page-hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.93), rgba(16, 42, 67, 0.58), rgba(8, 127, 140, 0.2)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.home-hero::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--mint), var(--sun), var(--coral));
  z-index: -1;
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 40px;
  padding: 56px 0 72px;
}

.hero-copy h1,
.page-hero h1 {
  margin: 18px 0 18px;
  font-family: var(--head);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
.page-hero h1 { max-width: 900px; font-size: clamp(2rem, 5vw, 4.3rem); }

.hero-copy h1 span { color: #9ff3d6; }

.hero-copy p {
  max-width: 650px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--navy);
  background: var(--sun);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(8, 127, 140, 0.26);
}

.btn.ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.hero-panel {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.hero-panel span,
.hero-panel a { color: rgba(255, 255, 255, 0.78); }

.hero-panel strong {
  display: block;
  margin: 8px 0 18px;
  font-family: var(--head);
  font-size: 25px;
  line-height: 1.15;
}

.hero-panel a {
  display: inline-flex;
  color: #fff;
  font-weight: 800;
}

.quick-links {
  background: var(--navy);
  padding: 24px 0;
}

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

.feature-card {
  position: relative;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  padding: 18px;
  background: #000;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
}

.feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.feature-card:hover img {
  transform: scale(1.06);
  opacity: 0.62;
}

.feature-card span,
.feature-card strong {
  position: relative;
  z-index: 1;
}

.feature-card span {
  color: #9ff3d6;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
}

.feature-card strong {
  font-family: var(--head);
  font-size: 22px;
  line-height: 1.12;
}

.about-band {
  background: #fff;
  padding: 70px 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 52px;
}

.about-layout h2,
.section-heading h2,
.contact-form h2 {
  margin: 12px 0 0;
  font-family: var(--head);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.about-layout p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.section-block { padding: 64px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2 { margin: 0; }
.section-heading a { color: var(--teal); font-weight: 800; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
}

.latest-blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 42, 67, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
}

.blog-card-body { padding: 18px; }

.blog-card span,
.article-meta,
.result-count {
  color: var(--muted);
  font-size: 13px;
}

.blog-card h3 {
  margin: 8px 0 10px;
  min-height: 58px;
  font-family: var(--head);
  font-size: 20px;
  line-height: 1.22;
}

.blog-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.blog-card strong { color: var(--teal); font-weight: 800; }

.page-hero-inner {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 58px 0;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  padding: 40px 0 70px;
}

.article-card,
.contact-form,
.sidebar-widget,
.contact-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 42, 67, 0.08);
}

.article-card {
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-meta span {
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--soft);
}

.article-body {
  color: #25343b;
  max-width: 880px;
  font-size: 17px;
  line-height: 1.78;
}

.article-body p {
  margin: 0 0 1.15rem;
}

.article-body > p:empty {
  display: none;
}

.article-body > p:first-of-type:not(:has(img)) {
  color: #173047;
  font-size: 1.08rem;
  line-height: 1.75;
}

.article-body h2,
.article-body h3 {
  font-family: var(--head);
  line-height: 1.18;
}

.article-body h2 {
  margin: 2.35rem 0 0.9rem;
  padding: 12px 0 12px 18px;
  border-left: 5px solid var(--mint);
  color: #102a43;
  font-size: 1.65rem;
  background: linear-gradient(90deg, rgba(8, 127, 140, 0.08), rgba(255, 255, 255, 0));
}

.article-body h3 {
  margin: 1.35rem 0 0.55rem;
  color: #102a43;
  font-size: 1.18rem;
}

.article-body ul,
.article-body ol {
  padding-left: 1.4rem;
  margin: 0 0 1.05rem;
}

.article-body li {
  margin: 0.38rem 0;
}

.article-callout {
  margin: 1.4rem 0;
  padding: 18px 20px;
  border: 1px solid #cfe0e4;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background: #f5fbfa;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.06);
}

.article-callout h3 {
  margin-top: 0;
}

.article-callout p:last-child,
.article-callout ul:last-child {
  margin-bottom: 0;
}

.article-callout-quote {
  border-left-color: var(--gold);
  background: #fffaf0;
}

.article-callout-quote cite {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.article-callout-note {
  background: #eef8fb;
}

.article-table-wrap {
  width: 100%;
  margin: 1.4rem 0;
  overflow-x: auto;
}

.article-body figure,
.article-body .wp-block-image {
  margin: 0 0 2rem;
  overflow-x: auto;
}

.article-body .wp-block-image figure {
  margin: 0;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.article-body th,
.article-body td {
  padding: 12px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.article-body tr:first-child td,
.article-body th {
  background: var(--soft);
  font-weight: 800;
}

.article-body img {
  display: block;
  width: 100% !important;
  max-width: 100%;
  height: clamp(260px, 38vw, 430px) !important;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.16);
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.author-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 28px 0 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.author-avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 900;
  font-size: 24px;
}

.author-box span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.author-box strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
}

.author-box p {
  margin: 3px 0 0;
  color: var(--muted);
}

.author-box .content-disclosure {
  margin-top: 10px;
  max-width: 760px;
  font-size: 14px;
  line-height: 1.65;
}

.article-card .btn { margin-top: 18px; }

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.sidebar-widget { padding: 18px; }

.sidebar-widget h3 {
  margin: 0 0 12px;
  font-family: var(--head);
  font-size: 18px;
}

.sidebar-widget a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
  transition: color 0.18s ease, padding-left 0.18s ease;
}

.sidebar-widget a:hover {
  color: var(--teal);
  padding-left: 6px;
}

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

.contact-grid > div {
  padding: 22px;
}

.contact-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.contact-grid strong {
  display: block;
  margin-top: 4px;
  font-family: var(--head);
  font-size: 20px;
}

.contact-form {
  padding: 28px;
}

.contact-form h2 { margin-bottom: 22px; }

.contact-form label {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(8, 127, 140, 0.12);
}

.empty-state {
  text-align: center;
  color: var(--muted);
}

.engagement-box {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfb;
}

.engagement-box h2 {
  margin: 0 0 14px;
  font-size: 22px;
}

.reaction-row,
.share-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.share-row {
  margin-top: 16px;
}

.share-row > span {
  color: var(--muted);
  font-weight: 800;
}

.reaction-btn,
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  padding: 9px 14px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

.reaction-icon {
  font-size: 18px;
  line-height: 1;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.linkedin { background: #0a66c2; font-size: 11px; }
.social-icon.x-social { background: #111; }
.social-icon.email { background: #e8590c; font-size: 13px; }
.social-icon.copy { background: var(--teal); font-size: 13px; }

.reaction-btn:hover,
.share-btn:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
}

.reaction-btn strong {
  color: var(--teal);
  font-size: 13px;
}

.reaction-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.reaction-btn.active strong {
  color: #fff;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 38px;
  padding-bottom: 38px;
}

.site-footer h4 { color: #fff; }

.site-footer p,
.site-footer a { color: rgba(255, 255, 255, 0.72); }

.site-footer p {
  max-width: 520px;
  margin: 14px 0 8px;
}

.site-footer h4 {
  margin: 0 0 12px;
  font-family: var(--head);
}

.site-footer a {
  display: block;
  padding: 5px 0;
}

.site-footer a:hover { color: #9ff3d6; }

.footer-contact {
  margin-top: 12px;
}

.footer-contact p {
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
  text-align: center;
  font-size: 13px;
}

.build-version {
  display: inline-block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(360px, calc(100% - 36px));
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  padding: 13px 16px;
  box-shadow: var(--shadow);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

#google_translate_element {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame,
.goog-te-gadget-icon,
.skiptranslate iframe {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 980px) {
  .header-inner { flex-wrap: wrap; padding: 12px 0; }
  .header-actions { width: 100%; }
  .hero-grid,
  .about-layout,
  .content-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-panel { align-self: auto; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .latest-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sidebar { order: -1; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1180px); }
  .utility-inner { justify-content: center; flex-wrap: wrap; padding: 6px 0; }
  .brand strong { font-size: 18px; }
  .wordmark-card { width: 232px; min-height: 70px; }
  .wordmark-title { font-size: 27px; }
  .wordmark-sub { font-size: 7px; padding-inline: 6px; }
  .header-search { order: 2; max-width: none; }
  .menu-btn { display: grid; place-items: center; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .nav-inner {
    display: grid;
    padding: 8px 0 14px;
  }
  .main-nav a {
    width: 100%;
    min-height: 42px;
    border-radius: 8px;
  }
  .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    border: 0;
    box-shadow: none;
    padding: 0 0 6px 14px;
    background: transparent;
  }
  .home-hero,
  .page-hero {
    background-image: linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(16, 42, 67, 0.76)), var(--hero-image);
  }
  .hero-grid { padding: 44px 0 56px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .hero-copy p { font-size: 16px; }
  .feature-grid,
  .blog-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .page-hero-inner { min-height: 250px; }
  .article-card,
  .contact-form { padding: 22px; }
  .section-heading { grid-template-columns: 1fr; }
}
