.editorial-page {
  color: #2a2622;
}

.editorial-lead {
  max-width: 70ch;
  font-size: 1.05rem;
  line-height: 1.75;
}

.editorial-section {
  margin-top: 3.5rem;
}

.editorial-grid,
.editorial-product-grid,
.editorial-link-grid {
  display: grid;
  gap: 1rem;
}

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

.editorial-product-grid,
.editorial-link-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-card,
.editorial-product-card,
.editorial-note,
.editorial-contact-panel,
.editorial-link-card {
  border: 1px solid #ded6cb;
  border-radius: 18px;
  background: #fffdfa;
}

.editorial-card,
.editorial-note,
.editorial-contact-panel,
.editorial-link-card {
  padding: 1.35rem;
}

.editorial-card h3,
.editorial-product-card h3,
.editorial-link-card h3 {
  margin: 0 0 0.6rem;
}

.editorial-card p,
.editorial-product-card p,
.editorial-note p,
.editorial-contact-panel p,
.editorial-link-card p {
  margin: 0;
  line-height: 1.65;
}

.editorial-ordered-list,
.editorial-check-list {
  margin: 1rem 0 0;
  padding-left: 1.3rem;
}

.editorial-ordered-list li,
.editorial-check-list li {
  margin: 0.7rem 0;
  line-height: 1.6;
}

.editorial-product-card {
  overflow: hidden;
}

.editorial-product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #f3eee7;
}

.editorial-product-body {
  padding: 1.2rem;
}

.editorial-product-body a,
.editorial-link-card a,
.editorial-text-link {
  color: #6d281f;
  font-weight: 750;
  text-underline-offset: 0.2em;
}

.editorial-table-wrap {
  overflow-x: auto;
  border: 1px solid #ded6cb;
  border-radius: 18px;
  background: #fffdfa;
}

.editorial-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.editorial-table th,
.editorial-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #e8e1d8;
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.editorial-table th {
  background: #f5efe7;
}

.editorial-table tr:last-child th,
.editorial-table tr:last-child td {
  border-bottom: 0;
}

.editorial-note {
  margin-top: 1.25rem;
  background: #f7f1e8;
}

.editorial-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.5rem;
  background: #2e2a26;
  color: #fff;
}

.editorial-contact-panel h2 {
  margin: 0 0 0.5rem;
  color: #fff;
}

.editorial-contact-panel button {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  background: #f3c66f;
  color: #221d19;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 820px) {
  .editorial-grid,
  .editorial-product-grid,
  .editorial-link-grid {
    grid-template-columns: 1fr;
  }

  .editorial-contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}
