.specs {
  width: 100%;
  padding: 0.75rem;
  background: var(--bg);
}

.specs__intro {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 28rem;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(0.75rem, 2.5vw, 2rem)
    clamp(1.5rem, 3vw, 2.25rem);
}

.specs__label {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: rgba(20, 20, 20, 0.42);
}

.specs__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}

.specs__card {
  position: relative;
  width: 100%;
  min-height: min(72dvh, 38rem);
  overflow: hidden;
  border-radius: 1.15rem;
  background: #ecece8;
}

.specs__media {
  position: absolute;
  inset: auto;
  top: 0;
  left: 50%;
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: unset;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}

.specs__sheet {
  width: 100%;
  margin-top: 0.75rem;
  border-radius: 1.15rem;
  background: #ecece8;
}

.specs__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 3vw, 2.5rem);
}

.specs__list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.specs__key {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  color: rgba(20, 20, 20, 0.42);
}

.specs__val {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}

@media (max-width: 820px) {
  .specs {
    padding: 0.55rem;
  }

  .specs__card {
    min-height: 0;
    height: auto;
    border-radius: 0.9rem;
  }

  .specs__media {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .specs__sheet {
    margin-top: 0.55rem;
    border-radius: 0.9rem;
  }

  .specs__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem 1.35rem;
    padding: 1.25rem 1.1rem 1.5rem;
  }
}

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