/* =========================
   What Is a Street Dog — page styles
   Shares css/styles.css for global header/footer/buttons.
   ========================= */

/* Hero */

.sd-hero {
  padding: 54px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.sd-kicker {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.sd-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 20px;
}

.sd-definition {
  display: inline-block;
  background: rgba(243,201,105,.08);
  border: 1px solid rgba(243,201,105,.22);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 0 0 22px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.sd-hero-intro {
  max-width: auto;
}

.sd-hero-intro p {
  font-size: 1.08rem;
  margin: 0 0 12px;
}

.sd-hero-intro p:last-child {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--accent2);
  margin: 0;
}

/* Body */

.sd-body {
  padding: 0 0 80px;
}

/* Each section gets breathing room */

.sd-section {
  padding: 56px 0 0;
}

.sd-section::after {
  content: "";
  display: block;
  clear: both;
}

.sd-section h2 {
  margin: 0 0 18px;
}

.sd-section p {
  font-size: 1.02rem;
  margin: 0 0 14px;
}

.sd-section ul {
  margin: 0 0 16px;
  padding: 0 0 0 20px;
  color: var(--text);
}

.sd-section ul li {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

/* Pull quote / callout */

.sd-callout {
  margin: 22px 0;
  padding: 16px 20px;
  background: rgba(243,201,105,.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent2);
  font-style: italic;
}

/* Floated figures */

.sd-figure {
  margin: 0 0 18px;
}

.sd-figure img {
  border-radius: 14px;
  border: 1px solid var(--line);
  width: 100%;
}

.sd-figure figcaption {
  margin-top: 8px;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

.sd-figure-left {
  float: left;
  width: min(320px, 44%);
  margin: 4px 24px 16px 0;
}

.sd-figure-right {
  float: right;
  width: min(230px, 42%);
  margin: 4px 0 16px 24px;
}

/* Divider between sections */

.sd-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 56px 0 0;
}

/* CTA block at bottom */

.sd-cta {
  margin-top: 56px;
  padding: 32px;
  background: rgba(243,201,105,.07);
  border: 1px solid rgba(243,201,105,.22);
  border-radius: 20px;
  text-align: center;
}

.sd-cta p {
  max-width: 560px;
  margin: 0 auto 12px;
}

.sd-cta p:first-child {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.sd-cta .cta-row {
  justify-content: center;
  margin-top: 20px;
}

/* Responsive */

@media (max-width: 720px) {
  .sd-figure-left,
  .sd-figure-right {
    float: none;
    width: 100%;
    margin: 0 0 20px;
  }

  .sd-section {
    padding-top: 40px;
  }

  .sd-cta {
    padding: 24px 18px;
  }
}
