/* ==========================================
   CheapWills — Shared Stylesheet
   ========================================== */

/* RESET & VARIABLES */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0f1a2e;
  --ink-muted: #5a6577;
  --accent: #1a6b8a;
  --accent-dark: #134f66;
  --accent-light: #e8f4f8;
  --surface: #f8f7f4;
  --surface-warm: #f0eeea;
  --white: #ffffff;
  --border: #ddd8d0;
  --green: #1a8f5c;
  --green-light: #e6f7ef;
  --red: #c0392b;
  --red-light: #fdecea;
  --amber: #d4880f;
  --amber-light: #fef7e6;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-display); font-weight: 900;
  font-size: 1.35rem; color: var(--ink);
  text-decoration: none; letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex; align-items: center; gap: 24px;
}
.nav-link {
  color: var(--ink-muted); text-decoration: none; font-size: 0.9rem;
  font-weight: 600; transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: var(--white);
  padding: 10px 20px; border-radius: 8px; text-decoration: none;
  font-weight: 600; font-size: 0.88rem; transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; color: var(--ink);
}

@media (max-width: 600px) {
  .hamburger { display: block; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1rem; padding: 8px 0; }
  .nav-cta { text-align: center; }
}

/* HERO */
.hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,107,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }

.trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); border: 1px solid rgba(26,143,92,0.3);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: #14704a;
  margin-bottom: 16px;
  animation: fadeInDown 0.6s ease-out;
}

.stat-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber-light); border: 1px solid rgba(212,136,15,0.3);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600; color: var(--amber);
  margin-bottom: 32px;
  animation: fadeInDown 0.6s ease-out 0.1s both;
}
.stat-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--amber); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12; letter-spacing: -0.03em;
  color: var(--ink); margin-bottom: 20px;
  animation: fadeInUp 0.7s ease-out 0.1s both;
}
h1 em {
  font-style: normal; color: var(--accent);
  font-weight: 900;
}

.hero-sub {
  font-size: 1.15rem; color: var(--ink-muted);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.65;
  animation: fadeInUp 0.7s ease-out 0.25s both;
}

/* EMAIL FORM */
.email-form {
  display: flex; gap: 10px;
  max-width: 460px; margin: 0 auto;
  animation: fadeInUp 0.7s ease-out 0.4s both;
}
.email-form input[type="email"] {
  flex: 1; padding: 14px 18px;
  border: 2px solid var(--border); border-radius: 10px;
  font-size: 1rem; font-family: var(--font-body);
  background: var(--white); color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.email-form input[type="email"]:focus {
  border-color: var(--accent);
}
.email-form input[type="email"]::placeholder {
  color: var(--ink-muted);
}
.email-form button {
  padding: 14px 28px;
  background: var(--accent); color: var(--white);
  border: none; border-radius: 10px;
  font-size: 1rem; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer; transition: background 0.2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--accent-dark); }
.form-note {
  font-size: 0.78rem; color: var(--ink-muted);
  margin-top: 12px;
  animation: fadeInUp 0.7s ease-out 0.5s both;
}

.form-success {
  display: none;
  padding: 16px 24px;
  background: var(--accent-light);
  border: 1px solid rgba(26,107,138,0.25);
  border-radius: 10px;
  color: var(--accent-dark);
  font-weight: 600;
  max-width: 460px;
  margin: 0 auto;
}

.form-error {
  display: none;
  padding: 12px 18px;
  background: var(--red-light);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 10px;
  color: var(--red);
  font-size: 0.88rem;
  font-weight: 500;
  max-width: 460px;
  margin: 8px auto 0;
}

.form-suggestion {
  display: none;
  padding: 12px 18px;
  background: var(--amber-light);
  border: 1px solid rgba(212,136,15,0.25);
  border-radius: 10px;
  color: #8a6b0a;
  font-size: 0.88rem;
  max-width: 460px;
  margin: 8px auto 0;
}
.form-suggestion a {
  color: var(--amber); font-weight: 700; cursor: pointer;
  text-decoration: underline;
}

.email-form button:disabled {
  opacity: 0.7; cursor: not-allowed;
}
.email-form input.input-error {
  border-color: var(--red);
}

