.returns-page {
  background: linear-gradient(180deg, #fff 0%, #fffaf7 62%, #fff 100%);
}

.returns-hero {
  border-bottom: 1px solid #eadcd5;
  background:
    radial-gradient(circle at 82% 16%, rgba(216, 132, 128, .16), transparent 30%),
    linear-gradient(105deg, #fff 0%, #fff7f4 55%, #f3dfd8 100%);
}

.returns-hero-grid {
  min-height: 340px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: center;
  padding: 56px 0;
}

.returns-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #f5dad7;
  color: #bb6764;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.returns-hero h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
  color: #302b28;
}

.returns-hero p {
  max-width: 680px;
  margin: 0;
  color: #403833;
  font-size: 19px;
  line-height: 1.55;
}

.returns-hero-card {
  border: 1px solid #eadcd5;
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 60px rgba(79, 48, 35, .12);
  padding: 28px;
}

.returns-hero-card b {
  display: block;
  margin-bottom: 10px;
  color: #bb6764;
  font-size: 44px;
  line-height: 1;
}

.returns-hero-card span {
  color: #5e544f;
  line-height: 1.55;
}

.returns-content {
  padding: 48px 0 72px;
}

.returns-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.returns-card,
.returns-note,
.returns-owner {
  border: 1px solid #eadcd5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(79, 48, 35, .07);
}

.returns-card,
.returns-note {
  padding: 26px;
}

.returns-card h2,
.returns-note h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 500;
  color: #302b28;
}

.returns-card p,
.returns-card li,
.returns-note p {
  color: #514842;
  font-size: 16px;
  line-height: 1.65;
}

.returns-card p {
  margin: 0 0 12px;
}

.returns-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.returns-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}

.returns-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d88480;
}

.returns-note {
  margin-top: 24px;
  background: linear-gradient(105deg, #fff, #fff7f4 62%, #f5dad7);
}

.returns-owner {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}

.returns-owner div {
  padding: 20px;
  border-right: 1px solid #eadcd5;
}

.returns-owner div:last-child {
  border-right: 0;
}

.returns-owner span {
  display: block;
  margin-bottom: 6px;
  color: #9a6b67;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.returns-owner b,
.returns-owner a {
  color: #302b28;
  line-height: 1.5;
}

@media (max-width: 920px) {
  .returns-hero-grid,
  .returns-grid,
  .returns-owner {
    grid-template-columns: 1fr;
  }

  .returns-hero-card {
    max-width: 420px;
  }

  .returns-owner div {
    border-right: 0;
    border-bottom: 1px solid #eadcd5;
  }

  .returns-owner div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .returns-hero-grid {
    padding: 34px 0;
    gap: 28px;
  }

  .returns-hero p {
    font-size: 16px;
  }

  .returns-card,
  .returns-note,
  .returns-owner div {
    padding: 20px;
  }
}
