/* Column row blocks — loaded on public site and in the builder preview */
.cms-block-row {
  padding: 24px 0;
}
.cms-row-grid {
  display: grid;
  grid-template-columns: repeat(var(--cms-cols, 2), minmax(0, 1fr));
  gap: 28px;
  max-width: var(--max-width, 1200px);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.cms-row-col-inner {
  min-width: 0;
}
.cms-col-spacer {
  min-height: 40px;
}
.cms-col-spacer--hint {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  border: 1px dashed rgba(128, 128, 128, 0.35);
  border-radius: 8px;
  color: #71717a;
  font-size: 12px;
}
.cms-col-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.75;
  margin: 0 0 0.35em;
}
.cms-col-heading {
  margin: 0 0 0.5em;
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}
.content-section.cms-block-row .cms-col-heading,
.cms-block-row .cms-col-heading {
  font-family: inherit;
  letter-spacing: -0.02em;
}
.content-section.cms-block-row .cms-col-heading--h1,
.cms-block-row .cms-col-heading--h1,
.cms-col-heading--h1 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
}
.content-section.cms-block-row .cms-col-heading--h2,
.cms-block-row .cms-col-heading--h2,
.cms-col-heading--h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}
.content-section.cms-block-row .cms-col-heading--h3,
.cms-block-row .cms-col-heading--h3,
.cms-col-heading--h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
}
.content-section.cms-block-row .cms-col-heading--h4,
.cms-block-row .cms-col-heading--h4,
.cms-col-heading--h4 {
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  font-weight: 600 !important;
}
.content-section.cms-block-row .cms-col-heading--h5,
.cms-block-row .cms-col-heading--h5,
.cms-col-heading--h5 {
  font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
  font-weight: 600 !important;
}
.content-section.cms-block-row .cms-col-heading--h6,
.cms-block-row .cms-col-heading--h6,
.cms-col-heading--h6 {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}
.cms-col-prose {
  font-size: 1rem;
  line-height: 1.65;
}
.cms-col-prose p {
  margin: 0 0 0.75em;
}
.cms-col-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.cms-col-video-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.cms-col-video-frame img {
  width: 100%;
  display: block;
}
.cms-col-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
