.guides-page .guide-hero {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 24px;
  text-align: center;
}

.guide-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #dbeafe;
  font-size: 13px;
}

.guides-page .guide-hero h1 {
  margin: 0 auto 14px;
  max-width: 920px;
}

.guides-page .guide-hero p {
  margin: 0 auto;
  max-width: 760px;
}

.guide-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: 18px;
}

.guide-main,
.guide-side,
.guide-card {
  text-align: left;
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(12px) saturate(118%);
  -webkit-backdrop-filter: blur(12px) saturate(118%);
}

.guide-main {
  padding: 22px 22px;
}

.guide-main section + section {
  margin-top: 26px;
}

.guide-main h2 {
  font-size: 25px;
  margin-bottom: 10px;
}

.guide-main p {
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 12px;
}

.guide-callout {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(14, 116, 144, 0.14));
  color: #eaf2ff;
  line-height: 1.6;
}

.guide-callout strong {
  color: #ffffff;
}

.guide-compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-size: 14px;
}

.guide-compare th,
.guide-compare td {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 12px;
  vertical-align: top;
}

.guide-compare th {
  text-align: left;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.guide-compare td {
  color: #dbe4f0;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.guide-list li {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  color: #e5e7eb;
  line-height: 1.56;
  background: rgba(255, 255, 255, 0.02);
}

.guide-list li strong {
  color: #ffffff;
}

.guide-side {
  padding: 16px;
  align-self: start;
  position: sticky;
  top: 88px;
}

.guide-side h3 {
  margin-bottom: 10px;
}

.guide-side p {
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.guide-side .btn,
.guide-side .btnGhost {
  display: block;
  width: 100%;
  text-align: center;
}

.guide-side .btn + .btnGhost {
  margin-top: 10px;
}

.guide-card {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

.guide-card h2 {
  margin-bottom: 10px;
}

.guide-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

.guide-card a,
.guide-card a:visited {
  color: #8bd8ff;
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 216, 255, 0.5);
  transition: color 220ms var(--ease-soft), border-color 220ms var(--ease-soft);
}

.guide-card a:hover,
.guide-card a:focus-visible {
  color: #d8f1ff;
  border-bottom-color: rgba(216, 241, 255, 0.8);
}

@media (max-width: 980px) {
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-side {
    position: static;
    top: auto;
  }
}

@media (max-width: 600px) {
  .guides-page .guide-hero {
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .guides-page .guide-hero h1 {
    font-size: 32px;
    line-height: 1.14;
  }

  .guides-page .guide-hero p {
    font-size: 18px;
    line-height: 1.5;
  }

  .guide-main,
  .guide-side,
  .guide-card {
    padding: 14px;
  }

  .guide-main h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .guide-list li {
    padding: 9px 10px;
    font-size: 15px;
  }

  .guide-compare {
    font-size: 13px;
  }

  .guide-compare th,
  .guide-compare td {
    padding: 8px 9px;
  }

  .guide-side .btn,
  .guide-side .btnGhost {
    min-height: 42px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
