/*
Theme Name: Cedar Loom Gazette
Author: Mara Ellison
Description: A classic WordPress theme with an Aeline-inspired sky hero, floating data cards, responsive menus, editable blocks, and dynamic post grids.
Version: 1.0.0
Requires at least: 6.0
Text Domain: bhb-theme
*/

:root {
  --bhb-ink: #080a0d;
  --bhb-muted: #74787d;
  --bhb-line: #e6e9e5;
  --bhb-paper: #ffffff;
  --bhb-soft: #f4f6f2;
  --bhb-cloud: #eff8ff;
  --bhb-sky: #159de3;
  --bhb-sky-deep: #0475bd;
  --bhb-lime: #d4ff32;
  --bhb-lime-deep: #9fca18;
  --bhb-grass: #8bd061;
  --bhb-shadow: 0 24px 70px rgba(8, 10, 13, 0.12);
  --bhb-radius: 18px;
  --bhb-radius-small: 12px;
  --bhb-shell: min(1180px, calc(100vw - 32px));
  --bhb-font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--bhb-ink);
  background: var(--bhb-paper);
  font-family: var(--bhb-font-main);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover,
a:focus-visible {
  color: var(--bhb-sky);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.bhb-skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  overflow: visible;
  clip: auto;
  color: var(--bhb-ink);
  background: var(--bhb-lime);
  border-radius: 999px;
  box-shadow: var(--bhb-shadow);
}

.bhb-shell {
  width: var(--bhb-shell);
  margin-right: auto;
  margin-left: auto;
}

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

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

.bhb-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  color: var(--bhb-ink);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0;
}

.bhb-brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--bhb-ink);
  background: var(--bhb-lime);
  border: 1px solid rgba(8, 10, 13, 0.12);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.bhb-brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bhb-logo img {
  width: auto;
  max-height: 42px;
}

.bhb-navigation {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
}

.bhb-menu-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--bhb-ink);
  background: var(--bhb-soft);
  border: 1px solid var(--bhb-line);
  border-radius: 999px;
}

.bhb-menu-icon,
.bhb-menu-icon::before,
.bhb-menu-icon::after {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
  transition: transform 180ms ease;
}

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

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

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

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

.bhb-menu-open .bhb-menu-icon {
  background: transparent;
}

.bhb-menu-open .bhb-menu-icon::before {
  transform: translateY(6px) rotate(45deg);
}

.bhb-menu-open .bhb-menu-icon::after {
  transform: translateY(-6px) rotate(-45deg);
}

.bhb-menu {
  position: absolute;
  top: calc(100% + 1px);
  right: 16px;
  left: 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  margin: 0;
  list-style: none;
  background: var(--bhb-paper);
  border: 1px solid var(--bhb-line);
  border-radius: var(--bhb-radius-small);
  box-shadow: var(--bhb-shadow);
}

.bhb-menu-open .bhb-menu {
  display: flex;
}

