﻿:root {
  --token-color-bg: #f3f4f6;
  --token-color-text: #252a32;
  --token-color-teal: #00465a;
  --token-color-white: #fff;
  --token-color-muted: #9b9b9b;
  --token-color-accent: #47901a;
  --token-color-accent-hover: #019e3f;
  --token-font-sans: "Montserrat", system-ui, sans-serif;
  --token-font-serif: "Bitter", Georgia, serif;
  --token-font-alt: "Poppins", system-ui, sans-serif;
  --token-font-ui: "Roboto", system-ui, sans-serif;
  --token-max: 1170px;
  --token-radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--token-font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--token-color-text);
  background: var(--token-color-bg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.layout-container {
  max-width: var(--token-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.site-header {
  background: var(--token-color-teal);
  color: var(--token-color-white);
}

.site-header__inner {
  padding: 7px 16px;
}

.site-header__brand {
  margin: 0;
  font-family: "Alegreya", Georgia, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
}

.content-wrap {
  background: var(--token-color-bg);
  min-height: 100vh;
  padding-bottom: 96px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: start;
}

@media (max-width: 899px) {
  .layout-container.layout {
    padding-left: 0;
    padding-right: 0;
  }
  .site-header__inner {
    padding: 7px 16px;
    }
}

@media (min-width: 900px) {
  .layout {
    grid-template-columns: minmax(0, 1fr) 25%;
    gap: 25px;
  }
}

.article {
  min-width: 0;
  padding: 18px 16px;
  background: var(--token-color-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--token-radius);
}

@media (min-width: 600px) {
  .article {
    padding: 22px 20px;
  }
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 14px;
  margin: 20px 0;
}

.article-share .article-figure--thumb {
  margin: 0 !important;
}

.thread {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid #e9ebee;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.38;
  color: #050505;
}

.thread .comment {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0 12px;
  border-bottom: 1px solid #e9ebee;
}

.thread .comment:last-child {
  border-bottom: none;
}

.thread .comment--reply {
  margin-left: 40px;
  padding-left: 14px;
  border-left: 1px dashed #ccd0d5;
}

.thread .comment__avatar {
  flex: 0 0 48px;
  margin: 0 !important;
}

.thread .comment__avatar img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.thread .comment__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 4px;
  row-gap: 2px;
}

.thread .comment__author,
.thread .comment__text,
.thread .comment__attach {
  flex: 0 0 100%;
  width: 100%;
}

.thread .comment__main .prose {
  font-family: inherit !important;
  font-size: inherit;
  line-height: 1.38;
  color: inherit;
  margin: 0 0 4px;
}

.thread .comment__author,
.thread .comment__text {
  margin-bottom: 2px;
}

.thread .comment__actions,
.thread .comment__stats {
  margin: 0;
  flex: 0 0 auto;
}

.thread .comment__actions p,
.thread .comment__stats p {
  margin: 0;
}

.thread .comment__main .comment__actions,
.thread .comment__main .comment__stats {
  margin-bottom: 0;
}

.thread .comment__author strong {
  color: #365899;
  font-weight: 600;
  font-size: 13px;
}

.thread .comment__text {
  color: #050505;
}

.thread .comment__actions {
  color: #90949c;
  font-size: 12px;
}

.thread .comment__actions p > span:nth-child(1),
.thread .comment__actions p > span:nth-child(3) {
  color: #4267b2;
  font-weight: 600;
}

.thread .comment__stats {
  color: #90949c;
  font-size: 12px;
}

.thread .comment__stats strong {
  color: #90949c;
  font-weight: 600;
}

.thread .comment__like-icon {
  margin: 0 !important;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.thread .comment__like-icon img {
  width: 14px !important;
  max-height: none !important;
  height: auto;
  border-radius: 0;
}

.thread .comment__attach {
  margin: 8px 0 !important;
}

.thread .comment__attach img {
  display: block;
  max-width: min(100%, 240px);
  height: auto;
  border-radius: 8px;
}

.sidebar-digest + .sidebar-stories {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e5e7eb;
}

.sidebar-stories .sidebar-story__photo {
  margin: 0 0 0;
}

.sidebar-stories .sidebar-story__photo img {
  border: 1px solid #d1d5db;
}

.sidebar-stories .sidebar-story__meta {
  margin: 0 0 1rem;
}

.sidebar-stories .sidebar-story__disclaimer {
  margin: 6px 0 0;
  padding: 0;
  font-family: var(--token-font-serif);
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: #6b7280;
  text-align: center;
}

.sidebar-stories .sidebar-story__byline {
  margin: 10px 0 0;
  padding: 0;
  font-family: var(--token-font-serif);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
  color: #1a3053;
}

.sidebar-stories .sidebar-story__byline strong {
  color: #365899;
  font-weight: 700;
}

.sidebar-stories .sidebar-story__location {
  color: #6b7280;
  font-weight: 400;
}

.sidebar {
  min-width: 0;
  padding: 12px 14px 20px;
  background: var(--token-color-white);
  border: 1px solid #e5e7eb;
  border-radius: var(--token-radius);
}

@media (min-width: 900px) {
  .sidebar {
    position: sticky;
    top: 16px;
    align-self: start;
  }
}

.lead-wrap {
  padding-bottom: 32px;
}

.prose {
  font-family: var(--token-font-serif);
  font-size: 16px;
  line-height: 1.45;
  color: #1a3053;
  margin: 0 0 1rem;
}

main.article h2 {
  font-family: var(--token-font-serif);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  text-align: left;
  margin: 1.4rem 0 1rem;
  hyphens: auto;
  overflow-wrap: break-word;
}

@media (max-width: 599px) {
  main.article h2 {
    font-size: clamp(1.05rem, 4.8vw, 1.35rem);
    letter-spacing: 0.03em;
  }

  main.article h2.article-h2--split .article-h2__line2 {
    display: block;
  }
}

.prose--breadcrumb {
  font-family: var(--token-font-alt);
  font-size: 14px;
  color: #1a3053;
}

.article-breadcrumb-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.75rem;
}

.article-breadcrumb-row .article-figure--breadcrumb-icon {
  margin: 0 !important;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.article-breadcrumb-row .article-figure--breadcrumb-icon img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
  vertical-align: middle;
}

.article-breadcrumb-row .prose--breadcrumb {
  margin: 0 !important;
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.article-breadcrumb-row .prose--breadcrumb p {
  margin: 0;
  line-height: 1.4;
}

.article-author-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  margin: 0 0 1rem;
}

.article-author-share .prose--byline {
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--token-font-alt);
  font-size: 14px;
}

.article-author-share .prose--byline p {
  margin: 0;
}

.article-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.article-social .article-social__btn {
  margin: 0 !important;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.article-social .article-social__btn picture,
.article-social .article-social__btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-social .article-social__btn img {
  max-height: none !important;
}

.article-urgency-callout {
  margin: 1rem 0 1.1rem;
  padding: 16px 18px;
  background: #fff9e3;
  font-family: var(--token-font-serif);
  font-size: 16px;
  line-height: 1.45;
  color: #1a3053;
}

.article-urgency-callout p:first-child span {
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

main.article h1.article-headline {
  font-family: var(--token-font-serif);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.25;
  color: #0c0c0c;
  font-weight: 400;
  margin: 0 0 1rem;
}

main.article h1.article-headline strong {
  font-weight: 700;
}

.sidebar .prose {
  font-size: 15px;
}

.prose p {
  margin: 0 0 0.75rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose .article-urgency-callout p {
  margin: 0 0 0.5rem;
  font-weight: 700;
  font-style: italic;
}

.prose .article-urgency-callout p:last-child {
  margin-bottom: 0;
}

.prose strong {
  font-weight: 700;
}

.prose a {
  color: #1a5f9e;
  text-decoration: underline;
}

.prose .article-cost-block {
  margin: 0 0 1rem;
}

.prose .article-cost-block__title {
  font-family: var(--token-font-serif);
  font-size: inherit;
  font-weight: 700;
  line-height: 1.45;
  color: #1a3053;
  margin: 0 0 0.5rem;
}

.prose .article-cost-block__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--token-font-serif);
  font-size: inherit;
  line-height: 1.45;
  color: #1a3053;
}

.prose .article-cost-block__list li {
  margin: 0 0 0.5rem;
}

.prose .article-cost-block__list li:last-child {
  margin-bottom: 0;
}

.article-figure {
  margin: 1rem 0;
  padding: 0;
}

.article-figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--token-radius);
}

