.products-section {
  padding-block: clamp(82px, 10vw, 128px);
  background: var(--color-tan);
}

.products-section h2 {
  max-width: 720px;
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.12;
}

.products-intro {
  max-width: 690px;
  margin-top: 24px;
  color: rgba(36, 36, 33, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.products-intro strong {
  color: var(--color-ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 58px;
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  background: var(--color-card);
  box-shadow: var(--shadow-chunky);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 240px;
  border-bottom: 2px solid var(--color-ink);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image span {
  position: absolute;
  top: 16px;
  left: 16px;
  border: 2px solid var(--color-ink);
  border-radius: 5px;
  padding: 5px 10px;
  background: var(--color-amber);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  flex: 1;
  padding: 28px;
}

.product-body h3 {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.product-body > p:not(.product-type) {
  margin-top: 18px;
  color: rgba(36, 36, 33, 0.72);
  font-size: 17px;
  line-height: 1.64;
}

.product-body ul {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 700;
}

.product-body li {
  position: relative;
  padding-left: 30px;
}

.product-body li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid var(--color-ink);
  border-radius: 5px;
  content: "✓";
  background: var(--color-amber);
  color: var(--color-ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.product-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 2px solid rgba(36, 36, 33, 0.1);
  padding: 20px 28px 24px;
  color: rgba(36, 36, 33, 0.62);
  font-weight: 700;
}

.product-card footer a {
  color: var(--color-ink);
  font-weight: 900;
}

.product-card footer a:hover,
.product-card footer a:focus-visible {
  color: var(--color-amber-dark);
}

.products-note {
  margin-top: 42px;
  color: rgba(36, 36, 33, 0.56);
  font-size: 18px;
  font-style: italic;
}

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

@media (max-width: 560px) {
  .product-card footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