.bhb-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 12px;
  color: var(--bhb-ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.bhb-menu a:hover,
.bhb-menu a:focus-visible,
.bhb-menu a[aria-current="page"] {
  color: var(--bhb-ink);
  background: var(--bhb-lime);
}

.bhb-main {
  min-height: 60vh;
}

.bhb-hero {
  padding: clamp(16px, 3vw, 34px) 0 clamp(48px, 7vw, 88px);
}

.bhb-hero-frame {
  position: relative;
  width: var(--bhb-shell);
  min-height: clamp(560px, 72vw, 760px);
  margin: 0 auto;
  overflow: hidden;
  color: var(--bhb-paper);
  background:
    linear-gradient(180deg, rgba(21, 157, 227, 0.22), rgba(21, 157, 227, 0.02) 48%, rgba(106, 186, 82, 0.1) 49%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 70px, transparent 74px),
    linear-gradient(180deg, #5fc5ff 0%, #c9edff 48%, #91d968 49%, #5faf46 100%);
  border-radius: var(--bhb-radius);
}

.bhb-hero-frame::before {
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 34%;
  background:
    repeating-linear-gradient(74deg, rgba(255, 255, 255, 0.52) 0 3px, transparent 3px 18px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  content: "";
  transform: rotate(-2deg);
}

.bhb-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: clamp(28px, 6vw, 62px);
}

.bhb-hero-copy {
  max-width: 720px;
}

.bhb-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: currentColor;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bhb-kicker::before {
  width: 6px;
  height: 6px;
  background: var(--bhb-lime);
  border-radius: 50%;
  content: "";
}

.bhb-hero-title {
  margin: 0;
  color: var(--bhb-paper);
  font-size: clamp(44px, 8vw, 92px);
  font-weight: 850;
  line-height: 0.96;
  letter-spacing: 0;
}

.bhb-hero-title span {
  color: rgba(255, 255, 255, 0.72);
}

.bhb-hero-text {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  font-weight: 650;
}

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

.bhb-button,
.bhb-button-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bhb-button {
  color: var(--bhb-ink);
  background: var(--bhb-lime);
  border: 1px solid rgba(8, 10, 13, 0.12);
}

.bhb-button::after {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: 10px;
  color: var(--bhb-paper);
  background: var(--bhb-ink);
  border-radius: 50%;
  content: "\2197";
  line-height: 1;
}

.bhb-button-secondary {
  color: var(--bhb-paper);
  background: rgba(8, 10, 13, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.36);
}

.bhb-button:hover,
.bhb-button:focus-visible,
.bhb-button-secondary:hover,
.bhb-button-secondary:focus-visible {
  color: inherit;
  transform: translateY(-1px);
}

.bhb-floating-deck {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.bhb-info-card,
.bhb-person-card,
.bhb-lime-card,
.bhb-chip-card {
  min-width: 0;
  overflow: hidden;
  color: var(--bhb-ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(8, 10, 13, 0.1);
  border-radius: var(--bhb-radius-small);
  box-shadow: 0 16px 42px rgba(8, 10, 13, 0.12);
}

.bhb-info-card {
  display: grid;
  min-height: 150px;
  gap: 10px;
  align-content: space-between;
  padding: 18px;
}

.bhb-info-card small,
.bhb-lime-card small {
  color: rgba(8, 10, 13, 0.64);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.bhb-info-card strong {
  font-size: clamp(30px, 7vw, 48px);
  font-weight: 850;
  line-height: 0.98;
}

.bhb-progress {
  overflow: hidden;
  height: 8px;
  background: var(--bhb-soft);
  border-radius: 999px;
}

.bhb-progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: var(--bhb-lime);
  border-radius: inherit;
}

.bhb-person-card {
  display: block;
  min-height: 190px;
  background: var(--bhb-cloud);
}

.bhb-person-image {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.bhb-person-fallback {
  position: relative;
  min-height: 220px;
  background: linear-gradient(180deg, #4bbcff, #c6eeff);
}

.bhb-person-fallback span {
  position: absolute;
  left: 50%;
  display: block;
  transform: translateX(-50%);
}

.bhb-person-fallback span:nth-child(1) {
  bottom: 74px;
  width: 66px;
  height: 66px;
  background: #f2d2b8;
  border-radius: 50%;
}

.bhb-person-fallback span:nth-child(2) {
  bottom: 0;
  width: 128px;
  height: 110px;
  background: #dcecff;
  border-radius: 64px 64px 10px 10px;
}

.bhb-lime-card {
  display: grid;
  min-height: 170px;
  gap: 10px;
  align-content: space-between;
  padding: 18px;
  background: var(--bhb-lime);
}

.bhb-lime-card strong {
  font-size: clamp(44px, 10vw, 72px);
  font-weight: 850;
  line-height: 0.92;
}

.bhb-lime-card span {
  color: rgba(8, 10, 13, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.bhb-chip-card {
  display: flex;
  min-height: 150px;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.bhb-chip-card span {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--bhb-ink);
  background: var(--bhb-soft);
  border: 1px solid rgba(8, 10, 13, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.bhb-chip-card span:nth-child(2n) {
  background: var(--bhb-lime);
}

.bhb-about {
  padding: clamp(44px, 8vw, 96px) 0;
}

.bhb-about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}

.bhb-about-title {
  max-width: 780px;
  margin: 0;
  color: var(--bhb-ink);
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.bhb-about-title span {
  color: var(--bhb-muted);
}

.bhb-about-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 560px;
}

.bhb-metric {
  display: grid;
  gap: 8px;
}

.bhb-metric-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--bhb-paper);
  background: var(--bhb-ink);
  border-radius: 9px;
  font-size: 12px;
  font-weight: 950;
}

.bhb-metric strong {
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 760;
  line-height: 1;
}

.bhb-metric span {
  color: var(--bhb-muted);
  font-size: 13px;
  font-weight: 750;
}

.bhb-section {
  padding: clamp(44px, 7vw, 82px) 0;
  background: var(--bhb-soft);
}

.bhb-section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
}

.bhb-section-title {
  max-width: 720px;
  margin: 0;
  color: var(--bhb-ink);
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0;
}

.bhb-section-text {
  max-width: 480px;
  margin: 0;
  color: var(--bhb-muted);
  font-size: 14px;
  font-weight: 650;
}

.bhb-widget-area {
  display: grid;
  gap: 16px;
}

.bhb-widget-area > * {
  margin-top: 0;
  margin-bottom: 0;
}

.bhb-post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.bhb-post-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: var(--bhb-ink);
  background: var(--bhb-paper);
  border: 1px solid var(--bhb-line);
  border-radius: var(--bhb-radius-small);
  box-shadow: 0 12px 32px rgba(8, 10, 13, 0.05);
}

.bhb-card-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 1.36 / 1;
  background: var(--bhb-cloud);
}

.bhb-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.bhb-post-card:hover .bhb-card-image,
.bhb-post-card:focus-within .bhb-card-image {
  transform: scale(1.035);
}

.bhb-card-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--bhb-ink);
  background:
    linear-gradient(135deg, rgba(212, 255, 50, 0.95), rgba(21, 157, 227, 0.28)),
    var(--bhb-cloud);
  font-size: clamp(42px, 12vw, 86px);
  font-weight: 850;
  text-transform: uppercase;
}

.bhb-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 20px;
}

.bhb-card-meta,
.bhb-single-meta {
  color: var(--bhb-muted);
  font-size: 13px;
  font-weight: 800;
}

.bhb-card-title {
  margin: 10px 0;
  color: var(--bhb-ink);
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 780;
  line-height: 1.05;
  letter-spacing: 0;
}

.bhb-card-title a {
  color: var(--bhb-ink);
}

.bhb-card-title a:hover,
.bhb-card-title a:focus-visible {
  color: var(--bhb-sky);
}

.bhb-card-excerpt {
  color: var(--bhb-muted);
  font-size: 14px;
  font-weight: 600;
}

.bhb-card-excerpt p {
  margin: 0;
}

.bhb-text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--bhb-ink);
  border-bottom: 3px solid var(--bhb-lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bhb-pagination {
  margin-top: 28px;
}

.bhb-pagination > * {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhb-pagination a,
.bhb-pagination span {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--bhb-ink);
  background: var(--bhb-paper);
  border: 1px solid var(--bhb-line);
  border-radius: 999px;
  font-weight: 850;
}

.bhb-pagination span[aria-current],
.bhb-pagination a:hover,
.bhb-pagination a:focus-visible {
  background: var(--bhb-lime);
}

.bhb-empty {
  padding: 30px;
  background: var(--bhb-paper);
  border: 1px solid var(--bhb-line);
  border-radius: var(--bhb-radius-small);
}

.bhb-empty-title {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
}

.bhb-empty-text {
  margin: 0;
  color: var(--bhb-muted);
}

.bhb-single-wrap {
  width: min(80vw, 980px);
  margin: clamp(30px, 5vw, 70px) auto;
}

.bhb-single-header {
  padding: clamp(26px, 5vw, 56px);
  color: var(--bhb-paper);
  background:
    linear-gradient(180deg, rgba(21, 157, 227, 0.2), rgba(21, 157, 227, 0.02)),
    var(--bhb-sky);
  border-radius: var(--bhb-radius) var(--bhb-radius) 0 0;
}

.bhb-back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--bhb-paper);
  border-bottom: 3px solid var(--bhb-lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.bhb-single-title {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: clamp(40px, 8vw, 82px);
  font-weight: 790;
  line-height: 0.98;
  letter-spacing: 0;
}

.bhb-single-content {
  padding: clamp(26px, 5vw, 56px);
  color: var(--bhb-ink);
  background: var(--bhb-paper);
  border-right: 1px solid var(--bhb-line);
  border-left: 1px solid var(--bhb-line);
  font-size: clamp(18px, 2.3vw, 21px);
  line-height: 1.78;
}

.bhb-single-content > * {
  margin-top: 0;
  margin-bottom: 1.22em;
}

.bhb-single-content h2,
.bhb-single-content h3,
.bhb-single-content h4 {
  margin-top: 1.65em;
  margin-bottom: 0.55em;
  line-height: 1.08;
}

.bhb-single-content h2 {
  font-size: clamp(30px, 5vw, 48px);
}

.bhb-single-content h3 {
  font-size: clamp(25px, 4vw, 36px);
}

.bhb-single-content a {
  color: var(--bhb-ink);
  border-bottom: 3px solid var(--bhb-lime);
  font-weight: 780;
}

.bhb-single-content blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 22px;
  background: var(--bhb-soft);
  border-left: 6px solid var(--bhb-lime);
  border-radius: var(--bhb-radius-small);
}

