.dchcc-section,
.dchcc-section * {
  box-sizing: border-box;
}

.dchcc-section {
  width: 100%;
  max-width: 1390px;
  margin: 54px auto 72px;
  padding: 0 24px;
}

.dchcc-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 23px;
  margin: 0 0 31px;
  color: #16130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3vw, 41px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
}

.dchcc-heading::before,
.dchcc-heading::after {
  display: block;
  width: 86px;
  height: 1px;
  flex: 0 0 86px;
  background: #9f6339;
  content: "";
}

.dchcc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 20px;
}

.dchcc-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(80, 55, 35, 0.05);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(44, 31, 20, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dchcc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(44, 31, 20, 0.16);
}

.dchcc-image-link {
  display: block;
  overflow: hidden;
  background: #f5eee7;
  text-decoration: none;
}

.dchcc-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.04;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms ease;
}

.dchcc-card:hover .dchcc-image {
  transform: scale(1.018);
}

.dchcc-content {
  min-height: 88px;
  padding: 16px 21px 18px;
  background: #fff;
}

.dchcc-card-title {
  overflow: hidden;
  margin: 0 0 8px;
  color: #211b16;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.018em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dchcc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9c5c31 !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none !important;
}

.dchcc-cta:hover,
.dchcc-cta:focus {
  color: #7e4321 !important;
  text-decoration: none !important;
}

.dchcc-arrow {
  display: inline-block;
  font-size: 21px;
  font-weight: 300;
  line-height: 0.7;
  transition: transform 180ms ease;
}

.dchcc-cta:hover .dchcc-arrow,
.dchcc-cta:focus .dchcc-arrow {
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .dchcc-section {
    margin-top: 46px;
  }

  .dchcc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 575px) {
  .dchcc-section {
    margin: 38px auto 52px;
    padding: 0 16px;
  }

  .dchcc-heading {
    gap: 13px;
    margin-bottom: 24px;
    font-size: 29px;
  }

  .dchcc-heading::before,
  .dchcc-heading::after {
    width: 42px;
    flex-basis: 42px;
  }

  .dchcc-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dchcc-content {
    min-height: 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dchcc-card,
  .dchcc-image,
  .dchcc-arrow {
    transition: none;
  }
}