.article-figure--video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--token-radius);
  background: #0c0c0c;
}

.article-figure--thumb {
  margin: 0.35rem 0;
}

.article-figure--thumb img {
  width: auto;
  max-height: 48px;
}

.btn-row {
  margin: 1rem 0;
  text-align: center;
}

.sidebar .btn-row {
  margin: 0.75rem 0 1.25rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 14px 20px;
  font-family: var(--token-font-alt);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #fff !important;
  text-decoration: none !important;
  background: var(--token-color-accent);
  border-radius: var(--token-radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn--cta-hero {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 35px;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #4c9124 !important;
}

.btn--cta-hero:hover {
  background: #3d781d !important;
}

.article-cta-offer__link-wrap {
  margin: 0.4rem 0 0.2rem;
  text-align: center;
}

.article-cta-offer__link {
  color: #1a5f9e;
  font-weight: 600;
  text-decoration: underline;
  font-family: var(--token-font-alt);
  font-size: 15px;
}

.article-cta-offer__link:hover {
  color: #134a7a;
}

.article-cta-offer__urgent {
  margin: 0.35rem 0;
  text-align: center;
  color: #c41e3a;
  font-weight: 700;
  font-family: var(--token-font-serif);
  font-size: 16px;
}

.article-internet-offer {
  margin: 1rem 0 1.25rem;
  border: 2px solid #8b1538;
  background: var(--token-color-white);
  text-align: center;
  font-family: var(--token-font-serif);
  color: #1a3053;
  overflow: hidden;
}

.article-internet-offer__headline {
  margin: 0;
  padding: 12px 14px 10px;
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.article-internet-offer__figure {
  margin: 0;
  padding: 0;
  line-height: 0;
}

.article-internet-offer__figure img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border-radius: 0;
}

.article-internet-offer__footer {
  padding: 10px 14px 14px;
}

.article-internet-offer__limited {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.35;
  text-transform: uppercase;
}

.article-internet-offer__deal {
  margin: 0;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.35;
  text-transform: uppercase;
}

.article-promo-notice {
  margin: 1rem 0;
  padding: 14px 18px;
  background: #fff9c4;
  border: 1px dashed #9b2335;
  border-radius: var(--token-radius);
  text-align: center;
  font-family: var(--token-font-serif);
  font-size: 16px;
  line-height: 1.5;
  color: #1a3053;
}

.article-promo-notice p {
  margin: 0;
}

.article-promo-notice__label {
  color: #c41e3a;
  font-weight: 700;
}

.article-promo-notice__text {
  font-weight: 400;
}

.btn:hover {
  background: var(--token-color-accent-hover);
}

.lead {
  margin: 0;
  padding: 20px;
  background: var(--token-color-white);
  border-radius: var(--token-radius);
  border: 1px solid #e5e7eb;
}

.lead__control {
  margin-bottom: 12px;
}

.lead__input {
  width: 100%;
  padding: 11px 15px;
  font-size: 14px;
  border: 1px solid #c5c7d2;
  border-radius: 6px;
  font-family: var(--token-font-ui);
}

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  border-top: 1px solid #e5e7eb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease,
    -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.sticky-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.sticky-bar--mobile.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sticky-bar--desktop {
  display: none;
}

@media (min-width: 601px) {
  .sticky-bar--mobile,
  .sticky-bar--mobile.is-visible {
    display: none !important;
  }

  .sticky-bar--desktop.is-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
  }
}

@media (max-width: 600px) {
  .sticky-bar--desktop,
  .sticky-bar--desktop.is-visible {
    display: none !important;
  }
}

.sticky-bar__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 520px;
  padding: 15px 24px;
  font-family: var(--token-font-sans);
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #4c9124;
  -webkit-border-radius: var(--token-radius);
  border-radius: var(--token-radius);
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

.sticky-bar__cta:hover {
  background: #3d781d;
}

.site-footer {
  background: var(--token-color-teal);
  color: var(--token-color-muted);
  padding: 32px 0 48px;
  margin-top: 0;
}

.site-footer__inner {
  font-family: var(--token-font-alt);
  font-size: 13px;
  text-align: center;
}

.site-footer__inner p {
  margin: 0 0 0.75rem;
}

.site-footer__inner a {
  color: #c5d9e0;
  text-decoration: underline;
}

.site-footer__rule {
  height: 0;
  border: 0;
  border-top: 1px solid #50b7d5;
  margin: 16px auto;
  max-width: 200px;
}