.spinner {
  display: inline-block; width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* SECTIONS */
section { padding: 80px 24px; }
.section-inner { max-width: 1080px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent); margin-bottom: 12px;
}

h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem; color: var(--ink-muted);
  max-width: 560px; line-height: 1.6;
  margin-bottom: 48px;
}

/* PROBLEM SECTION */
.problem { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: center;
}
.problem-stats {
  display: flex; flex-direction: column; gap: 24px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
}
.stat-number {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; color: var(--ink);
  line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.9rem; color: var(--ink-muted); line-height: 1.4;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.step {
  position: relative; padding: 32px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.step:hover {
  box-shadow: 0 8px 32px rgba(15,26,46,0.08);
  transform: translateY(-2px);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--accent-light); color: var(--accent);
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.95rem; margin-bottom: 20px;
}
.step h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.92rem; color: var(--ink-muted); line-height: 1.55;
}

/* PRICING COMPARISON TABLE */
.pricing { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface); border-radius: 14px;
  overflow: hidden; border: 1px solid var(--border);
}
.pricing-table thead th {
  background: var(--ink); color: var(--white);
  padding: 16px 20px; text-align: left;
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.pricing-table tbody td {
  padding: 14px 20px; border-bottom: 1px solid var(--border);
  font-size: 0.92rem; vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:nth-child(even) { background: var(--white); }

.highlight-row {
  background: var(--accent-light) !important;
  font-weight: 600;
}
.highlight-row td {
  border-bottom-color: rgba(26,107,138,0.15) !important;
  color: var(--accent-dark);
}

.price-tag {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem;
}
.price-tag.cheap { color: var(--accent); }
.price-tag.expensive { color: var(--ink-muted); }
.catch-text { font-size: 0.82rem; color: var(--ink-muted); font-style: italic; }

/* FEATURES */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.feature {
  display: flex; gap: 16px; padding: 24px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px;
}
.feature-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--accent-light); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.feature h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1rem; margin-bottom: 4px;
}
.feature p {
  font-size: 0.88rem; color: var(--ink-muted); line-height: 1.5;
}

/* FAQ */
.faq { background: var(--white); border-top: 1px solid var(--border); }
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left;
  padding: 20px 0; background: none; border: none;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--ink); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  flex-shrink: 0; transition: transform 0.3s;
  font-size: 1.2rem; color: var(--ink-muted);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.92rem; color: var(--ink-muted); line-height: 1.65;
}
.faq-item.open .faq-a {
  max-height: 500px; padding-bottom: 20px;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  background: var(--ink);
  color: var(--white);
  border-top: none;
}
.final-cta h2 { color: var(--white); }
.final-cta .section-sub { color: rgba(255,255,255,0.6); margin-left: auto; margin-right: auto; }
.final-cta .email-form input[type="email"] {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.final-cta .email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.final-cta .email-form input[type="email"]:focus { border-color: var(--accent); }
.final-cta .form-note { color: rgba(255,255,255,0.4); }

#signup {
  scroll-margin-top: 100px;
}

/* FOOTER */
footer {
  padding: 40px 24px;
  text-align: center;
  font-size: 0.82rem; color: var(--ink-muted);
  border-top: 1px solid var(--border);
}
footer a { color: var(--ink-muted); }

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes form-pulse {
  0% { box-shadow: 0 0 0 0 rgba(26,107,138,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(26,107,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,107,138,0); }
}

.form-highlight input[type="email"] {
  border-color: var(--accent);
  animation: form-pulse 0.8s ease-out;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .email-form button { width: 100%; }
  section { padding: 60px 24px; }
  .hero { padding: 120px 24px 60px; }
  .pricing-table { font-size: 0.85rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 12px 14px; }
  .pricing-table .hide-mobile { display: none; }
}

@media (max-width: 480px) {
  .pricing-table { font-size: 0.8rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 10px 10px; }
}

/* ==========================================
   ARTICLE / BLOG STYLES
   ========================================== */

/* Breadcrumbs */
.breadcrumbs {
  padding: 100px 24px 0;
  max-width: 1080px;
  margin: 0 auto;
}
.breadcrumbs a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.82rem;
}
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* Article Header */
.article-header {
  padding: 32px 24px 0;
  max-width: 760px;
  margin: 0 auto;
}
.article-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  animation: none;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-meta span {
  font-size: 0.82rem;
  color: var(--ink-muted);
}
.article-meta .reading-time {
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
}

