
.humanized-collagen-types {
  --hct-ink: #092f4d;
  --hct-muted: #557185;
  --hct-line: rgba(9, 47, 77, 0.14);
  --hct-surface: #ffffff;
  --hct-canvas: #edf5f3;
  --hct-accent: #6db49e;
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8.25rem) max(1.5rem, calc((100vw - 1380px) / 2));
  background:
    radial-gradient(circle at 91% 12%, rgba(109, 180, 158, 0.20), transparent 23rem),
    linear-gradient(135deg, #f8fbfa 0%, var(--hct-canvas) 100%);
  color: var(--hct-ink);
}

.humanized-collagen-types::before,
.humanized-collagen-types::after {
  position: absolute;
  content: "";
  width: clamp(12rem, 22vw, 23rem);
  aspect-ratio: 1;
  border: 1px solid rgba(9, 47, 77, 0.10);
  border-radius: 50%;
  pointer-events: none;
}

.humanized-collagen-types::before {
  top: -10rem;
  right: -7rem;
}

.humanized-collagen-types::after {
  bottom: -15rem;
  left: -10rem;
}

.hct-shell {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
}

.hct-header {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: 2.5rem 6rem;
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--hct-line);
}

.hct-kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  color: #31647a;
  font: 500 0.67rem/1.3 "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hct-kicker::before {
  display: block;
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.hct-title {
  max-width: none;
  margin: 0;
  color: var(--hct-ink);
  font: 400 clamp(2rem, 3.85vw, 4rem)/0.98 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.045em;
}

.hct-intro {
  max-width: 33rem;
  margin: 0 0 0.35rem;
  color: var(--hct-muted);
  font: 400 clamp(0.98rem, 1.35vw, 1.13rem)/1.75 "Manrope", sans-serif;
}

.hct-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--hct-line);
  border: 1px solid var(--hct-line);
}

.hct-card {
  display: flex;
  min-height: 18rem;
  flex-direction: column;
  padding: clamp(1.4rem, 2.15vw, 2rem);
  background: var(--hct-surface);
  transition: transform 180ms cubic-bezier(0.23, 1, 0.32, 1), background-color 180ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.hct-card:nth-child(5),
.hct-card:nth-child(6),
.hct-card:nth-child(7) {
  min-height: 17rem;
}

.hct-card:hover,
.hct-card:focus-within {
  position: relative;
  z-index: 1;
  background: #fafdff;
  box-shadow: 0 1rem 2.5rem rgba(9, 47, 77, 0.09);
  transform: translateY(-0.35rem);
}

.hct-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--hct-line);
}

.hct-type {
  margin: 0;
  color: var(--hct-ink);
  font: 400 clamp(1.45rem, 1.8vw, 2rem)/1 "DM Serif Display", Georgia, serif;
  letter-spacing: -0.03em;
}

.hct-index {
  color: var(--hct-accent);
  font: 500 0.62rem/1 "DM Mono", monospace;
  letter-spacing: 0.12em;
}

.hct-facts {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 0;
}

.hct-fact {
  margin: 0;
}

.hct-fact dt {
  margin: 0 0 0.32rem;
  color: #518093;
  font: 500 0.59rem/1.4 "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hct-fact dd {
  margin: 0;
  color: #183d58;
  font: 500 clamp(0.78rem, 0.86vw, 0.91rem)/1.52 "Manrope", sans-serif;
}

html[dir="rtl"] .hct-kicker,
html[dir="rtl"] .hct-card-top {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hct-fact,
html[dir="rtl"] .hct-intro,
html[dir="rtl"] .hct-title {
  text-align: right;
}

@media (max-width: 1080px) {
  .hct-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hct-card:nth-child(8) {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .humanized-collagen-types {
    padding-inline: 1rem;
  }

  .hct-header {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .hct-title {
    max-width: 11ch;
  }

  .hct-intro {
    margin: 0;
  }

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

  
  .hct-card:nth-child(8) {
    grid-column: span 1;
  }

  .hct-card,
  .hct-card:nth-child(5),
  .hct-card:nth-child(6),
  .hct-card:nth-child(7) {
    min-height: 17.3rem;
    padding: 1.2rem;
  }

}

@media (max-width: 440px) {
  .hct-grid {
    grid-template-columns: 1fr;
  }

  .hct-card,
  .hct-card:nth-child(5),
  .hct-card:nth-child(6),
  .hct-card:nth-child(7) {
    min-height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hct-card {
    transition: none;
  }
}
