@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
:root {
  --primary: #2563eb; /* Vibrant royal blue */
  --primary-hover: #1d4ed8; /* Darker shade for hover state */
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.preview-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
/* Responsive Display Utilities */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}
/* Advertorial Header Tag */
.adv-tag-header {
  background-color: #0f172a;
  text-align: center;
  padding: 6px 16px;
}
.adv-tag-header h2 span {
  color: #94a3b8;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}
/* Top Navigation Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-nav {
  max-width: 920px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo img {
    display: block;
    width: 100%;
    max-width: 250px;
}
/* Quote CTA Button Header */
.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: var(--primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.quote-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.quote-btn-arrow {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.quote-btn:hover .quote-btn-arrow {
  transform: translateX(3px);
}
/* Main Content Layout */
.main-content {
  max-width: 860px;
  margin: 32px auto 0;
  padding: 0 20px;
  width: 100%;
}
/* Title Section */
.title-section {
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 28px;
}
.title-section h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  line-height: 1.25;
  color: #0f172a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
/* Author Byline Styles */
.advm-wrap, .advd-wrap {
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}
.advm-row, .advd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.advd-left, .advm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}
.advm-avatar, .advd-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.advm-text, .advd-text {
  font-size: 14px;
  color: var(--text-muted);
}
.advm-name {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
	
}
.advd-text b {
  color: #0f172a;
}
.advm-verified-badge, .advd-verified-badge {
  color: #0284c7;
  font-size: 14px;
	margin-left: 5px;
}
.advd-social {
  display: flex;
  gap: 8px;
}
.advd-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.advd-social a:hover {
  opacity: 0.85;
}
.advd-fb {
  background: #1877F2;
}
.advd-ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.advd-x {
  background: #000000;
}
.advd-yt {
  background: #FF0000;
}
.advd-tt {
  background: #000000;
}
.advd-pin {
  background: #E60023;
}
/* Article Body */
.article-body {
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.image-container {
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 12px;
}
.round-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.article-body p {
  font-size: 17px;
  color: #334155;
  margin-bottom: 20px;
  line-height: 1.7;
}
.highlight-text {
  background-color: #fef2f2;
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  color: #991b1b !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 18px !important;
}
.article-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  color: #0f172a;
  margin: 36px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #f1f5f9;
}
.rich-text p {
  margin-bottom: 16px;
}
.rich-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.rich-text a:hover {
  color: var(--primary-hover);
}
/* Age Selector Component */
.age-section {
  margin: 36px 0;
  background: #f8fafc;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
}
.age-banner {
  display: block;
  background: linear-gradient(135deg, var(--primary), #1d4ed8);
  color: #ffffff;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  transition: all 0.2s ease;
}
.age-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}
.age-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.age-card {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  background: #ffffff;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}
.age-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.age-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: contain;
  margin: 10px 0px;
  padding: 0px 10px;
}
.age-card-label {
  border-top: 1px solid var(--border-color);
  text-align: center;
  padding: 14px 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  background: #ffffff;
}
.age-card:hover .age-card-label {
  background: #fef2f2;
  color: var(--primary);
}
/* Age Number Grid */
.agn-wrapper {
  margin: 32px 0 10px 0;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.agn-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}
.agn-btn {
  background: #ffffff;
  color: #0f172a;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: 4px solid var(--border-color);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease;
  box-shadow: var(--shadow-sm);
}
.agn-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}
/* Article Disclaimers Section */
.disclaimers {
  margin-top: 24px;
  padding: 24px 36px;
  background-color: #f1f5f9;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.disclaimers p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 10px;
}
.disclaimers p:last-child {
  margin-bottom: 0;
}
/* Global Site Footer Section */
.site-footer {
  margin-top: 60px;
  padding: 48px 20px;
  background-color: #0f172a;
  color: #94a3b8;
  border-top: 1px solid #1e293b;
}
.footer-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-brand {
  margin-bottom: 24px;
}
.footer-brand .logo-icon {
  width: 34px;
  height: 34px;
  font-size: 16px;
}
.footer-brand .logo-text {
  font-size: 20px;
  color: #ffffff;
}
.footer-disclaimer {
  font-size: 13px;
  line-height: 1.65;
  color: #94a3b8;
  margin-bottom: 24px;
}
.footer-disclaimer p {
  margin-bottom: 12px;
  font-size: 13px;
}
.footer-disclaimer a {
  color: #cbd5e1;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-disclaimer a:hover {
  color: #ffffff;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}
.footer-nav a {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav a:hover {
  color: var(--primary);
}
.footer-divider {
  color: #475569;
  font-size: 12px;
}
.footer-copyright {
  font-size: 13px;
  color: #64748b;
  border-top: 1px solid #1e293b;
  padding-top: 20px;
  width: 100%;
}
.footer-copyright p {
  margin: 0;
  font-size: 13px;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .main-content {
    padding: 0 12px;
    margin-top: 16px;
  }
  .title-section, .article-body {
    padding: 20px;
    border-radius: 12px;
  }
  .title-section h1 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 16px;
  }
  .article-body p {
    font-size: 16px;
  }
  .highlight-text {
    font-size: 16px !important;
    padding: 12px 16px;
  }
  .age-section {
    padding: 16px;
  }
  .age-banner {
    font-size: 16px;
    padding: 14px 16px;
  }
  .age-card-label {
    font-size: 20px;
    padding: 10px;
  }
  .agn-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }
  .agn-btn {
    font-size: 15px;
  }
  .disclaimers {
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .age-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .age-card {
    flex-direction: row;
    align-items: center;
  }
  .age-card img {
    width: 40%;
    aspect-ratio: auto;
  }
  .age-card-label {
    width: 60%;
    border-top: none;
    border-left: 1px solid var(--border-color);
    font-size: 22px;
    padding: 16px;
  }
}