.bhb-single-content table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.bhb-single-content th,
.bhb-single-content td {
  padding: 12px;
  border: 1px solid var(--bhb-line);
}

.bhb-single-content img {
  border-radius: var(--bhb-radius-small);
}

.bhb-single-footer {
  display: grid;
  gap: 18px;
  padding: 0 clamp(26px, 5vw, 56px) clamp(26px, 5vw, 46px);
  background: var(--bhb-paper);
  border: 1px solid var(--bhb-line);
  border-top: 0;
  border-radius: 0 0 var(--bhb-radius) var(--bhb-radius);
}

.bhb-term-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bhb-term-list a {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--bhb-ink);
  background: var(--bhb-lime);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.bhb-post-nav {
  display: grid;
  gap: 12px;
}

.bhb-post-nav a {
  display: block;
  padding: 16px;
  color: var(--bhb-ink);
  background: var(--bhb-soft);
  border: 1px solid var(--bhb-line);
  border-radius: var(--bhb-radius-small);
  font-weight: 800;
}

.bhb-footer {
  padding: 34px 0;
  color: var(--bhb-ink);
  background: var(--bhb-paper);
  border-top: 1px solid var(--bhb-line);
}

.bhb-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bhb-footer-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.1;
}

.bhb-footer-text {
  max-width: 520px;
  margin: 0;
  color: var(--bhb-muted);
}

