/*
 * DetwilerTech homepage v2
 * Scoped to .dt-home so product, blog and contact templates remain unchanged.
 */
.dt-home {
  --dt-blue: #1d4ed8;
  --dt-blue-dark: #123a9f;
  --dt-gold: #c89b3c;
  --dt-ink: #101828;
  --dt-steel: #475467;
  --dt-muted: #667085;
  --dt-line: #e4e7ec;
  --dt-soft: #f6f8fb;
  --dt-white: #fff;
  overflow: hidden;
  color: var(--dt-ink);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

.dt-home a {
  text-decoration: none;
}

.dt-home img {
  display: block;
  width: 100%;
}

.dt-home-shell {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
}

.dt-home-section {
  padding: 104px 0;
}

.dt-home-section--soft {
  background: var(--dt-soft);
}

.dt-home-eyebrow {
  margin: 0 0 16px;
  color: var(--dt-blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.dt-home h1,
.dt-home h2,
.dt-home h3,
.dt-home p {
  font-family: inherit;
}

.dt-home h1,
.dt-home h2,
.dt-home h3 {
  color: var(--dt-ink);
  letter-spacing: -.025em;
}

.dt-home h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(40px, 4.35vw, 64px);
  font-weight: 760;
  line-height: 1.07;
}

.dt-home h2 {
  max-width: 820px;
  margin: 0 0 20px;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 730;
  line-height: 1.12;
}

.dt-home h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.dt-home p {
  margin: 0;
  color: var(--dt-steel);
}

.dt-home-heading {
  margin-bottom: 48px;
}

.dt-home-heading--row {
  display: flex;
  gap: 40px;
  align-items: flex-end;
  justify-content: space-between;
}

.dt-home-heading--row > div {
  max-width: 840px;
}

.dt-home-heading--row > div > p:last-child {
  max-width: 720px;
  font-size: 18px;
}

.dt-home-heading--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dt-home-text-link {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  align-items: center;
  color: var(--dt-blue);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.dt-home-text-link span {
  transition: transform .22s ease;
}

.dt-home-text-link:hover,
.dt-home-text-link:focus-visible {
  color: var(--dt-blue-dark);
}

.dt-home-text-link:hover span,
.dt-home-text-link:focus-visible span {
  transform: translateX(4px);
}

.dt-home-btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 24px;
  border: 1px solid transparent;
  align-items: center;
  justify-content: center;
  color: var(--dt-white);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}

.dt-home-btn:hover,
.dt-home-btn:focus-visible {
  color: var(--dt-white);
  transform: translateY(-2px);
}

.dt-home-btn--primary {
  background: var(--dt-blue);
}

.dt-home-btn--primary:hover,
.dt-home-btn--primary:focus-visible {
  background: var(--dt-blue-dark);
}

.dt-home-btn--ghost {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(10, 18, 35, .24);
  backdrop-filter: blur(8px);
}

.dt-home-btn--ghost:hover,
.dt-home-btn--ghost:focus-visible {
  border-color: var(--dt-white);
  background: rgba(255, 255, 255, .12);
}

.dt-home-btn--gold {
  background: var(--dt-gold);
  color: #15120b;
}

.dt-home-btn--gold:hover,
.dt-home-btn--gold:focus-visible {
  background: #ddb34f;
  color: #15120b;
}

/* Hero */
.dt-home-hero {
  position: relative;
  min-height: clamp(500px, 58vh, 640px);
  isolation: isolate;
}

.dt-home-hero__media,
.dt-home-hero__media img,
.dt-home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.dt-home-hero__media {
  z-index: -2;
}

.dt-home-hero__media img {
  object-fit: cover;
  object-position: 62% center;
}

.dt-home-hero__shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 15, 30, .96) 0%, rgba(7, 15, 30, .86) 38%, rgba(7, 15, 30, .35) 67%, rgba(7, 15, 30, .08) 100%),
    linear-gradient(0deg, rgba(7, 15, 30, .28), transparent 38%);
}

