.dc-home-hero {
  overflow: hidden;
  background: var(--dc-surface, #f5f7fa);
}

.dc-home-hero__link,
.dc-home-hero__picture,
.dc-home-hero__image {
  display: block;
  width: 100%;
}

.dc-home-hero__link:focus-visible {
  outline-offset: -4px;
}

.dc-home-hero__image {
  height: auto;
  object-fit: cover;
}

.dc-home-categories {
  padding: 36px 0 42px;
  background: var(--dc-white, #fff);
}

.dc-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.dc-section-heading__title {
  margin: 0;
  color: var(--dc-ink, #172033);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.dc-section-heading__text {
  max-width: 620px;
  margin: 0;
  color: var(--dc-muted, #667085);
}

.dc-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.dc-category-tile {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--dc-ink, #172033);
  background: var(--dc-surface, #f5f7fa);
  border: 1px solid var(--dc-border, #dce3ea);
  border-radius: 8px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.dc-category-tile:hover,
.dc-category-tile:focus-visible {
  color: var(--dc-navy, #1d477f);
  border-color: var(--dc-cyan, #24b9d7);
  box-shadow: var(--dc-shadow-md, 0 10px 28px rgba(23, 32, 51, 0.12));
  transform: translateY(-2px);
}

.dc-category-tile--sale {
  background: var(--dc-danger-soft, #fff1f2);
  border-color: var(--dc-magenta, #cf3f86);
}

.dc-category-tile__media {
  aspect-ratio: 1.35 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--dc-white, #fff);
}

.dc-category-tile__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dc-category-tile__placeholder {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-white, #fff);
  background: var(--dc-navy, #1d477f);
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 800;
}

.dc-category-tile__body {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
}

.dc-category-tile__name {
  overflow-wrap: anywhere;
  font-weight: 750;
  line-height: 1.25;
}

.dc-category-tile__arrow {
  flex: 0 0 auto;
  color: var(--dc-cyan-dark, #118aa5);
}

.dc-service-band {
  padding: 22px 0;
  color: var(--dc-white, #fff);
  background: var(--dc-navy, #1d477f);
}

.dc-service-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dc-service-band__item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dc-service-band__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dc-navy-dark, #15345f);
  background: var(--dc-white, #fff);
  border-radius: 8px;
}

.dc-service-band__title,
.dc-service-band__text {
  display: block;
}

.dc-service-band__title {
  font-weight: 800;
}

.dc-service-band__text {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
}

@media (max-width: 1199.98px) {
  .dc-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .dc-home-hero__image {
    height: clamp(280px, 78vw, 360px);
    object-position: left center;
  }

  .dc-home-categories {
    padding: 26px 0 32px;
  }

  .dc-section-heading {
    display: block;
    margin-bottom: 18px;
  }

  .dc-section-heading__text {
    margin-top: 6px;
  }

  .dc-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .dc-category-tile__media {
    padding: 10px;
  }

  .dc-category-tile__body {
    min-height: 58px;
    padding: 9px 10px;
  }

  .dc-category-tile__name {
    font-size: 0.875rem;
  }

  .dc-category-tile__arrow {
    display: none;
  }

  .dc-service-band__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dc-category-tile {
    transition: none;
  }
}
