:root {
  --ink: #1e1e1e;
  --muted: #6e6e6e;
  --rule: #dedede;
  --soft: #f1f1f1;
  --brand-red: #d62828;
  --footer: #202020;
  --page-width: 990px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

[hidden] { display: none !important; }

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(2px);
}
.loading-card {
  min-width: 220px;
  padding: 24px 28px 21px;
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .15);
}
.loading-spinner {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  border: 3px solid #dedede;
  border-top-color: #242424;
  border-radius: 50%;
  animation: loading-spin .8s linear infinite;
}
.loading-status { margin: 0; color: #232323; font-size: 14px; font-weight: 700; }
.loading-return { min-height: 17px; margin: 7px 0 0; color: #777; font-size: 12px; }
.loading-overlay.failed .loading-spinner { display: none; }
.loading-overlay.failed .loading-status { color: #a52222; }
@keyframes loading-spin { to { transform: rotate(360deg); } }

a { color: inherit; text-decoration: none; }
a:hover { color: #111; }

button { font: inherit; }

.top-ad-space { height: 252px; }

.site-shell,
.footer-inner {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 0 auto;
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 41px;
  border-top: 1px solid var(--rule);
  color: #424242;
  font-size: 12px;
  position: relative;
  z-index: 20;
}

.utility-left { display: flex; align-items: center; gap: 8px; }
.flag { font-size: 13px; }
.chevron { color: #888; font-size: 14px; margin-right: 4px; }
.utility-divider { height: 16px; width: 1px; background: #d4d4d4; margin: 0 5px; }
.weather { margin-left: 3px; }
.cloud { font-size: 18px; vertical-align: -2px; margin-left: 3px; }
.sign-in { color: #5c5c5c; }

.dropdown { position: relative; }
.utility-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
}
.utility-select:hover { color: #111; }
.utility-select .chevron { margin-left: 0; transition: transform .18s ease; }
.dropdown.open .utility-select .chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 5px);
  left: -8px;
  display: none;
  min-width: 112px;
  padding: 6px 0;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 24px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-top: 1px solid #e2e2e2;
  border-left: 1px solid #e2e2e2;
  transform: rotate(45deg);
}
.dropdown.open .dropdown-menu { display: block; }
.dropdown-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  color: #4a4a4a;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}
.dropdown-menu button:hover,
.dropdown-menu button[aria-selected="true"] { background: #f4f4f4; color: #111; }
.language-switcher .dropdown-menu { min-width: 128px; }

.masthead {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-bottom: 1px solid var(--rule);
}

.brand {
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -1.5px;
}

.primary-nav {
  border-bottom: 1px solid #222;
  overflow: hidden;
}

.primary-nav-scroll {
  display: flex;
  align-items: center;
  min-height: 41px;
  gap: 17px;
  white-space: nowrap;
  overflow: hidden;
}

.nav-link,
.epaper-link,
.live-link,
.icon-link { font-size: 13px; }

.nav-link-active {
  padding: 6px 13px;
  color: white;
  background: #282828;
  border-radius: 4px;
  font-weight: 700;
  position: relative;
}

.nav-link-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #222;
  transform: translateX(-50%);
}

.live-link {
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid #e0d4d4;
  border-radius: 8px;
  background: #fff3f1;
  color: #383838;
}

.live-dot { color: #d34b58; font-size: 10px; margin-right: 3px; }
.epaper-link { color: #ac4b51; }
.icon-link { font-size: 24px; line-height: 1; }
.menu-icon { font-size: 19px; }

.secondary-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  min-height: 42px;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  color: #6d6d6d;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumbs a { color: #222; }
.breadcrumbs span:last-child { text-overflow: ellipsis; overflow: hidden; }

.trending-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 41px;
  margin-bottom: 26px;
  overflow: hidden;
  white-space: nowrap;
}

.trending-label {
  padding: 6px 12px 6px 8px;
  color: #fff;
  background: #505050;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.pin { color: #e3232b; font-size: 13px; margin-right: 4px; }
.trend-chip {
  padding: 6px 13px;
  background: #f0f0f0;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  font-size: 12px;
}

.trend-arrows { display: flex; margin-left: auto; }
.trend-arrows button {
  width: 25px;
  height: 25px;
  padding: 0;
  color: #3d3d3d;
  background: #fff;
  border: 1px solid var(--rule);
  font-size: 21px;
  line-height: 20px;
}
.trend-arrows button + button { border-left: 0; border-radius: 0 5px 5px 0; }
.trend-arrows button:first-child { border-radius: 5px 0 0 5px; }

.link-preview-demo { max-width: 610px; margin: 0 0 32px; }
.link-preview-label { margin-bottom: 8px; color: #7a7a7a; font-size: 12px; }
.link-composer { display: flex; gap: 8px; margin-bottom: 9px; }
.link-composer input { min-width: 0; flex: 1; height: 34px; padding: 0 10px; color: #333; border: 1px solid #d0d0d0; border-radius: 4px; font: inherit; font-size: 12px; }
.preview-submit { height: 34px; padding: 0 12px; color: #fff; background: #4c3c72; border: 0; border-radius: 4px; font-size: 12px; cursor: pointer; }
.link-preview-card { overflow: hidden; padding: 9px 11px 10px; background: #efe5fa; border-radius: 8px; }
.preview-url { display: block; margin-bottom: 9px; color: #0875ba; font-size: 16px; line-height: 1.35; overflow-wrap: anywhere; }
.preview-site { margin-bottom: 4px; color: #7f2bd1; font-size: 19px; font-weight: 700; }
.preview-title { margin: 0 0 4px; color: #111; font-size: 20px; line-height: 1.18; }
.preview-summary { margin: 0 0 8px; color: #171717; font-size: 17px; line-height: 1.32; }
.preview-image-wrap { position: relative; }
.preview-image { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 5px; }
.preview-logo { position: absolute; top: 13px; left: 10px; padding: 4px 5px; color: #fff; background: #e32227; font-family: Georgia, serif; font-size: 16px; font-weight: 700; }
.preview-zoom { position: absolute; top: 11px; right: 10px; display: grid; place-items: center; width: 28px; height: 28px; color: #fff; background: rgba(0,0,0,.6); border: 2px solid #fff; border-radius: 50%; font-size: 22px; line-height: 1; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 650px) 1fr;
  gap: 42px;
}

.article h1 {
  max-width: 680px;
  margin: 0 0 19px;
  font-size: 39px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.article-meta-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.byline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 245px;
  color: #4f4f4f;
  font-size: 12px;
  line-height: 1.5;
}
.byline a { color: #1d1d1d; }

.article-actions { display: flex; gap: 8px; }
.article-actions button,
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  color: #4f4f4f;
  background: #fff;
  border: 1px solid #c9c9c9;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
}
.article-actions .print-button,
.article-actions .text-size-button { width: 35px; padding: 0; font-size: 18px; }
.article-actions .text-size-button { font-size: 14px; }

.hero-figure { margin: 0 0 23px; }
.hero-figure img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 9px; }
.hero-figure figcaption { margin-top: 7px; color: #7b7b7b; font-size: 11px; }

.article-body { font-size: 17px; line-height: 1.68; }
.article-body p { margin: 0 0 20px; }
.article-body a { color: #1566a3; }
.article-body h2 { margin: 25px 0 10px; font-size: 20px; line-height: 1.3; }
.check-links { font-size: 14px; line-height: 1.75; }
.check-links strong { color: #222; }

.app-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 69px;
  margin: 28px 0 36px;
  padding: 12px 16px;
  background: #f8f8f8;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.4;
}
.app-icon { display: grid; place-items: center; width: 39px; height: 39px; color: #fff; background: #d52732; border-radius: 9px; font-size: 11px; font-weight: 700; }
.app-arrow { margin-left: auto; color: #777; font-size: 27px; }

.author-card {
  display: flex;
  gap: 17px;
  margin: 38px 0 45px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.author-card img { width: 55px; height: 55px; border-radius: 50%; object-fit: cover; }
.author-card > div { min-width: 0; }
.author-card strong { display: block; margin-bottom: 4px; font-size: 12px; }
.author-card a { display: block; color: #1d1d1d; font-size: 14px; font-weight: 700; }
.author-card p { margin: 9px 0 8px; color: #666; font-size: 13px; line-height: 1.55; }
.read-more { min-height: 24px; padding: 0; border: 0; color: #222; font-weight: 700; }

.end-of-article { margin: 34px 0 56px; text-align: center; color: #666; font-size: 13px; }
.end-of-article::before,
.end-of-article::after { content: ""; display: inline-block; width: 84px; height: 1px; margin: 0 12px 4px; background: var(--rule); }

.side-rail { padding-top: 1px; }
.side-ad-label { color: #747474; font-size: 12px; text-align: center; }
.lower-ad-label { margin-top: 24px; }
.mock-ad { display: block; margin-top: 8px; overflow: hidden; background: #fff; color: #111; border: 1px solid #e4e4e4; box-shadow: 0 2px 10px rgba(0, 0, 0, .04); }
.mock-ad:hover { color: #111; box-shadow: 0 4px 16px rgba(0, 0, 0, .09); }
.ad-visual { position: relative; overflow: hidden; }
.ac-stage { height: 205px; background: linear-gradient(180deg, #c9d1d3 0%, #e7e5de 50%, #d1d0ca 100%); }
.window-glow { position: absolute; inset: 0 0 32% 0; background: linear-gradient(115deg, rgba(255,255,255,.65), transparent 48%), repeating-linear-gradient(90deg, rgba(68, 77, 80, .18) 0 2px, transparent 2px 44px); opacity: .55; }
.ac-unit { position: absolute; left: 16px; right: 16px; bottom: 19px; height: 87px; background: linear-gradient(#fff, #e6e6e4); border-radius: 7px 7px 13px 13px; box-shadow: 0 12px 12px rgba(40, 47, 48, .28); }
.ac-unit::before { content: ""; position: absolute; left: -7px; top: 28px; width: 30px; height: 50px; background: repeating-linear-gradient(180deg, #2f3233 0 3px, transparent 3px 7px); border-radius: 2px; opacity: .85; }
.ac-display { position: absolute; left: 67px; top: 22px; display: flex; align-items: center; gap: 8px; padding: 7px 9px; color: #c1eb55; background: #111c1b; border-radius: 4px; font-family: monospace; font-size: 13px; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.ac-display i { color: #59a6de; font-style: normal; font-size: 10px; }
.ac-brand { position: absolute; right: 18px; top: 19px; color: #303335; font-size: 9px; font-weight: 700; letter-spacing: 1px; }
.ac-vent { position: absolute; left: 53px; right: 30px; bottom: 4px; display: flex; gap: 5px; }
.ac-vent span { flex: 1; height: 11px; border-radius: 0 0 7px 7px; background: #c9c9c7; border-bottom: 2px solid #aaa; }
.ac-air { position: absolute; left: 52px; right: 32px; bottom: -11px; display: flex; gap: 8px; opacity: .5; }
.ac-air span { width: 30%; height: 28px; border-radius: 50%; background: linear-gradient(180deg, #e9f4f5, transparent); transform: skewX(-18deg); }
.ad-copy { padding: 13px 9px 0; }
.ad-copy h3 { margin: 0; font-size: 21px; line-height: 1.08; font-weight: 800; letter-spacing: -.5px; }
.ad-rule { height: 1px; margin: 41px 0 15px; background: #dedede; }
.ad-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 7px 10px; color: #222; font-size: 12px; }
.ad-footer button { padding: 5px 13px; color: #4a4a4a; background: #eeeeee; border: 0; border-radius: 3px; font-weight: 700; cursor: pointer; }
.comfort-stage { height: 130px; background: linear-gradient(145deg, #e5f1ef, #aec9c4); }
.comfort-sun { position: absolute; top: 15px; right: 22px; width: 55px; height: 55px; background: #f4d78f; border-radius: 50%; opacity: .85; }
.comfort-sofa { position: absolute; left: 32px; bottom: 24px; width: 182px; height: 43px; background: #799b95; border-radius: 14px 14px 7px 7px; box-shadow: 0 12px 0 -4px #557a74; }
.comfort-sofa::before, .comfort-sofa::after { content: ""; position: absolute; top: -21px; width: 78px; height: 34px; background: #86aaa3; border-radius: 12px 12px 4px 4px; }
.comfort-sofa::before { left: 13px; } .comfort-sofa::after { right: 13px; }
.comfort-plant { position: absolute; right: 23px; bottom: 18px; width: 28px; height: 82px; }
.comfort-plant b { position: absolute; bottom: 0; left: 4px; width: 22px; height: 18px; background: #b77b52; border-radius: 0 0 8px 8px; }
.comfort-plant span { position: absolute; bottom: 17px; left: 12px; width: 7px; height: 45px; background: #487c70; border-radius: 100% 0; transform-origin: bottom; }
.comfort-plant span:nth-child(1) { transform: rotate(-35deg); } .comfort-plant span:nth-child(2) { transform: rotate(8deg); } .comfort-plant span:nth-child(3) { transform: rotate(38deg); }
.compact-copy { padding-bottom: 14px; }
.compact-copy h3 { font-size: 17px; }
.compact-copy p { margin: 5px 0 10px; color: #626262; font-size: 12px; }
.ad-cta { display: inline-block; margin-top: 11px; color: #176c67; font-size: 12px; font-weight: 700; }
.ad-cta b { font-size: 16px; }
.purifier-stage { display: flex; align-items: center; justify-content: center; height: 122px; background: linear-gradient(140deg, #d8e5f2, #8eb2d2); }
.purifier-device { position: relative; width: 76px; height: 96px; background: linear-gradient(90deg, #fff, #e0e7ef); border-radius: 14px 14px 10px 10px; box-shadow: 13px 9px 0 rgba(48, 94, 136, .16); }
.purifier-light { position: absolute; top: 17px; left: 17px; width: 42px; height: 6px; background: #62b9a2; border-radius: 6px; box-shadow: 0 0 8px #62b9a2; }
.purifier-grille { position: absolute; left: 17px; right: 17px; bottom: 15px; height: 32px; background: repeating-linear-gradient(180deg, #a6b8c5 0 2px, transparent 2px 6px); opacity: .85; }
.purifier-copy { margin-left: 19px; color: #fff; font-size: 22px; line-height: .92; letter-spacing: 2px; text-shadow: 0 1px 3px rgba(0,0,0,.18); }
.purifier-copy strong { font-size: 27px; letter-spacing: 0; }

.social-section,
.video-section { margin-top: 17px; margin-bottom: 48px; }
.section-heading { display: flex; align-items: center; gap: 13px; margin-bottom: 19px; font-size: 18px; font-weight: 700; }
.heading-rule { flex: 1; height: 1px; background: var(--rule); }
.view-all { color: #a70000; font-size: 12px; font-weight: 400; }
.social-buttons { display: flex; gap: 9px; }
.social-buttons a { display: grid; place-items: center; width: 33px; height: 33px; color: #fff; background: #333; border-radius: 50%; font-size: 17px; font-weight: 700; }
.social-buttons a:first-child { background: #2461a4; }
.social-buttons a:nth-child(3) { background: #a84776; }
.social-buttons a:nth-child(4) { background: #e52e2e; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card { position: relative; display: block; }
.video-card img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 7px; filter: saturate(.78); }
.video-card .play { position: absolute; top: 44%; left: 50%; display: grid; place-items: center; width: 35px; height: 35px; color: #fff; background: rgba(0, 0, 0, .62); border-radius: 50%; transform: translate(-50%, -50%); font-size: 13px; }
.video-card strong { display: block; margin-top: 9px; font-size: 14px; line-height: 1.35; }

.site-footer { margin-top: 74px; padding: 36px 0 20px; color: #e8e8e8; background: var(--footer); }
.footer-brand { padding-bottom: 25px; border-bottom: 1px solid #4c4c4c; font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 700; letter-spacing: -1px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; padding: 26px 0 29px; border-bottom: 1px solid #4c4c4c; }
.footer-grid strong { display: block; margin-bottom: 12px; font-size: 12px; }
.footer-grid a { display: block; margin-bottom: 8px; color: #b9b9b9; font-size: 12px; }
.footer-bottom { padding-top: 18px; color: #989898; font-size: 11px; }

@media (max-width: 780px) {
  .top-ad-space { height: 125px; }
  .site-shell, .footer-inner { width: min(100% - 24px, 650px); }
  .utility-bar { min-height: 37px; }
  .weather, .utility-divider { display: none; }
  .brand { font-size: 24px; letter-spacing: -1px; }
  .primary-nav-scroll { gap: 14px; overflow-x: auto; }
  .primary-nav-scroll::-webkit-scrollbar { display: none; }
  .secondary-nav { gap: 18px; overflow-x: auto; white-space: nowrap; }
  .breadcrumbs { min-height: 60px; }
  .trending-row { overflow-x: auto; margin-bottom: 18px; }
  .trending-row::-webkit-scrollbar { display: none; }
  .content-grid { display: block; }
  .side-rail { display: none; }
  .article h1 { font-size: 31px; letter-spacing: -.7px; }
  .article-meta-row { display: block; }
  .article-actions { margin-top: 13px; }
  .article-body { font-size: 16px; }
  .video-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 440px) {
  .utility-left { gap: 5px; font-size: 11px; }
  .sign-in { font-size: 11px; }
  .brand { font-size: 20px; }
  .link-composer { display: block; }
  .link-composer input { width: 100%; }
  .preview-submit { width: 100%; margin-top: 7px; }
  .secondary-nav { font-size: 11px; }
  .article h1 { font-size: 28px; }
  .article-actions { gap: 5px; }
  .article-actions button { padding: 0 7px; font-size: 11px; }
  .article-actions .print-button, .article-actions .text-size-button { width: 31px; }
  .author-card { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
}
