.hs-guides-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hs-guides-page .hs-section__head {
  width: 100%;
  max-width: 920px;
  margin-bottom: 28px;
}

.hs-guides-page .hs-section__head h1 {
  margin: 0;
}

.hs-guides-seo-links {
  width: 100%;
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(120, 98, 210, 0.22);
  background: rgba(98, 54, 255, 0.05);
}

.hs-guides-seo-links__title {
  margin: 0 0 12px;
  font-size: 18px;
  color: rgba(236, 234, 255, 0.96);
}

.hs-guides-seo-links__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hs-guides-seo-links__list a {
  color: rgba(180, 155, 255, 0.98);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hs-guides-seo-links__list a:hover {
  color: #e8e0ff;
}

.hs-guides__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.hs-guides__card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height, 72px) + 20px);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hs-guides__card[open] {
  border-color: rgba(98, 54, 255, 0.35);
  background: rgba(98, 54, 255, 0.06);
}

.hs-guides__card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  color: #e9edff;
  transition: background 0.2s ease, color 0.2s ease;
}

.hs-guides__card-title::-webkit-details-marker {
  display: none;
}

.hs-guides__card-title::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.hs-guides__card[open] .hs-guides__card-title::after {
  content: "−";
  border-color: rgba(98, 54, 255, 0.35);
  background: rgba(98, 54, 255, 0.14);
  color: #fff;
}

.hs-guides__card-title:hover,
.hs-guides__card-title:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.hs-guides__card-body {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.hs-guides__card-body p {
  margin: 0 0 12px;
}

.hs-guides__card-body ol {
  margin: 0;
  padding-left: 22px;
}

.hs-guides__card-body li + li {
  margin-top: 6px;
}

.hs-guides__card-body a {
  color: #c4b5fd;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hs-guides__card-body a:hover,
.hs-guides__card-body a:focus-visible {
  color: #fff;
}

.hs-guides__subtitle {
  margin: 20px 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #e9edff;
}

.hs-guides__subtitle:first-of-type {
  margin-top: 4px;
}

.hs-guides__subtitle--minor {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(233, 237, 255, 0.88);
}

.hs-guides__card-body code {
  padding: 1px 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92em;
  color: #e9edff;
}

.hs-guides__figure {
  margin: 16px 0 0;
}

.hs-guides__figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.hs-guides__figure figcaption {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 560px) {
  .hs-guides__card-title {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .hs-guides__card-body {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}
