:root {
  --seo-gold: #e4b55e;
  --seo-ink: #070708;
  --seo-paper: #f5efe4;
}

body {
  background: var(--seo-ink);
  color: var(--seo-paper);
}

.seo-guide {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 80px;
}

.seo-guide__breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(245, 239, 228, .58);
  font-size: .8rem;
}

.seo-guide__breadcrumb a,
.seo-guide__responsible a {
  color: var(--seo-gold);
}

.seo-guide__hero {
  min-height: 520px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(228, 181, 94, .28);
  border-radius: 30px;
  background: #111;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .55);
}

.seo-guide__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 5, 7, .96) 0 42%, rgba(4, 5, 7, .64) 65%, rgba(4, 5, 7, .2));
}

.seo-guide__hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.seo-guide__hero-copy {
  max-width: 670px;
  position: relative;
  z-index: 1;
  padding: clamp(34px, 7vw, 82px);
}

.seo-guide__eyebrow {
  margin: 0 0 12px;
  color: var(--seo-gold);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.seo-guide h1,
.seo-guide h2 {
  font-family: Georgia, "Times New Roman", serif;
}

.seo-guide h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.7rem);
  line-height: .98;
}

.seo-guide__lead {
  max-width: 600px;
  margin: 24px 0;
  color: rgba(245, 239, 228, .76);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.seo-guide__cta {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 14px 20px;
  border: 1px solid rgba(228, 181, 94, .48);
  border-radius: 999px;
  color: #1b1207;
  background: linear-gradient(135deg, #f4d28a, #b87825);
  font-weight: 850;
  text-decoration: none;
}

.seo-guide__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 60px;
  padding: 0;
  list-style: none;
}

.seo-guide__highlights li {
  padding: 18px;
  border: 1px solid rgba(228, 181, 94, .2);
  border-radius: 16px;
  color: rgba(245, 239, 228, .8);
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.seo-guide__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-guide__content section,
.seo-guide__faq,
.seo-guide__responsible {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
}

.seo-guide__number {
  margin: 0 0 26px;
  color: rgba(228, 181, 94, .5);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.seo-guide h2 {
  margin: 0 0 20px;
  font-size: clamp(1.65rem, 4vw, 2.7rem);
}

.seo-guide__content section > p:not(.seo-guide__number),
.seo-guide__faq p,
.seo-guide__responsible p {
  color: rgba(245, 239, 228, .72);
  line-height: 1.8;
}

.seo-guide__faq {
  margin-top: 24px;
}

.seo-guide__faq details {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.seo-guide__faq summary {
  padding: 20px 0;
  cursor: pointer;
  color: #fff4df;
  font-weight: 800;
}

.seo-guide__faq details p {
  margin-top: 0;
}

.seo-guide__responsible {
  margin-top: 24px;
  border-color: rgba(228, 181, 94, .28);
}

@media (max-width: 760px) {
  .seo-guide__hero {
    min-height: 600px;
  }

  .seo-guide__hero::after {
    background: linear-gradient(0deg, rgba(4, 5, 7, .98) 0 52%, rgba(4, 5, 7, .2));
  }

  .seo-guide__highlights,
  .seo-guide__content {
    grid-template-columns: 1fr;
  }
}