/* Article Body */
.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.article-body h2 {
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.article-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}
.article-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 16px;
}
.article-body ul, .article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.article-body li {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--ink);
  font-weight: 700;
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-body a:hover {
  color: var(--accent-dark);
}
.article-body a.cta-button {
  color: var(--white);
  text-decoration: none;
}
.article-body a.cta-button:hover {
  color: var(--white);
}
.article-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--accent-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--ink-muted);
}

/* Article Tables */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 24px 0;
  font-size: 0.92rem;
}
.article-body thead th {
  background: var(--ink);
  color: var(--white);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.article-body tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.article-body tbody tr:last-child td { border-bottom: none; }
.article-body tbody tr:nth-child(even) { background: var(--surface); }
.article-body .highlight-row {
  background: var(--accent-light) !important;
  font-weight: 600;
}
.article-body .highlight-row td {
  color: var(--accent-dark);
}

/* Responsive article tables */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}
.table-wrap table {
  margin: 0;
}

/* Article Callout / Info Box */
.callout {
  background: var(--accent-light);
  border: 1px solid rgba(26,107,138,0.3);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.callout-icon { font-size: 1.5rem; flex-shrink: 0; }
.callout-title {
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 1rem;
  margin-bottom: 4px;
}
.callout-body {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.callout-warning {
  background: var(--amber-light);
  border-color: rgba(212,136,15,0.3);
}
.callout-warning .callout-title { color: var(--amber); }

.callout-danger {
  background: var(--red-light);
  border-color: rgba(192,57,43,0.2);
}
.callout-danger .callout-title { color: var(--red); }

/* Article CTA Button */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background 0.2s;
  margin: 8px 0;
}
.cta-button:hover { background: var(--accent-dark); color: var(--white); }
.cta-button-secondary {
  background: var(--white);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cta-button-secondary:hover { background: var(--accent-light); color: var(--accent-dark); }

/* Article Checklist */
.checklist {
  list-style: none;
  padding-left: 0;
}
.checklist li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.checklist li::before {
  content: '☐';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.1rem;
}

/* Pros & Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}
.pros, .cons {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.pros { background: var(--green-light); border-color: rgba(26,143,92,0.3); }
.cons { background: var(--red-light); border-color: rgba(192,57,43,0.2); }
.pros h4, .cons h4 { margin-top: 0; margin-bottom: 12px; }
.pros h4 { color: var(--green); }
.cons h4 { color: var(--red); }
.pros ul, .cons ul { margin-bottom: 0; }
.pros li, .cons li { font-size: 0.9rem; }

@media (max-width: 600px) {
  .pros-cons { grid-template-columns: 1fr; }
  .article-body table { font-size: 0.82rem; }
  .article-body thead th,
  .article-body tbody td { padding: 10px 10px; }
}

/* Blog Index */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 8px 32px rgba(15,26,46,0.08);
  transform: translateY(-2px);
}
.blog-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  width: fit-content;
}
.blog-card-tag.comparison {
  background: var(--accent-light);
  color: var(--accent);
}
.blog-card-tag.guide {
  background: var(--green-light);
  color: var(--green);
}
.blog-card-tag.info {
  background: var(--amber-light);
  color: var(--amber);
}
.blog-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.blog-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
  flex-grow: 1;
}
.blog-card-footer {
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

/* Related Articles */
.related-articles {
  max-width: 780px;
  margin: 0 auto;
  padding: 24px 24px 48px;
}
.related-articles h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.related-articles .blog-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}
.related-articles .blog-card {
  padding: 20px 24px;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.related-articles .blog-card-body {
  flex: 1;
  min-width: 0;
}
.related-articles .blog-card-tag {
  margin-bottom: 8px;
}
.related-articles .blog-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.related-articles .blog-card p {
  font-size: 0.84rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-articles .blog-card-footer {
  display: none;
}
@media (max-width: 600px) {
  .related-articles .blog-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

/* Landing page hero variant */
.page-hero {
  padding: 120px 24px 48px;
  text-align: center;
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,107,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 {
  animation: none;
}
.page-hero .hero-sub {
  animation: none;
}
