.pseo-section {
  background: #f4eee3;
  border-block: 1px solid #dfd4c4;
}

.pseo-section--white {
  background: #fffdf9;
}

.pseo-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-block: clamp(42px, 6vw, 76px);
}

.pseo-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.pseo-heading-row h2,
.pseo-route h2,
.pseo-catalog-hero h1 {
  margin: 0;
  color: #12262e;
  text-wrap: balance;
}

.pseo-heading-row p,
.pseo-catalog-hero p {
  max-width: 650px;
  margin: 8px 0 0;
  color: #50616a;
}

.pseo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pseo-grid--brands {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pseo-card {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  color: #12262e;
  text-decoration: none;
  background: #fffdf9;
  border: 1px solid #d8d0c4;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgb(18 38 46 / 5%);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pseo-card:hover,
.pseo-card:focus-visible {
  border-color: #ca3f31;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgb(18 38 46 / 10%);
}

.pseo-card strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.pseo-card span {
  color: #65737a;
  font-size: .92rem;
}

.pseo-card b {
  color: #b83226;
  font-size: .9rem;
}

.pseo-route {
  margin: 40px 0 8px;
  padding: clamp(24px, 4vw, 38px);
  background: #f7f1e7;
  border: 1px solid #ded2c0;
  border-left: 5px solid #c93f31;
  border-radius: 18px;
}

.pseo-route > p {
  max-width: 780px;
  margin: 12px 0 24px;
  color: #43565f;
}

.pseo-checks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  counter-reset: pseo-check;
}

.pseo-check {
  position: relative;
  min-height: 150px;
  padding: 48px 18px 18px;
  background: #fffdf9;
  border: 1px solid #ddd3c6;
  border-radius: 14px;
  counter-increment: pseo-check;
}

.pseo-check::before {
  position: absolute;
  top: 16px;
  left: 18px;
  content: counter(pseo-check, decimal-leading-zero);
  color: #c93f31;
  font-weight: 800;
  letter-spacing: .08em;
}

.pseo-check strong {
  display: block;
  margin-bottom: 8px;
  color: #12262e;
}

.pseo-check p {
  margin: 0;
  color: #53646c;
  font-size: .94rem;
}

.pseo-note {
  margin: 20px 0 0;
  padding-top: 18px;
  color: #53646c;
  border-top: 1px solid #ddd3c6;
  font-size: .94rem;
}

.pseo-catalog-hero {
  padding: clamp(48px, 7vw, 86px) 0 42px;
  background:
    radial-gradient(circle at 86% 20%, rgb(201 63 49 / 10%), transparent 26rem),
    linear-gradient(135deg, #f8f2e8, #fffdf9);
}

.pseo-breadcrumbs {
  margin-bottom: 24px;
  color: #68767d;
  font-size: .92rem;
}

.pseo-breadcrumbs a {
  color: #a83025;
}

.pseo-faq details {
  padding: 18px 0;
  border-top: 1px solid #ded5c9;
}

.pseo-faq summary {
  cursor: pointer;
  color: #12262e;
  font-weight: 800;
}

.pseo-faq details p {
  max-width: 780px;
  margin: 12px 0 0;
  color: #53646c;
}

@media (max-width: 900px) {
  .pseo-grid,
  .pseo-grid--brands,
  .pseo-checks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .pseo-shell {
    width: min(100% - 28px, 1180px);
  }

  .pseo-heading-row {
    display: block;
  }

  .pseo-grid,
  .pseo-grid--brands,
  .pseo-checks {
    grid-template-columns: 1fr;
  }

  .pseo-card,
  .pseo-check {
    min-height: 0;
  }
}
