/* styles.css */

:root {
  --pink: #e9a79c;
  --text: #3f3f3f;
  --muted: #b0b0b0;
  --border: #dcdcdc;
  --link: #338bba;
  --green: #73c86a;
  --green-dark: #63b85a;
}

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Abel", Arial, sans-serif;
  line-height: 1.45;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* TOP BAR (less aggressive) */
.top-disclaimer {
  background: #efb2a7;
  color: rgba(0, 0, 0, 0.65);
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 10px;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  justify-content: center;
  padding: 14px 0 12px;
}

.site-logo {
  max-height: 26px;
}

/* CONTENT */
.content-wrap {
  width: 100%;
  padding: 14px 14px 0;
}

.content-wrap--top {
  margin-top: 40px;
  padding-top: 12px;
}

.content-wrap--article {
  padding-top: 14px;
}

.article {
  max-width: 720px;
  margin: 0 auto;
}

/* HEADLINE */
.article h1 {
  margin: 0 0 10px;
  font-family: "Abril Fatface", serif;
  font-size: 24px;
  line-height: 1.05;
  text-align: center;
  color: #111;
}

/* META (FIXED + TIGHT) */
.meta {
  text-align: center;
  margin-bottom: 12px;
}

/* bring back boxed label */
.category {
  display: inline-block;
  border: 1px solid #111;
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 14px !important;
}

/* tighten author/date HARD */
.info {
  margin: 0;
  font-size: 14px !important;
  color: var(--muted);
  line-height: 1.1 !important;
}

.info + .info {
  margin-top: 2px;
}

/* HERO */
.hero {
  margin-top: 20px;
}

.hero-media img {
  width: 100%;
}

/* ARTICLE TEXT */
.article p {
  margin: 0 0 14px;
  font-size: 19px;
  line-height: 1.5;
}

/* first paragraph slightly stronger but not oversized */
.article p:first-of-type {
  font-size: 20px;
}

/* LINKS */
.article a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 139, 186, 0.4);
}

.article a:hover {
  border-bottom: 2px solid var(--link);
}

/* HEADINGS */
.article h2 {
  margin: 22px 0 10px;
  font-size: 23px;
  color: #111;
}

/* INLINE CTA */
.inline-cta {
  font-weight: bold;
  font-size: 20px;
}

/* DIVIDER */
.small-border {
  width: 100px;
  height: 2px;
  background: #eee;
  margin: 16px 0;
}

/* CTA BOX */
.form-container {
  margin-top: 24px;
  background: #eee;
  padding: 16px;
  text-align: center;
}

.form-container h3 {
  font-family: "Abril Fatface", serif;
  font-size: 26px;
  margin-bottom: 12px;
}

.main-btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
}

.main-btn:hover {
  background: var(--green-dark);
}

/* FOOTER */
.site-footer {
  background: #eee;
  padding: 20px;
  font-size: 11px;
}

.site-footer p {
  margin-bottom: 14px;
}
