/* Block Poppins font from VWO/GTM to save 800ms on critical path */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100 900;
  src: local('Inter'), local('system-ui'), local('Arial');
  font-display: swap;
}

/* Base Reset and Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(222, 84%, 4.9%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(222, 84%, 4.9%);
  --primary: hsl(221, 83%, 53%);
  --primary-foreground: hsl(210, 40%, 98%);
  --secondary: hsl(210, 40%, 96%);
  --secondary-foreground: hsl(222, 47%, 11%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 47%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(221, 83%, 53%);
  --radius: 0.5rem;
  --news-blue: hsl(220, 88%, 30%);
  --breaking-red: hsl(0, 71%, 51%);
  --success-green: hsl(158, 64%, 40%);
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Georgia', 'Times', serif;
  --font-roboto: 'Roboto', sans-serif;
}

html {
  background-color: #ffffff !important;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #111827;
  background-color: #ffffff !important;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Override font-serif classes to use Open Sans */
.font-serif, h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif !important;
}

/* Header Styles */
.news-header {
  background-color: hsl(220, 88%, 30%);
  color: white;
}

.news-header-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.news-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.site-logo {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

/* Main Container */
.main-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Grid Layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.main-content {
  grid-column: span 1;
}

.lg-col-span-2 {
  grid-column: span 1;
}

.lg-col-span-1 {
  grid-column: span 1;
}

/* Article Headline */
.article-headline {
  font-size: 28px !important;
  line-height: 1.2 !important;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Hero Image */
.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Article Byline */
.article-byline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 12px !important;
  line-height: 1.3 !important;
  color: #6b7280;
}

.article-byline .byline-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.article-byline .byline-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 2px;
}

.article-byline .author-name {
  font-weight: 500;
  color: #111827;
}

.article-byline .author-title {
  color: #6b7280;
}

.article-byline .publish-date {
  color: #6b7280;
}

.article-byline .read-time {
  color: #6b7280;
}

/* Desktop byline - single row with separators */
@media (min-width: 640px) {
  .article-byline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    font-size: 12px !important;
  }
  
  .article-byline .byline-left,
  .article-byline .byline-right {
    display: contents;
  }
  
  .article-byline .author-name {
    order: 0;
  }
  
  .article-byline .author-title {
    order: 1;
  }
  
  .article-byline .publish-date {
    order: 2;
  }
  
  .article-byline .read-time {
    order: 3;
  }
  
  .article-byline .author-title::before,
  .article-byline .publish-date::before,
  .article-byline .read-time::before {
    content: "•";
    margin: 0 0.5rem;
    color: #9ca3af;
  }
}

/* Social Proof Badges */
.social-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid #6b7280 !important;
  border-radius: 8px !important;
  padding: 4px 8px !important;
}

.badge svg {
  width: 1rem;
  height: 1rem;
}

