/* ——— DUTY HOUR CASE STUDY PAGE ——— */
.duty-hour-page {
  background: var(--white);
  color: var(--light-ink);
  --dh-plum: #3b1e2b;
  --dh-plum-dark: #2d162c;
  --dh-peach: #d4956a;
  --dh-peach-soft: #f5e8dc;
  --dh-cream: #fdf6f0;
  --dh-tag-bg: #eef0f4;
  --dh-title-xl: clamp(1.75rem, 2.5vw, 3.125rem);
  --dh-title-lg: clamp(1.375rem, 1.75vw, 1.875rem);
  --dh-body-lg: clamp(0.9375rem, 1vw, 1.125rem);
  --dh-visual-width: clamp(17rem, 21vw, 22rem);
  --dh-visual-width-lg: clamp(18rem, 23vw, 26rem);
}

.duty-hour-page .scroll-progress {
  background: linear-gradient(90deg, var(--dh-plum) 0%, var(--dh-peach) 100%);
}

/* Hero */
.dh-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--black);
}

.dh-hero__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}

.dh-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.55) 55%, #ffffff 100%);
  z-index: 1;
  pointer-events: none;
}

.dh-hero .cnav {
  position: relative;
  z-index: 2;
}

.dh-hero__brand {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem) 8rem;
}

.dh-hero__icon {
  width: min(120px, 22vw);
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.35));
}

.dh-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.dh-hero__tagline {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28rem;
  line-height: 1.55;
}

/* Overview */
.dh-overview {
  background: var(--white);
  padding: 0 clamp(1.25rem, 4vw, 3.5rem) 5rem;
}

.dh-overview__inner {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}

.dh-overview h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.dh-overview__desc {
  font-size: clamp(0.92rem, 1.5vw, 1rem);
  font-weight: 500;
  line-height: 1.75;
  color: var(--light-muted);
  margin-bottom: 1.5rem;
}

.dh-overview__desc:last-of-type {
  margin-bottom: 2.25rem;
}

.dh-overview__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.dh-overview__tags span {
  padding: 0.55rem 1.15rem;
  background: var(--dh-tag-bg);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* The Problem */
.dh-problem {
  background: var(--white);
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem) 6rem;
}

.dh-problem__head {
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.dh-problem__head h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.dh-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: auto auto;
  gap: 1.75rem 2rem;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.dh-problem__card,
.dh-problem__block {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.65;
}

.dh-problem__card h3,
.dh-problem__block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.dh-problem__card--accent {
  grid-column: 1;
  grid-row: 1;
  padding: 1.75rem 1.85rem;
  border-radius: 1.35rem;
  background: var(--dh-plum);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 40px rgba(59, 30, 43, 0.18);
}

.dh-problem__card--accent h3 {
  color: #FDDFBD;
  font-size: 18px;
}

.dh-problem__block {
  color: var(--light-muted);
}

.dh-problem__block h3 {
  color: var(--ink);
}

.dh-problem__block:nth-of-type(2) {
  grid-column: 2;
  grid-row: 1;
}

.dh-problem__block:nth-of-type(3) {
  grid-column: 1;
  grid-row: 2;
}

.dh-problem__block:nth-of-type(4) {
  grid-column: 2;
  grid-row: 2;
}

.dh-problem__photo {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  align-self: start;
  line-height: 0;
  display: contents;
}

.dh-problem__photo img {
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.35rem;
  box-shadow: 0 12px 40px rgba(15, 30, 60, 0.1);
}

/* Solution banner */
.dh-solution {
  background: var(--white);
  padding: clamp(5rem, 9vw, 7rem) clamp(1.25rem, 4vw, 3.5rem) 5rem;
  overflow: visible;
}

.dh-solution__inner {
  max-width: var(--max);
  margin: 0 auto;
  overflow: visible;
}

.dh-solution__panel {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(3rem, 5vw, 4.25rem) clamp(2.5rem, 4vw, 4rem) clamp(3rem, 5vw, 4.25rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--dh-plum-dark);
  border-radius: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--white);
  min-height: clamp(511px, 38vw, 440px);
}

.dh-solution__phone {
  position: absolute;
  left: clamp(-5.00rem, 2.5vw, 0.25rem);
  top: clamp(-5.5rem, -9vw, -6.5rem);
  width: auto;
  margin: 0;
  transform: rotate(0deg);
  transform-origin: center bottom;
  z-index: 2;
  filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.4));
  pointer-events: none;
}