.dt-home-hero__content {
  display: flex;
  min-height: inherit;
  padding-top: 56px;
  padding-bottom: 64px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.dt-home-hero .dt-home-eyebrow {
  color: #c9d8ff;
}

.dt-home-hero h1 {
  color: var(--dt-white);
}

.dt-home .dt-home-hero__lead {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.6;
}

.dt-home-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.dt-home-hero__proof {
  display: flex;
  margin: 24px 0 0;
  padding: 0;
  gap: 12px 28px;
  flex-wrap: wrap;
  list-style: none;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.dt-home-hero__proof li {
  position: relative;
  padding-left: 18px;
}

.dt-home-hero__proof li::before {
  position: absolute;
  top: .64em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dt-gold);
  content: "";
}

/* Quick paths */
.dt-home-paths {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 26px 0 28px;
  border-bottom: 1px solid var(--dt-line);
  background: var(--dt-soft);
}

.dt-home-paths__grid {
  display: grid;
  border: 0;
  gap: 16px;
  background: transparent;
  box-shadow: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dt-home-path {
  display: grid;
  min-height: 112px;
  padding: 20px 22px;
  border: 1px solid var(--dt-line);
  gap: 16px;
  align-items: center;
  background: var(--dt-white);
  box-shadow: 0 8px 24px rgba(16, 24, 40, .055);
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.dt-home-path:last-child {
  border-right: 1px solid var(--dt-line);
}

.dt-home-path:hover,
.dt-home-path:focus-visible {
  border-color: #aabfff;
  box-shadow: 0 14px 30px rgba(29, 78, 216, .11);
  transform: translateY(-3px);
}

.dt-home-path__number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border: 1px solid #d7e2ff;
  align-items: center;
  justify-content: center;
  background: #eef3ff;
  color: var(--dt-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.dt-home-path strong,
.dt-home-path small {
  display: block;
}

.dt-home-path strong {
  color: var(--dt-ink);
  font-size: 15px;
  line-height: 1.35;
}

.dt-home-path small {
  margin-top: 5px;
  color: var(--dt-muted);
  font-size: 12px;
  line-height: 1.45;
}

.dt-home-path__arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border: 1px solid var(--dt-line);
  align-items: center;
  justify-content: center;
  background: #fbfcfe;
  color: var(--dt-blue);
  font-size: 17px;
}

/* Catalogue */
.dt-home-category-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dt-home-category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dt-line);
  background: var(--dt-white);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.dt-home-category-card:hover,
.dt-home-category-card:focus-visible {
  border-color: #b4c8ff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, .1);
  transform: translateY(-4px);
}

.dt-home-category-card__image {
  display: flex;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 20px;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.dt-home-category-card__image img {
  height: 100%;
  object-fit: contain;
  transition: transform .32s ease;
}

.dt-home-category-card:hover .dt-home-category-card__image img {
  transform: scale(1.045);
}

.dt-home-category-card__fallback,
.dt-home-product-card__fallback {
  color: #98a2b3;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .14em;
}

.dt-home-category-card__body {
  display: block;
  min-height: 90px;
  padding: 20px 50px 20px 20px;
  border-top: 1px solid var(--dt-line);
}

.dt-home-category-card__body strong,
.dt-home-category-card__body small {
  display: block;
}

.dt-home-category-card__body strong {
  color: var(--dt-ink);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.dt-home-category-card__body small {
  margin-top: 6px;
  color: var(--dt-muted);
  font-size: 12px;
}

.dt-home-category-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 25px;
  color: var(--dt-blue);
  font-size: 19px;
}

/* Product cards */
.dt-home-product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dt-home-product-card {
  overflow: hidden;
  border: 1px solid var(--dt-line);
  background: var(--dt-white);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.dt-home-product-card:hover {
  border-color: #b4c8ff;
  box-shadow: 0 16px 36px rgba(16, 24, 40, .09);
  transform: translateY(-4px);
}

.dt-home-product-card__image {
  --dt-home-product-image-padding: 18px;
  position: relative;
  display: flex;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: var(--dt-home-product-image-padding);
  align-items: center;
  justify-content: center;
  background: var(--dt-white);
}

.dt-home-product-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  object-fit: contain;
  transition: opacity .22s ease, transform .3s ease;
}

.dt-home-product-card:hover .dt-home-product-card__primary,
.dt-home-product-card:focus-within .dt-home-product-card__primary {
  transform: scale(1.03);
}

.dt-home-product-card__image .dt-home-product-card__hover {
  position: absolute;
  z-index: 1;
  inset: var(--dt-home-product-image-padding);
  width: auto;
  height: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.985);
  transition: opacity .22s ease, transform .3s ease, visibility 0s linear .22s;
}

.dt-home-product-card.has-hover-image:hover .dt-home-product-card__primary,
.dt-home-product-card.has-hover-image:focus-within .dt-home-product-card__primary {
  opacity: 0;
  transform: scale(1);
}

.dt-home-product-card.has-hover-image:hover .dt-home-product-card__hover,
.dt-home-product-card.has-hover-image:focus-within .dt-home-product-card__hover {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

.dt-home-product-card__body {
  display: flex;
  flex-direction: column;
  min-height: 154px;
  padding: 20px;
  border-top: 1px solid var(--dt-line);
}

.dt-home-product-card__body > span {
  display: block;
  overflow: hidden;
  min-height: 16px;
  margin-bottom: 8px;
  color: var(--dt-blue);
  font-size: 11px;
  font-weight: 800;
  line-height: 16px;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.dt-home-product-card h3 {
  display: -webkit-box;
  overflow: hidden;
  flex: 0 0 48px;
  height: 48px;
  max-height: 48px;
  margin: 0;
  font-size: 15px;
  line-height: 24px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.dt-home-product-card h3 a {
  color: var(--dt-ink);
}

.dt-home-product-card__link {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 16px;
  color: var(--dt-blue);
  font-size: 13px;
  font-weight: 750;
}

/* Capability sections */
.dt-home-split__grid {
  display: grid;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
}

.dt-home-split__grid--reverse {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.dt-home-split__content > p:not(.dt-home-eyebrow) {
  max-width: 660px;
  font-size: 17px;
}

.dt-home-visual {
  position: relative;
  margin: 0;
}

.dt-home-visual picture {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8edf5;
}

.dt-home-visual img {
  height: 100%;
  object-fit: cover;
}

.dt-home-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 6px 9px;
  background: rgba(10, 18, 35, .72);
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  letter-spacing: .03em;
  line-height: 1.35;
}

.dt-home-visual--offset::before {
  position: absolute;
  z-index: -1;
  top: 28px;
  left: -28px;
  width: 62%;
  height: 100%;
  background: #e8efff;
  content: "";
}

.dt-home-process {
  margin: 34px 0 30px;
  padding: 0;
  list-style: none;
}

.dt-home-process li {
  display: grid;
  padding: 18px 0;
  border-top: 1px solid var(--dt-line);
  gap: 18px;
  grid-template-columns: 42px 1fr;
}

.dt-home-process li:last-child {
  border-bottom: 1px solid var(--dt-line);
}

.dt-home-process li > span {
  color: var(--dt-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.dt-home-process strong,
.dt-home-process small {
  display: block;
}

.dt-home-process strong {
  color: var(--dt-ink);
  font-size: 15px;
}

.dt-home-process small {
  margin-top: 4px;
  color: var(--dt-muted);
  font-size: 13px;
  line-height: 1.5;
}

.dt-home-section--ink {
  background: var(--dt-ink);
}

.dt-home-section--ink h2,
.dt-home-section--ink .dt-home-split__content > p {
  color: var(--dt-white);
}

.dt-home-section--ink .dt-home-split__content > p:not(.dt-home-eyebrow) {
  color: rgba(255, 255, 255, .7);
}

.dt-home-section--ink .dt-home-eyebrow {
  color: #9bb7ff;
}

.dt-home-oem-grid {
  display: grid;
  margin: 32px 0 36px;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dt-home-oem-grid span {
  position: relative;
  padding: 13px 14px 13px 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
}

.dt-home-oem-grid span::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dt-gold);
  content: "";
  transform: translateY(-50%);
}

.dt-home-equipment {
  display: flex;
  margin-top: 32px;
  gap: 10px;
  flex-wrap: wrap;
}

.dt-home-equipment span,
.dt-home-application__tags span {
  padding: 9px 13px;
  border: 1px solid #ccd6e5;
  background: #f8fafc;
  color: #344054;
  font-size: 12px;
  font-weight: 700;
}

.dt-home-note {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 3px solid var(--dt-gold);
  color: var(--dt-muted);
  font-size: 13px;
}

/* Applications */
.dt-home-application {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--dt-line);
  background: var(--dt-white);
  grid-template-columns: .82fr 1.18fr;
}

.dt-home-application__content {
  display: flex;
  padding: clamp(38px, 5vw, 72px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.dt-home-application__tags {
  display: flex;
  margin: 30px 0;
  gap: 9px;
  flex-wrap: wrap;
}

.dt-home-application .dt-home-visual picture {
  height: 100%;
  aspect-ratio: auto;
}

.dt-home-application .dt-home-visual {
  min-height: 520px;
}

/* Proof and closing CTA */
.dt-home-proof {
  padding: 88px 0;
  background: var(--dt-white);
}

.dt-home-proof__grid {
  display: grid;
  border: 1px solid var(--dt-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dt-home-proof__grid > div {
  min-height: 174px;
  padding: 30px;
  border-right: 1px solid var(--dt-line);
  text-align: center;
}

.dt-home-proof__grid > div:last-child {
  border-right: 0;
}

.dt-home-proof__grid strong,
.dt-home-proof__grid span {
  display: block;
}

.dt-home-proof__grid strong {
  color: var(--dt-blue);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 780;
  letter-spacing: -.04em;
  line-height: 1;
}

.dt-home-proof__grid span {
  margin-top: 14px;
  color: var(--dt-steel);
  font-size: 13px;
  line-height: 1.45;
}

.dt-home-cta {
  padding: 72px 0;
  background: #0c1d43;
}

.dt-home-cta__inner {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.dt-home-cta h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: var(--dt-white);
}

.dt-home-cta p:not(.dt-home-eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .68);
}

.dt-home-cta .dt-home-eyebrow {
  color: #a8bfff;
}

.dt-home-mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .dt-home-category-grid,
  .dt-home-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dt-home-path {
    padding-inline: 22px;
  }

  .dt-home-split__grid,
  .dt-home-split__grid--reverse {
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .dt-home-section {
    padding: 80px 0;
  }

  .dt-home-paths {
    margin-top: 0;
    padding: 18px 0;
  }

  .dt-home-paths__grid {
    width: 100%;
    gap: 12px;
    box-shadow: none;
    grid-template-columns: 1fr;
  }

  .dt-home-path {
    min-height: 94px;
    border: 1px solid var(--dt-line);
  }

  .dt-home-path:last-child {
    border: 1px solid var(--dt-line);
  }

  .dt-home-category-grid,
  .dt-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dt-home-split__grid,
  .dt-home-split__grid--reverse,
  .dt-home-application {
    grid-template-columns: 1fr;
  }

  .dt-home-section--ink .dt-home-split__content {
    order: 2;
  }

  .dt-home-application .dt-home-visual {
    min-height: 420px;
  }

  .dt-home-proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dt-home-proof__grid > div:nth-child(2) {
    border-right: 0;
  }

  .dt-home-proof__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--dt-line);
  }

  .dt-home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .dt-home {
    padding-bottom: 60px;
  }

  .dt-home-shell {
    width: min(100% - 32px, 1320px);
  }

  .dt-home-section {
    padding: 64px 0;
  }

  .dt-home h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.2vw, 46px);
    overflow-wrap: anywhere;
  }

  .dt-home h2 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .dt-home-heading {
    margin-bottom: 34px;
  }

  .dt-home-heading--row {
    gap: 20px;
    align-items: flex-start;
    flex-direction: column;
  }

  .dt-home-heading--row > div > p:last-child {
    font-size: 16px;
  }

  .dt-home-hero {
    min-height: 620px;
  }

  .dt-home-hero__media img {
    object-position: 70% center;
  }

  .dt-home-hero__shade {
    background: linear-gradient(90deg, rgba(7, 15, 30, .96) 0%, rgba(7, 15, 30, .83) 70%, rgba(7, 15, 30, .52) 100%);
  }

  .dt-home-hero__content {
    padding-top: 48px;
    padding-bottom: 54px;
    justify-content: center;
  }

  .dt-home-hero__lead {
    margin-top: 22px;
    font-size: 17px;
  }

  .dt-home-actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
  }

  .dt-home-actions .dt-home-btn {
    width: 100%;
  }

  .dt-home-hero__proof {
    gap: 8px;
    flex-direction: column;
  }

  .dt-home-path {
    min-height: 92px;
    padding: 16px 14px;
    gap: 12px;
    grid-template-columns: 36px minmax(0, 1fr) 30px;
  }

  .dt-home-path__number {
    width: 36px;
    height: 36px;
  }

  .dt-home-path__arrow {
    width: 30px;
    height: 30px;
  }

  .dt-home-category-grid,
  .dt-home-product-grid {
    gap: 12px;
  }

  .dt-home-category-card__image {
    padding: 10px;
  }

  .dt-home-category-card__body {
    min-height: 92px;
    padding: 14px 34px 14px 12px;
  }

  .dt-home-category-card__body strong {
    font-size: 13px;
  }

  .dt-home-category-card__arrow {
    right: 12px;
    bottom: 20px;
  }

  .dt-home-product-card__image {
    --dt-home-product-image-padding: 10px;
  }

  .dt-home-product-card__body {
    min-height: 148px;
    padding: 14px 12px;
  }

  .dt-home-product-card h3 {
    font-size: 13px;
  }

  .dt-home-split__grid,
  .dt-home-split__grid--reverse {
    gap: 36px;
  }

  .dt-home-split__content > p:not(.dt-home-eyebrow) {
    font-size: 16px;
  }

  .dt-home-visual--offset::before {
    top: 14px;
    left: -14px;
  }

  .dt-home-oem-grid {
    grid-template-columns: 1fr;
  }

  .dt-home-application__content {
    padding: 32px 24px;
  }

  .dt-home-application .dt-home-visual {
    min-height: 300px;
  }

  .dt-home-proof {
    padding: 64px 0;
  }

  .dt-home-proof__grid > div {
    min-height: 146px;
    padding: 24px 14px;
  }

  .dt-home-cta {
    padding: 56px 0;
  }

  .dt-home-mobile-cta {
    position: fixed;
    z-index: 9998;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    background: var(--dt-blue);
    box-shadow: 0 12px 30px rgba(16, 24, 40, .28);
    color: var(--dt-white);
    font-size: 14px;
    font-weight: 780;
  }
}

@media (max-width: 420px) {
  .dt-home-category-grid,
  .dt-home-product-grid {
    grid-template-columns: 1fr;
  }

  .dt-home-category-card__image {
    aspect-ratio: 16 / 10;
  }

  .dt-home-product-card__image {
    aspect-ratio: 4 / 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dt-home *,
  .dt-home *::before,
  .dt-home *::after {
    scroll-behavior: auto;
    transition-duration: .01ms;
  }
}
