:root {
  --red: #e0202e;
  --red-dark: #b81825;
  --orange: #e89339;
  --orange-border: #ffffff;
  --text: #1c1c1c;
  --muted: #6b6b6b;
  --bg: #ffffff;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #2167d1; text-decoration: underline; }

.post {
  max-width: 820px;
  margin: 40px auto;
  padding: 0 24px;
}

.post-header h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.headline-link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.byline {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}

.byline strong { color: var(--text); font-weight: 700; }

.hero,
.before-after {
  margin: 0 0 32px;
}

.hero img,
.before-after img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: linear-gradient(135deg, #f6e9d8 0%, #ece4d8 60%, #d6cdbf 100%);
  min-height: 260px;
}

.content p { margin: 0 0 18px; }

.callout-red {
  color: var(--red);
  font-weight: 700;
  font-size: 20px;
  margin: 24px 0 18px !important;
}

.text-link {
  color: #2167d1;
  text-decoration: underline;
  font-weight: 600;
}

.if-you { margin-top: 24px !important; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.check-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 19px;
  font-weight: 700;
}

.check-list li::before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--text);
  font-weight: 800;
}

.before-after {
  margin: 28px 0 36px;
}

.content h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 36px 0 18px;
  letter-spacing: -0.3px;
}

.select-state {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  margin: 28px 0 18px;
}

/* Map area */
.map-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 8px 0 28px;
}

.map-area {
  flex: 1;
  min-width: 0;
}

.map-area object,
.map-area svg {
  display: block;
  width: 100%;
  height: auto;
}

.state-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 30px;
}

.state-pills a {
  display: block;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  width: 56px;
  padding: 6px 0;
  border-radius: 16px;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background 0.15s ease;
}

.state-pills a:hover {
  background: var(--red);
}

/* CTA */
.cta-button {
  display: block;
  background: var(--red-dark);
  color: #fff !important;
  text-decoration: none;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 22px 16px;
  border-radius: 6px;
  margin: 18px 0 40px;
  transition: background 0.15s ease;
}

.cta-button:hover { background: #931017; }

/* Inline SVG: color all state polygons orange with white borders */
.map-area svg .state {
  fill: var(--orange);
  cursor: pointer;
  transition: fill 0.12s ease;
}

.map-area svg .borders {
  stroke: #ffffff;
  stroke-width: 1.5;
  fill: none;
}

.map-area svg .separator1 {
  stroke: #d8d8d8;
  stroke-width: 1.5;
  fill: none;
}

.map-area svg .state-label {
  fill: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  user-select: none;
}

.map-area svg g.state path,
.map-area svg circle.dc {
  fill: var(--orange);
}

/* Responsive */
@media (max-width: 640px) {
  body { font-size: 17px; }
  .post-header h1 { font-size: 30px; }
  .content h2 { font-size: 24px; }
  .select-state { font-size: 22px; }
  .map-wrapper { gap: 10px; }
  .state-pills a { width: 44px; font-size: 12px; padding: 5px 0; }
  .cta-button { font-size: 18px; padding: 18px 12px; }
}