.dh-solution__phone img {
  width: auto;
  height: clamp(360px, 42vw, 560px);
  display: block;
}

.dh-solution__copy {
  grid-column: 2;
  position: relative;
  z-index: 1;
}

.dh-solution__copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-title-xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dh-peach);
  letter-spacing: -0.01em;
  margin-bottom: 1.15rem;
}

.dh-solution__lead {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 500;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.dh-solution__body {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

/* Core Features */
.dh-features {
  background: var(--white);
  padding: 5rem clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 7vw, 5.5rem);
}

.dh-features__title {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.dh-features__intro {
  display: grid;
  grid-template-columns: minmax(0, 290px) minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 7vw, 5.5rem);
  align-items: start;
}

.dh-features__phone {
  margin: 0;
  align-self: start;
}

.dh-features__phone img {
  width: 100%;
  max-width: 290px;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(15, 30, 60, 0.12));
}

.dh-features__geofence-copy {
  align-self: end;
  padding-top: 0;
  max-width: 22rem;
  padding-bottom: clamp(0.25rem, 1vw, 0.75rem);
}

.dh-features__geofence-copy h3,
.dh-features__resident-card h3,
.dh-features__item h3 {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-title-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.dh-features__geofence-copy p,
.dh-features__resident-card p,
.dh-features__item p {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 500;
  line-height: 1.65;
  color: var(--light-muted);
}

.dh-features__resident {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  align-self: start;
  justify-self: end;
  width: 100%;
  max-width: 100%;
}

.dh-features__resident-photo {
  margin: 0;
  display: contents;
}

.dh-features__resident-photo img {
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  border-radius: 1.35rem;
  box-shadow: 0 12px 40px rgba(15, 30, 60, 0.1);
}

.dh-features__resident-card {
  background: var(--dh-peach-soft);
  border-radius: 1.35rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-right: 0;
}

.dh-features__resident-card h3 {
  white-space: nowrap;
}

.dh-features__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.dh-features__item {
  font-family: Montserrat, sans-serif;
  text-align: left;
  min-width: 0;
  max-width: 100%;
}

.dh-features__item--offline {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.dh-features__item--institution {
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: start;
}

.dh-features__item--role {
  grid-column: 1;
  grid-row: 2;
  align-self: end;
  justify-self: start;
}

.dh-features__item--holiday {
  grid-column: 3;
  grid-row: 2;
  align-self: end;
  justify-self: start;
}

.dh-features__item--highlight {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: #381F32;
  color: rgba(255, 255, 255, 0.88);
  border-radius: clamp(1.75rem, 3vw, 2.75rem);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.75rem) clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 16px 48px rgba(56, 31, 50, 0.22);
  display: flex;
  flex-direction: column;
  text-align: left;
}

.dh-features__item--highlight h3 {
  color: var(--white);
  font-size: clamp(1.2rem, 1.45vw, 1.625rem);
  white-space: nowrap;
}

.dh-features__item-title--single {
  white-space: nowrap;
}

.dh-features__item--highlight p {
  color: rgba(255, 255, 255, 0.88);
}

.dh-features__dash {
  margin: 0 0 1.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.dh-features__dash img {
  width: 100%;
  display: block;
}

/* Super Admin */
.dh-admin {
  background: linear-gradient(180deg, #ffffff 0%, #f9ede0 100%);
  padding: clamp(4rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3.5rem);
}

.dh-admin__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
}

.dh-admin__photo {
  margin: 0;
  border-radius: clamp(1.25rem, 2.5vw, 1.75rem);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 30, 60, 0.1);
}

.dh-admin__photo img {
  width: 100%;
  display: block;
}

.dh-admin__copy {
  text-align: left;
}

.dh-admin__copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-title-lg);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.dh-admin__copy p {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 500;
  line-height: 1.65;
  color: var(--ink);
  max-width: 34rem;
}

/* How We Built It */
.dh-built {
  --dh-built-pad-x: clamp(1.25rem, 4vw, 3.5rem);
  position: relative;
  background: var(--white);
  padding: clamp(4rem, 7vw, 5.5rem) var(--dh-built-pad-x);
  overflow: visible;
}

.dh-built__block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 7vw, 5.5rem);
}

.dh-built__block:last-child {
  margin-bottom: 0;
}

