.guides-page h1,
.guides-page h2,
.guides-page h3 {
  text-align: left;
}

.guides-hero {
  padding-top: 48px;
}

.guides-hero-copy {
  max-width: 820px;
  margin-bottom: 28px;
}

.guides-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 54px);
}

.guides-hero-copy .hero-sub {
  max-width: 760px;
}

.guides-video-panel {
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-top: 5px solid var(--secondary);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 28px);
}

.guides-video-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.guides-video-heading h2 {
  margin-bottom: 0;
}

.guides-kicker {
  margin-bottom: 4px;
  color: var(--primary-dark);
  font-weight: 700;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .12em;
}

.guides-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #000;
}

.guides-library {
  padding-top: 26px;
}

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

.guides-card {
  min-width: 0;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 175, 185, 0.35);
  border-top: 3px solid var(--secondary);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.guides-card h3 {
  margin-top: 4px;
}

.guides-card p {
  color: var(--muted);
}

.guides-card a {
  font-weight: 700;
  text-decoration: none;
}

.guides-card a:hover {
  text-decoration: underline;
}

.guides-status {
  display: inline-block;
  color: var(--muted);
  font-weight: 700;
}

.guides-support {
  padding-top: 20px;
}

.guides-support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--neutral3);
  border: 1px solid var(--line);
  border-left: 6px solid var(--coral);
  border-radius: 12px;
  padding: clamp(18px, 3vw, 26px);
}

.guides-support-panel h2 {
  margin-bottom: 8px;
}

.guides-support-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .guides-video-heading,
  .guides-support-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .guides-video-heading .btn,
  .guides-support-panel .btn {
    align-self: flex-start;
  }

  .guides-card-grid {
    grid-template-columns: 1fr;
  }
}