.bhb-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
  list-style: none;
}

.bhb-footer-menu a {
  color: var(--bhb-muted);
  font-size: 14px;
  font-weight: 800;
}

.bhb-footer-bottom {
  margin-top: 26px;
  padding-top: 16px;
  color: var(--bhb-muted);
  border-top: 1px solid var(--bhb-line);
  font-size: 13px;
}

@media (min-width: 720px) {
  .bhb-floating-deck {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bhb-person-card {
    grid-row: span 2;
  }

  .bhb-about-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  }

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

  .bhb-post-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .bhb-post-card:first-child .bhb-card-media {
    min-height: 100%;
    aspect-ratio: auto;
  }

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

  .bhb-footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  }

  .bhb-footer-menu {
    justify-content: flex-end;
  }
}

@media (min-width: 940px) {
  .bhb-menu-toggle {
    display: none;
  }

  .bhb-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .bhb-menu a {
    min-height: 38px;
    padding: 8px 12px;
  }

  .bhb-hero-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  }

  .bhb-floating-deck {
    align-self: end;
    margin-top: 120px;
  }

  .bhb-chip-card {
    grid-column: 1 / -1;
  }

  .bhb-section-head {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  }

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

  .bhb-post-card:first-child {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --bhb-shell: min(100vw - 20px, 1180px);
  }

  .bhb-header-inner {
    min-height: 66px;
  }

  .bhb-brand {
    max-width: calc(100vw - 96px);
  }

  .bhb-hero-frame {
    min-height: auto;
  }

  .bhb-hero-content {
    padding: 24px 16px;
  }

  .bhb-hero-title {
    font-size: clamp(40px, 12vw, 58px);
  }

  .bhb-single-wrap {
    width: min(92vw, 980px);
  }
}