.badge-blue { color: #2563eb; }
.badge-red { color: #ef4444; }
.badge-green { color: #16a34a; }
.badge-purple { color: #9333ea; }

.badge span {
  font-weight: 500;
}

/* Mobile badge sizing */
@media (max-width: 639px) {
  .social-badges {
    justify-content: flex-start;
    gap: 0.5rem;
  }
  
  .social-badges .badge {
    padding: 2px 6px !important;
    font-size: 13px !important;
  }
  
  .badge-label {
    display: none;
  }
  
  /* Feature grid rows - single column on mobile */
  .feature-grid-row {
    grid-template-columns: 1fr !important;
  }
  
  /* Share buttons - fit in one row on mobile (icons only) */
  .share-btn {
    width: auto !important;
    flex: 1 !important;
    padding: 0.5rem !important;
    font-size: 18px !important;
    height: 32px !important;
  }
  
  .share-btn .share-text {
    display: none !important;
  }
  
  .share-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  /* Main headline 24px on mobile */
  .article-headline {
    font-size: 24px !important;
  }
}

@media (min-width: 640px) {
  .badge-label {
    display: inline;
  }
}

/* Product link styles - no underline */
.product-link {
  color: #167ac6;
  font-weight: bold;
  text-decoration: none;
}

.product-link:hover {
  text-decoration: none;
}

/* Prose Styles */
.prose {
  max-width: none;
}

.prose p {
  margin-bottom: 1rem;
  font-size: 18px !important;
  line-height: 1.6 !important;
}

.prose strong {
  font-family: "Open Sans", sans-serif;
}

/* Section Styles */
section {
  margin-bottom: 2rem;
}

section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

section p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin-bottom: 1rem;
}

/* Images in Sections */
.section-image {
  width: 100%;
  height: auto;
  max-width: 773px;
  margin: 0 auto 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Blockquote */
blockquote {
  border-left: 4px solid hsl(158, 64%, 40%);
  padding-left: 1rem;
  font-style: italic;
  color: #374151;
  margin: 1.5rem 0;
}

blockquote footer {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

/* Video Styles */
.section-video {
  width: 100%;
  height: auto;
  max-width: 773px;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  aspect-ratio: 345 / 208;
}

/* Feature List */
.feature-list {
  background-color: rgb(241, 241, 241);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.feature-check {
  background-color: #22c55e;
  color: white;
  border-radius: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Facebook Posts */
.facebook-posts-container {
  overflow-x: auto;
}

.facebook-post {
  background-color: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 8px solid rgb(237, 242, 247);
  margin-bottom: 1.5rem;
  break-inside: avoid;
}

.facebook-post-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.facebook-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  margin-right: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.facebook-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facebook-post-header h4 {
  font-weight: 600;
  font-size: 14px !important;
  color: #365899;
  cursor: pointer;
}

.facebook-post-header h4:hover {
  text-decoration: none;
}

.facebook-post-time {
  font-size: 14px !important;
  color: #65676B;
  display: flex;
  align-items: center;
  line-height: 1.25;
}

.facebook-post-time svg {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.25rem;
  fill: currentColor;
}

.facebook-post-menu {
  margin-left: auto;
  color: #65676B;
  font-size: 1.25rem;
}

.facebook-post-text {
  font-size: 14px !important;
  color: #050505;
  margin-bottom: 0.75rem;
  line-height: 20px !important;
}

.facebook-post-image {
  border-radius: 0.25rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.facebook-post-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.facebook-reactions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px !important;
  color: #65676B;
  margin-bottom: 0.25rem;
  padding: 0 0.25rem;
}

.facebook-reactions span {
  font-size: 13px !important;
}

.facebook-reactions-icons span {
  font-size: 14px !important;
}

.facebook-reactions-icons {
  display: flex;
  align-items: center;
  margin-right: 0.25rem;
}

.facebook-reactions-icons span {
  font-size: 14px;
  margin-right: 2px;
}

.facebook-actions {
  border-top: 1px solid #CED0D4;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-around;
  font-size: 15px !important;
  color: #65676B;
}

.facebook-actions button {
  display: flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  font-size: 15px !important;
  background: none;
  border: none;
  cursor: pointer;
}

.facebook-actions button:hover {
  background-color: #f3f4f6;
}

.facebook-actions button svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.facebook-comments {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid #CED0D4;
}

.facebook-comment {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.facebook-comment-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin-right: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
}

.facebook-comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facebook-comment-text {
  font-size: 14px !important;
  color: #050505;
  line-height: 1.4;
}

.facebook-comment-text .name {
  font-weight: 600;
  font-size: 14px !important;
  color: #365899;
  cursor: pointer;
}

.facebook-comment-text .name:hover {
  text-decoration: none;
}

.facebook-comment-actions {
  font-size: 14px !important;
  color: #65676B;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.facebook-comment-actions span {
  font-size: 14px !important;
}

.facebook-comment-actions button {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px !important;
}

.facebook-comment-actions button:hover {
  text-decoration: none;
}

/* Pricing Sections */
.pricing-section {
  background-color: #fefce8;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #fcd34d;
  margin-bottom: 2rem;
}

.pricing-box {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #fcd34d;
}

.pricing-box-green {
  background-color: #f0fdf4;
  border: 1px solid #4ade80;
}

.price-highlight-red {
  color: #dc2626;
}

.price-highlight-green {
  color: #16a34a;
}

/* Warning Section */
.warning-section {
  background-color: #fef2f2;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 2px solid #fca5a5;
  margin-bottom: 1.5rem;
}

.warning-section h3 {
  color: #b91c1c;
}

.inventory-warning {
  background-color: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #f87171;
  margin-bottom: 1rem;
}

.inventory-warning p {
  line-height: 1.4 !important;
}

.inventory-count {
  font-size: inherit;
  font-weight: 700;
}

/* Recommendation Box */
.recommendation-box {
  background-color: #fefce8;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px solid #facc15;
  margin-bottom: 1rem;
}

.urgency-checklist {
  margin-left: 1rem;
}

/* Coupon Box */
.coupon-box {
  background-color: rgb(255, 247, 229);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 2px dashed #fb923c;
  margin-bottom: 1.5rem;
}

.coupon-box p {
  font-size: 18px;
  line-height: 1.6;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  background-color: #16a34a;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.cta-button:hover {
  background-color: #15803d;
}

/* Setup Steps */
.setup-steps {
  background-color: rgb(241, 241, 241);
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.setup-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.setup-step:last-child {
  margin-bottom: 0;
}

.step-number {
  background-color: #16a34a;
  color: white;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.setup-step p {
  font-size: 1.125rem;
}

/* Customer Ratings Section */
.ratings-section {
  background-color: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  margin-bottom: 2rem;
}

.ratings-header {
  padding: 1.5rem;
  background-color: #f9fafb;
}

.ratings-header > .flex {
  margin-bottom: 0.5rem;
}

.ratings-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ratings-count {
  color: #6b7280;
  font-size: 0.875rem;
}

.ratings-score {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.score-number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-right: 0.75rem;
}

.stars {
  color: #facc15;
  font-size: 1.25rem;
  margin-right: 0.75rem;
  line-height: 1;
}

.score-text {
  font-size: 1.125rem;
  font-weight: 600;
}

/* Rating Bars */
.rating-bars {
  background-color: white;
  margin: 0 -1.5rem;
  padding: 1rem 1.5rem;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.rating-bar-row:last-child {
  margin-bottom: 0;
}

.rating-bar-track {
  flex: 1;
  background-color: #d1d5db;
  border-radius: 9999px;
  height: 1.5rem;
  margin-right: 1rem;
  overflow: hidden;
}

.rating-bar-fill {
  background-color: #2563eb;
  height: 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.5rem;
}

.rating-bar-number {
  color: white;
  font-size: 0.875rem;
  font-weight: 700;
}

.rating-bar-label {
  width: 5rem;
  font-size: 0.875rem;
}

/* Comments Section */
.comments-section {
  padding: 1.5rem;
}

.comments-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.comment-input-container {
  display: flex;
  margin-bottom: 1.5rem;
}

.comment-input-avatar {
  width: 3rem;
  height: 3rem;
  margin-right: 0.75rem;
  overflow: hidden;
}

.comment-input-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* User Comment */
.user-comment {
  display: flex;
  margin-bottom: 1.5rem;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 0.25rem;
  margin-right: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.comment-name {
  font-weight: 700;
  color: rgb(54, 88, 166);
  margin-right: 0.5rem;
}

.comment-location {
  color: #6b7280;
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.comment-text {
  font-size: 14px !important;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.comment-actions {
  display: flex;
  align-items: center;
  font-size: 14px !important;
  color: #6b7280;
}

.comment-actions button {
  color: #8e8e8e;
  margin-right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px !important;
  font-weight: 600;
}

.comment-actions button:hover {
  opacity: 0.8;
}

.comment-like-count {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 14px !important;
}

.comment-like-count img {
  width: 1.25rem;
  height: 1.125rem;
  margin-right: 0.25rem;
}

.comment-time {
  font-size: 14px !important;
}

/* Ensure ALL user comment content stays at 14px */
.user-comment *,
.user-comment p,
.user-comment span,
.user-comment button {
  font-size: 14px !important;
}

.user-comments .comment-name {
  font-size: 14px !important;
}

.user-comments .comment-location {
  font-size: 14px !important;
}

/* Sidebar */
.sidebar {
  display: none;
}

/* Trust Signals */
.trust-signals {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.trust-signals-header {
  background-color: #eff6ff;
  padding: 0.5rem 1rem;
}

.trust-signals-header h4 {
  font-weight: 700;
  margin-bottom: 0;
}

.trust-signals-content {
  background-color: white;
  padding: 1.5rem;
  padding-top: 1rem;
}

.trust-signal {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 18px;
}

.trust-signal:last-child {
  margin-bottom: 0;
}

.trust-signal .check {
  color: hsl(158, 64%, 40%);
}

/* Promo Section */
.promo-section {
  background-color: white;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.promo-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.promo-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.promo-stars {
  color: #facc15;
  margin-right: 0.5rem;
}

.promo-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(64, 92, 179);
}

.promo-image {
  width: 100%;
  margin-bottom: 1rem;
  object-fit: contain;
}

.promo-text {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: rgb(64, 92, 179) !important;
  margin-bottom: 1rem !important;
  line-height: 1.4 !important;
}

.promo-button {
  width: 100%;
  background-color: #16a34a;
  color: white !important;
  font-weight: 600 !important;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem !important;
  text-decoration: none !important;
  display: block;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
}

.promo-button:hover {
  background-color: #15803d;
}

/* Footer */
.site-footer {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand h5 {
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-section h5 {
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.25rem;
}

.footer-section a {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
}

.footer-section a:hover {
  color: hsl(220, 88%, 30%);
}

.footer-bottom {
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* Link Styles */
a.text-link {
  color: rgb(64, 92, 179);
  text-decoration: none;
}

a.text-link:hover {
  text-decoration: none;
}

a.underline-link {
  color: #2563eb;
  text-decoration: none;
}

a.underline-link:hover {
  color: #1d4ed8;
}

/* Utilities */
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.hidden { display: none; }

/* Responsive Styles */
@media (min-width: 640px) {
  .news-header-container {
    padding: 0 1.5rem;
  }
  
  .main-container {
    padding: 2rem 1.5rem;
  }
  
  .section-image {
    height: 435px;
  }
}

@media (min-width: 768px) {
  .article-byline {
    font-size: 14px !important;
  }
  
  .facebook-posts-container {
    columns: 2;
    column-gap: 1.5rem;
  }
  
  .facebook-post-image {
    height: auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .badge span {
    font-size: 16px !important;
  }
  
  h2, h3, h4, h5, h6, .font-serif {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }
  
  .article-headline {
    font-size: 40px !important;
    line-height: 1.2 !important;
  }
  
  .prose p, .main-content > section p, .text-sm, .text-base {
    font-size: 18px !important;
  }
  
  .facebook-post p,
  .facebook-post span,
  .facebook-post h4 {
    font-size: 14px !important;
  }
  
  .facebook-post .fb-actions button {
    font-size: 15px !important;
  }
  
  .facebook-post .fb-reactions {
    font-size: 13px !important;
  }
  
  .user-comment {
    display: flex;
    align-items: flex-start;
  }
  
  .comment-header-mobile {
    display: none;
  }
  
  .comment-header-desktop {
    display: flex !important;
  }
  
  /* Force ALL user comment content to 14px - override global 18px */
  [data-testid^="comment-"] *,
  [data-testid^="comment-"] p,
  [data-testid^="comment-"] span,
  [data-testid^="comment-"] button,
  .user-comment *,
  .user-comment p,
  .user-comment span,
  .user-comment button,
  .user-comments *,
  .comment-text,
  .comment-name,
  .comment-location,
  .comment-actions,
  .comment-actions button,
  .comment-like-count,
  .comment-time {
    font-size: 14px !important;
  }
}

@media (min-width: 1024px) {
  .news-header-container {
    padding: 0 2rem;
  }
  
  .main-container {
    padding: 2rem;
  }
  
  .content-grid {
    grid-template-columns: 773px 1fr;
  }
  
  .article-header-block {
    grid-column: 1;
    grid-row: 1;
  }
  
  .main-content,
  .lg-col-span-2 {
    grid-column: 1;
    grid-row: 2;
    width: 773px;
  }
  
  .lg-col-span-1 {
    grid-column: span 1;
  }
  
  .sidebar {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 10;
  }
  
  .sidebar-inner {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
  }
  
  .desktop-headline {
    font-size: 30px;
    line-height: 1.3;
  }
  
  .desktop-body {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  section h3 {
    line-height: 1.15 !important;
  }
  
  .article-byline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .article-byline .bullet-separator {
    display: none;
  }
  
  .facebook-posts-slider {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  .facebook-posts-slider::-webkit-scrollbar {
    display: none;
  }
  
  .facebook-posts-slider .facebook-post {
    min-width: 85vw;
    max-width: 85vw;
    flex-shrink: 0;
    scroll-snap-align: center;
    margin-bottom: 0;
  }
  
  .comment-header-desktop {
    display: none !important;
  }
  
  .comment-header-mobile {
    display: flex;
  }
}

/* Hide number input spinner arrows */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* User Comments Wrapper */
.user-comments {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Footer responsive grid */
footer > div > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  footer > div > div:first-child {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

/* Comment like count with icon */
.comment-like-count {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}

.comment-like-count img {
  margin-right: 0.25rem;
}

.comment-time {
  font-size: 0.75rem;
}

/* Flex utilities */
.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.space-x-2 > * + * {
  margin-left: 0.5rem;
}

.space-x-8 > * + * {
  margin-left: 2rem;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.w-4 {
  width: 1rem;
}

.h-4 {
  height: 1rem;
}

.w-3 {
  width: 0.75rem;
}

.h-3 {
  height: 0.75rem;
}

/* ============================================
   FINAL FONT SIZE OVERRIDES - HIGHEST PRIORITY
   These rules come last to override all others
   ============================================ */

/* Facebook Posts - Force correct font sizes */
.facebook-post .facebook-post-header h4,
[data-testid*="facebook-post"] .facebook-post-header h4,
.facebook-post .name,
.comment-name {
  font-size: 14px !important;
  font-weight: 600 !important;
}

.facebook-post .facebook-post-time,
.facebook-post p.facebook-post-time,
[data-testid*="facebook-post"] .facebook-post-time {
  font-size: 14px !important;
}

.facebook-post .facebook-post-text,
.facebook-post p.facebook-post-text,
[data-testid*="facebook-post"] .facebook-post-text {
  font-size: 14px !important;
  line-height: 20px !important;
}

.facebook-post .facebook-reactions,
.facebook-post .facebook-reactions > span,
[data-testid*="facebook-post"] .facebook-reactions,
[data-testid*="facebook-post"] .facebook-reactions > span {
  font-size: 13px !important;
}

.facebook-post .facebook-reactions-icons span {
  font-size: 14px !important;
}

.facebook-post .facebook-reactions-icons .reaction-count,
.facebook-reactions-icons .reaction-count {
  font-size: 13px !important;
}

.facebook-post .facebook-actions,
.facebook-post .facebook-actions button,
[data-testid*="facebook-post"] .facebook-actions,
[data-testid*="facebook-post"] .facebook-actions button {
  font-size: 15px !important;
}

.facebook-post .facebook-comment-text,
.facebook-post .facebook-comment-text .name,
.facebook-post .facebook-comments p,
[data-testid*="facebook-post"] .facebook-comment-text,
[data-testid*="facebook-post"] .facebook-comments p {
  font-size: 14px !important;
}

.facebook-post .facebook-comment-actions,
.facebook-post .facebook-comment-actions button,
.facebook-post .facebook-comment-actions span,
[data-testid*="facebook-post"] .facebook-comment-actions,
[data-testid*="facebook-post"] .facebook-comment-actions * {
  font-size: 14px !important;
}

/* User Comments Section - Force 14px for ALL elements */
.user-comments .user-comment *,
.user-comments .comment-text,
.user-comments .comment-name,
.user-comments .comment-location,
.user-comments .comment-actions,
.user-comments .comment-actions button,
.user-comments .comment-actions span,
.user-comments .comment-like-count,
.user-comments .comment-time,
[data-testid^="comment-"] *,
[data-testid^="comment-"] p,
[data-testid^="comment-"] span,
[data-testid^="comment-"] button {
  font-size: 14px !important;
}

/* H1 Styles */
h1 {
  font-size: 24px !important;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: normal;
  color: #333;
}

@media (min-width: 768px) {
  h1 {
    font-size: 36px !important;
    font-family: 'Open Sans', sans-serif;
  }
}

/* H2 Styles for v2 */
h2 {
  font-size: 17px !important;
  letter-spacing: -1px;
  font-weight: 700;
  line-height: normal;
  color: #333;
}

@media (min-width: 768px) {
  h2 {
    font-size: 36px !important;
    font-family: 'Open Sans', sans-serif;
  }
  
  p,
  article p,
  section p,
  .prose p {
    font-size: 19px !important;
  }
}
