*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0d0d0d;
  color: #d4d0c8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.9;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgb(198 12 12 / 28%), transparent 38%),
    linear-gradient(135deg, #080808, #1b0a0a 55%, #0d0d0d);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 64px;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 95%),
    rgb(0 0 0 / 35%) 60%,
    transparent
  );
}

.hero-tag {
  margin-bottom: 12px;
  color: #e53e3e;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.15;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  margin-top: 16px;
  color: #999;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
}

article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}

article > p:first-of-type {
  color: #f0ece0;
  font-size: 20px;
  line-height: 1.75;
}

h2 {
  margin: 48px 0 16px;
  color: #fff;
  font-size: 26px;
  line-height: 1.3;
}

h3 {
  margin: 32px 0 12px;
  color: #f0ece0;
  font-size: 20px;
}

p {
  margin-bottom: 24px;
}

ul,
ol {
  margin: 0 0 24px 28px;
}

li {
  margin-bottom: 8px;
}

.internal-link {
  color: #ff6b6b;
  text-decoration: none;
  border-bottom: 1px solid #7b1a1a;
}

.internal-link:hover {
  color: #fff;
  border-color: #e53e3e;
}

.seo-content-image {
  margin: 0 0 40px;
}

.seo-content-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.seo-content-image figcaption {
  margin-top: 8px;
  color: #777;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.5;
}

.cta-block {
  margin: 56px 0;
  padding: 40px 44px;
  text-align: center;
  background: linear-gradient(135deg, #1a0000, #2d0808);
  border: 1px solid #7b1a1a;
  border-radius: 16px;
}

.cta-block h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.cta-block p {
  margin-bottom: 24px;
  color: #aaa;
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  padding: 14px 36px;
  color: #fff;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  background: #c60c0c;
  border-radius: 999px;
}

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .hero {
    min-height: 420px;
  }

  .hero-overlay {
    padding: 28px 16px;
  }

  .hero h1 {
    font-size: 32px;
  }

  article {
    padding: 32px 16px 60px;
  }

  article > p:first-of-type {
    font-size: 18px;
  }

  h2 {
    margin-top: 40px;
    font-size: 22px;
  }

  .cta-block {
    padding: 32px 20px;
  }
}