.dh-built__block--text-right {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.dh-built__block--text-right .dh-built__visual {
  order: -1;
}

.dh-built__block--intro {
  align-items: start;
  overflow: visible;
}

.dh-built__block--intro .dh-built__visual {
  justify-self: center;
  width: var(--dh-visual-width);
  max-width: 100%;
  overflow: visible;
}

.dh-built__block--dev-launch {
  align-items: center;
  overflow: visible;
  position: relative;
  max-width: none;
  width: calc(100% + var(--dh-built-pad-x));
  margin-left: calc(-1 * var(--dh-built-pad-x));
  padding-left: 0;
}

.dh-built__block--dev-launch .dh-built__copy {
  padding-left: var(--dh-built-pad-x);
}

.dh-built__phones--dev-launch {
  position: relative;
  width: 100%;
  min-height: clamp(22rem, 44vw, 36rem);
  overflow: visible;
}

.dh-built__copy h2 {
  font-family: Montserrat, sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.dh-built__lead {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 500;
  line-height: 1.65;
  color: var(--light-muted);
  margin-bottom: 2.5rem;
  max-width: 34rem;
}

.dh-built__step {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  margin-bottom: 2rem;
}

.dh-built__step:last-child {
  margin-bottom: 0;
}

.dh-built__step-icon {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  flex-shrink: 0;
}

.dh-built__step-body h3 {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-title-lg);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.85rem;
}

.dh-built__step-body p {
  font-family: Montserrat, sans-serif;
  font-size: var(--dh-body-lg);
  font-weight: 500;
  line-height: 1.65;
  color: var(--light-muted);
}

.dh-built__stores {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.dh-built__stores a {
  display: block;
}

.dh-built__stores img {
  height: 44px;
  width: auto;
  display: block;
}

.dh-built__visual {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.dh-built__visual--intro {
  min-height: 0;
  overflow: visible;
  aspect-ratio: 4 / 5;
}

.dh-built__glow {
  position: absolute;
  inset: 8% 0 0 10%;
  width: 88%;
  height: auto;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.dh-built__phone,
.dh-built__summary {
  position: absolute;
  display: block;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(15, 30, 60, 0.14));
}




/* Intro phones — all % positioning scales with container */

.dh-built__visual--intro .dh-built__phone--home {
  left: -19%;
  top: 55%;
  width: 65%;
  z-index: 1;
}

.dh-built__visual--intro .dh-built__phone--geofence {
  left: 56%;
  top: 72%;
  width: 65%;
  z-index: 2;
   margin-top:55%;
}

.dh-built__visual--intro .dh-built__phone--timeline {
  left: 78%;
  top: 0;
  width: 65%;
  z-index: 3;
}

/* Dev/Launch phones — fan layout: login bleeds off left, splash center-top, calendar right */
.dh-built__phones--dev-launch .dh-built__phone {
  position: absolute;
  display: block;
  width: auto;
  max-width: none;
  height: clamp(16rem, 30vw, 30rem);
  filter: drop-shadow(0 20px 40px rgba(15, 30, 60, 0.14));
  pointer-events: none;
}

.dh-built__phones--dev-launch .dh-built__phone--login {
  left: 0;
  bottom: 0;
  transform: translateX(-42%);
  z-index: 1;
}

.dh-built__phones--dev-launch .dh-built__phone--splash {
  left: 36%;
  top: 0;
  transform: translateX(-50%);
  height: clamp(17.5rem, 33vw, 32.5rem);
  z-index: 3;
}

.dh-built__phones--dev-launch .dh-built__phone--calendar {
  left: 64%;
  top: 14%;
  transform: translateX(-15%);
  z-index: 2;
}

@media (max-width: 1440px) {
  .duty-hour-page {
    --dh-title-xl: clamp(1.625rem, 3vw, 2.375rem);
    --dh-title-lg: clamp(1.125rem, 2vw, 1.5rem);
    --dh-body-lg: clamp(0.875rem, 1.05vw, 1rem);
  }

  .dh-built__step-icon {
    width: 3rem;
    height: 3rem;
  }

  .dh-built__step {
    grid-template-columns: 3rem 1fr;
  }
}

@media (max-width: 1280px) {
  .duty-hour-page {
    --dh-title-xl: clamp(1.5rem, 3.5vw, 2.125rem);
    --dh-title-lg: clamp(1.0625rem, 2.2vw, 1.375rem);
    --dh-body-lg: clamp(0.8125rem, 1.15vw, 0.9375rem);
  }
}

@media (max-width: 1024px) {
  .dh-problem__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dh-problem__photo img {
    grid-column: 1 / -1;
    grid-row: auto;
    max-height: 360px;
    object-fit: cover;
    object-position: center top;
  }

  .dh-problem__card--accent,
  .dh-problem__block:nth-of-type(2),
  .dh-problem__block:nth-of-type(3),
  .dh-problem__block:nth-of-type(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .dh-solution__panel {
    grid-template-columns: 1fr;
    padding-top: clamp(14rem, 28vw, 18rem);
    padding-left: clamp(2rem, 4vw, 3rem);
    min-height: auto;
  }

  .dh-solution__phone {
    left: 50%;
    top: clamp(-4rem, -7vw, -5rem);
    transform: translateX(-58%) rotate(-10deg);
    width: auto;
  }

  .dh-solution__phone img {
    height: clamp(380px, 62vw, 480px);
  }

  .dh-solution__copy {
    grid-column: 1;
    text-align: center;
  }

  .dh-solution__copy h2 {
    font-size: clamp(2rem, 6vw, 50px);
  }

  .dh-solution__lead,
  .dh-solution__body {
    font-size: clamp(1rem, 2.5vw, 18px);
  }

  .dh-features__intro {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .dh-features__phone img {
    max-width: 260px;
    margin: 0 auto;
  }

  .dh-features__geofence-copy {
    align-self: auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    max-width: none;
  }

  .dh-features__resident {
    justify-self: stretch;
  }

  .dh-features__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .dh-features__item--offline,
  .dh-features__item--institution,
  .dh-features__item--role,
  .dh-features__item--holiday,
  .dh-features__item--highlight {
    grid-column: 1;
    grid-row: auto;
    align-self: auto;
    justify-self: stretch;
  }

  .dh-features__item h3,
  .dh-features__item--highlight h3,
  .dh-features__item-title--single {
    white-space: normal;
  }

  .dh-features__geofence-copy h3,
  .dh-features__resident-card h3,
  .dh-features__item h3 {
    font-size: clamp(1.35rem, 4vw, 30px);
  }

  .dh-features__geofence-copy p,
  .dh-features__resident-card p,
  .dh-features__item p {
    font-size: clamp(1rem, 2.5vw, 18px);
  }

  .dh-features__resident-card h3 {
    white-space: normal;
  }

  .dh-admin__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dh-admin__copy h2 {
    font-size: clamp(1.5rem, 4vw, 30px);
  }

  .dh-admin__copy p {
    font-size: clamp(1rem, 2.5vw, 18px);
  }

  .dh-built__block,
  .dh-built__block--text-right {
    grid-template-columns: 1fr;
  }

  .dh-built__block--text-right .dh-built__visual {
    order: 0;
  }

  .dh-built__block--intro .dh-built__visual {
    width: min(100%, var(--dh-visual-width));
    margin-inline: auto;
  }

  .dh-built__block--dev-launch {
    width: calc(100% + var(--dh-built-pad-x));
    margin-left: calc(-1 * var(--dh-built-pad-x));
  }

  .dh-built__phones--dev-launch {
    width: 100%;
    min-height: clamp(18rem, 62vw, 26rem);
    margin-inline: 0;
  }

  .dh-built__phones--dev-launch .dh-built__phone {
    height: clamp(13.5rem, 40vw, 21rem);
  }

  .dh-built__phones--dev-launch .dh-built__phone--splash {
    height: clamp(14.5rem, 42vw, 22.5rem);
  }

  .dh-built__visual--intro {
    min-height: 0;
  }

  .dh-built__visual {
    margin-top: 1rem;
  }

  .dh-built__step-body h3 {
    font-size: clamp(1.35rem, 4vw, 30px);
  }

  .dh-built__step-body p,
  .dh-built__lead {
    font-size: clamp(1rem, 2.5vw, 18px);
  }
}

@media (max-width: 640px) {
  .dh-hero__brand {
    padding-bottom: 6rem;
  }

  .dh-problem__grid {
    grid-template-columns: 1fr;
  }

  .dh-problem__photo img {
    min-height: 0;
  }

  .dh-admin__copy h2 {
    font-size: clamp(1.5rem, 4vw, 30px);
  }

  .dh-admin__copy p {
    font-size: clamp(1rem, 2.5vw, 18px);
  }
}
