:root {
  --campsul-blue-2: #e4edfd;
  --ink-strong: #0b1119;
  --ink-med: #243246;
  --ink-subtle: #61718a;
  --border-lite: #cfd9f2;
  --brand: #3aa0ff;
}

.about-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: block;
}

.about-hero {
  background: var(--campsul-blue-2);
  border: 1px solid var(--border-lite);
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 680px;
}

.about-hero h1 {
  margin: 0 0 6px;
  font-size: 2rem;
  color: var(--ink-strong);
}

.about-hero .lede {
  color: var(--ink-subtle);
  margin: 6px 0 12px;
  line-height: 1.6;
  max-width: 62ch;
}

.callout {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #b8d0f7;
  border-left: 5px solid #3a7be0;
  border-radius: 12px;
  background: #f8fbff;
}

.callout h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--ink-strong);
}

.callout p {
  margin: 8px 0;
  line-height: 1.55;
  color: #273444;
}

.callout a {
  color: #0c3f8d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #8eb4f7;
}

.callout a:hover {
  color: #072f6a;
}

.callout .small {
  color: #5c6e86;
  font-size: 0.9rem;
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-lite);
  background: #fff;
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.pill.is-active,
.pill:focus {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.about-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-card {
  background: #fff;
  border: 1px solid var(--border-lite);
  border-radius: 14px;
  padding: 14px 16px;
  color: #111;
  box-shadow: 0 4px 10px rgba(9, 30, 66, 0.04);
}

.about-card h2 {
  margin: 0 0 8px;
  color: var(--ink-strong);
}

.about-card h3 {
  margin: 14px 0 6px;
  color: var(--ink-med);
}

.about-card p {
  color: #273444;
  line-height: 1.6;
}

.about-card details {
  border-top: 1px dashed #e6eef7;
  padding-top: 10px;
  margin-top: 10px;
}

.about-card summary {
  cursor: pointer;
  font-weight: 700;
}

.about-image-card {
  overflow: hidden;
  padding: 0;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-medium {
  min-height: 300px;
}

.about-image-tall {
  min-height: 500px;
}

.checklist {
  padding-left: 18px;
}

.checklist li + li {
  margin-top: 6px;
}

.steps {
  padding-left: 18px;
}

.steps li + li {
  margin-top: 6px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.tag {
  display: inline-block;
  background: #f8fbff;
  border: 1px solid var(--border-lite);
  color: #0b1119;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.tip {
  font-weight: 700;
}

.about-note {
  margin-top: 8px;
  color: #273444;
}

.about-note a {
  color: #0c3f8d;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #8eb4f7;
}

.about-note a:hover {
  color: #072f6a;
}

.about-card.cta a {
  color: #0b1119;
  border-bottom: 2px solid var(--brand);
  text-decoration: none;
}

.about-card.cta a:hover {
  color: #036;
}

@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    max-width: none;
  }

  .about-image-tall {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 1.6rem;
  }

  .pill {
    padding: 6px 10px;
  }

  .about-image-medium {
    min-height: 220px;
  }

  .about-image-tall {
    min-height: 260px;
  }
}
