:root {
  --bg: #fff9df;
  --paper: rgba(255, 255, 248, .92);
  --ink: #17211d;
  --muted: #66736c;
  --line: rgba(196, 209, 170, .78);
  --green: #1f6f4a;
  --leaf: #7fba45;
  --sun: #f2b43f;
  --water: #28a3b5;
  --rose: #f6a66b;
  --shadow: 0 20px 54px rgba(71, 97, 49, .15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 230, 113, .50), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(121, 219, 164, .46), transparent 30%),
    linear-gradient(135deg, #fff9dc 0%, #f3ffe7 45%, #e9fbff 100%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

.animated-bg {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.animated-bg span {
  animation: floatGlow 18s ease-in-out infinite;
  background: radial-gradient(circle, rgba(255, 255, 255, .88), rgba(255, 213, 86, .34) 36%, rgba(109, 214, 153, .16) 64%, transparent 72%);
  border-radius: 50%;
  filter: blur(1px);
  height: 230px;
  position: absolute;
  width: 230px;
}

.animated-bg span:nth-child(1) {
  right: 6%;
  top: 14%;
}

.animated-bg span:nth-child(2) {
  animation-delay: -5s;
  background: radial-gradient(circle, rgba(255, 255, 255, .78), rgba(101, 201, 222, .32) 42%, transparent 72%);
  left: 8%;
  top: 34%;
}

.animated-bg span:nth-child(3) {
  animation-delay: -10s;
  background: radial-gradient(circle, rgba(255, 245, 194, .82), rgba(246, 166, 107, .27) 42%, transparent 72%);
  bottom: 8%;
  right: 28%;
}

.animated-bg span:nth-child(4) {
  animation-delay: -14s;
  background: radial-gradient(circle, rgba(236, 255, 220, .86), rgba(127, 186, 69, .26) 44%, transparent 74%);
  bottom: 22%;
  left: 22%;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: .72;
  }

  50% {
    transform: translate3d(34px, -42px, 0) scale(1.16);
    opacity: 1;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  background: rgba(255, 255, 248, .86);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 20px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(222, 216, 202, .7);
}

.nav {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.brand-mark {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--leaf));
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 18px;
  color: #29372f;
  font-size: 15px;
}

.nav-links a:hover {
  color: var(--green);
}

.menu-toggle {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  font-size: 22px;
  height: 42px;
  width: 42px;
}

.hero {
  align-items: stretch;
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1.14fr);
  gap: 28px;
  max-width: 1180px;
  margin: 28px auto 20px;
  padding: 0 20px;
}

.hero-copy {
  align-content: center;
  background: linear-gradient(155deg, rgba(255, 255, 250, .96), rgba(241, 255, 227, .92));
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  padding: 36px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h2 {
  font-size: 26px;
  line-height: 1.35;
}

h3 {
  font-size: 20px;
  line-height: 1.45;
}

.hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.hero img {
  border-radius: 8px;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-bright img {
  border: 1px solid rgba(255, 255, 255, .8);
}

.hero-actions,
.footer-links,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  border-radius: 8px;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-width: 120px;
  padding: 10px 18px;
}

.button.primary {
  background: var(--green);
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
}

.ticker {
  align-items: center;
  background: linear-gradient(90deg, #1f6f4a, #28a3b5);
  color: #fff;
  display: flex;
  gap: 18px;
  max-width: 1140px;
  margin: 0 auto 32px;
  padding: 12px 18px;
}

.ticker strong {
  color: #f0c36e;
  white-space: nowrap;
}

.ticker div {
  display: flex;
  gap: 22px;
  overflow: hidden;
  white-space: nowrap;
}

.value-strip {
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 255, 248, .92), rgba(228, 255, 218, .9));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto 32px;
  padding: 22px;
}

.value-strip h2,
.value-strip p {
  margin-bottom: 6px;
}

.pillar-strip {
  max-width: 1140px;
  margin: 0 auto 34px;
  padding: 0 20px;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pillar-grid a {
  background: rgba(255, 255, 248, .86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--green);
  font-weight: 700;
  padding: 16px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 42px;
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin-bottom: 0;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
  backdrop-filter: blur(14px);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.featured-card {
  grid-column: 1 / -1;
}

.featured-card a {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
}

.card-body {
  padding: 18px;
}

.tag {
  color: var(--green);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card p,
.panel p,
.article-body p,
.article-body li {
  color: var(--muted);
}

.ad-slot {
  align-items: center;
  background: rgba(255, 249, 220, .74);
  border: 1px dashed rgba(121, 151, 80, .68);
  color: #657248;
  display: flex;
  justify-content: center;
  margin: 24px 0;
  min-height: 92px;
  text-align: center;
}

.guide-list {
  display: grid;
  gap: 10px;
}

.guide-list a {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 14px;
}

.guide-list span {
  color: var(--sun);
  font-weight: 700;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  backdrop-filter: blur(14px);
}

.category-block {
  scroll-margin-top: 110px;
  margin-bottom: 34px;
}

.more-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.more-links a {
  background: rgba(255, 255, 248, .8);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-weight: 700;
  padding: 13px 15px;
}

.highlight-panel {
  background: linear-gradient(155deg, rgba(255, 255, 248, .95), rgba(230, 255, 218, .92));
}

.panel h2 {
  font-size: 20px;
}

.ranked {
  margin: 0;
  padding: 0 20px 0 0;
}

.ranked li {
  margin-bottom: 12px;
}

.newsletter form {
  display: grid;
  gap: 10px;
}

input,
textarea,
button {
  font: inherit;
}

input,
textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button,
.newsletter button {
  background: var(--green);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  padding: 11px 14px;
}

.footer {
  align-items: start;
  background: #17211d;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  justify-content: space-between;
  gap: 24px;
  padding: 32px max(20px, calc((100vw - 1140px) / 2));
}

.footer p,
.footer a {
  color: #d8ddd8;
}

.footer-brand p {
  margin-bottom: 8px;
}

.site-link {
  color: #f0c36e !important;
  direction: ltr;
  display: inline-block;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, .14);
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 16px;
}

.page,
.article-page {
  max-width: 920px;
  margin: 32px auto;
  padding: 0 20px 42px;
}

.wide-page {
  max-width: 1120px;
}

.page-card,
.article-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 44px);
}

.article-hero {
  border-radius: 8px;
  margin: 20px 0 28px;
  max-height: 440px;
  object-fit: cover;
  width: 100%;
}

.article-meta {
  color: var(--muted);
  font-size: 14px;
}

.article-body h2 {
  margin-top: 30px;
}

.article-body ul {
  padding-right: 22px;
}

.article-extra {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 24px;
}

.inline-image {
  border-radius: 8px;
  margin: 24px 0;
  max-height: 360px;
  object-fit: cover;
  width: 100%;
}

.link-box {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 18px 0;
  padding: 18px;
}

.link-box ul {
  margin-bottom: 0;
}

.link-box a {
  color: var(--green);
  font-weight: 700;
}

.faq-item {
  background: rgba(255, 249, 220, .72);
  border: 1px solid rgba(216, 155, 55, .32);
  border-radius: 8px;
  margin: 12px 0;
  padding: 16px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.tool-card {
  background: rgba(255, 255, 255, .76);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}

.tool-card h2 {
  font-size: 21px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.check-list li {
  list-style: none;
  padding-right: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--leaf);
  border-radius: 6px;
  color: #fff;
  content: "✓";
  font-size: 12px;
  font-weight: 700;
  height: 18px;
  line-height: 18px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 5px;
  width: 18px;
}

.value-table {
  border-collapse: collapse;
  overflow: hidden;
  width: 100%;
}

.value-table th,
.value-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px;
  text-align: right;
}

.value-table th {
  background: rgba(31, 111, 74, .1);
  color: var(--green);
}

.value-note {
  background: rgba(255, 249, 220, .82);
  border: 1px solid rgba(216, 155, 55, .42);
  border-radius: 8px;
  margin-top: 20px;
  padding: 18px;
}

.author-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.author-card,
.author-box {
  align-items: start;
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  padding: 18px;
}

.author-avatar {
  align-items: center;
  background: linear-gradient(135deg, var(--green), var(--leaf));
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 700;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.author-photo {
  border: 3px solid rgba(255, 255, 255, .9);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(23, 33, 29, .13);
  flex: 0 0 auto;
  height: 78px;
  object-fit: cover;
  width: 78px;
}

.author-card h2,
.author-box h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.author-role {
  color: var(--green) !important;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .hero,
  .layout,
  .featured-card a,
  .tool-grid,
  .pillar-grid,
  .more-links {
    grid-template-columns: 1fr;
  }

  .hero img {
    min-height: 300px;
  }

  .sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .topline {
    display: none;
  }

  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 12px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links:not(#navLinks) {
    display: flex;
    flex-basis: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 10px;
  }

  .hero-copy {
    padding: 24px;
  }

  .article-grid,
  .sidebar {
    grid-template-columns: 1fr;
  }

  .ticker {
    margin-left: 20px;
    margin-right: 20px;
  }

  .value-strip {
    align-items: stretch;
    flex-direction: column;
    margin-left: 20px;
    margin-right: 20px;
  }

  .footer {
    display: grid;
  }
}

/* Editorial magazine theme inspired by modern home/decor blogs */
:root {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --ink: #161616;
  --muted: #77736c;
  --line: #e4ded4;
  --green: #111111;
  --leaf: #b1784a;
  --sun: #c89556;
  --water: #6f8b82;
  --shadow: 0 14px 36px rgba(28, 22, 16, .08);
}

body {
  background:
    linear-gradient(180deg, #f8f5ef 0%, #f1ece3 100%);
  color: var(--ink);
}

.animated-bg {
  display: none;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #ddd4c8;
  box-shadow: 0 6px 22px rgba(26, 21, 16, .05);
  position: sticky;
}

.topline {
  border-bottom: 1px solid #ece6dc;
  color: #6f685f;
  font-size: 12px;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.nav {
  padding-bottom: 18px;
  padding-top: 18px;
}

.brand-mark {
  background: #111;
  border-radius: 2px;
}

.brand strong {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 27px;
  letter-spacing: .01em;
}

.brand small {
  color: #8a7f72;
}

.nav-links {
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.nav-links a:hover {
  border-color: #111;
  color: #111;
}

.hero {
  align-items: stretch;
  gap: 0;
  grid-template-columns: minmax(0, .72fr) minmax(420px, 1.28fr);
  margin-top: 26px;
}

.hero-copy {
  background: #111;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #fff;
  min-height: 460px;
  padding: 44px;
}

.hero-copy .eyebrow,
.hero-copy p:not(.eyebrow) {
  color: #e5d5c1;
}

.hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 66px);
}

.hero img {
  border-radius: 0;
  box-shadow: none;
}

.button {
  border-radius: 2px;
}

.button.primary {
  background: #b1784a;
}

.button.ghost {
  border-color: rgba(255,255,255,.38);
  color: #fff;
}

.ticker {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 3px solid #111;
  color: #171717;
  margin-bottom: 18px;
}

.ticker strong {
  color: #b1784a;
}

.top-tags {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin: 0 auto 28px;
  max-width: 1140px;
  padding: 13px 18px;
}

.top-tags strong {
  color: #111;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  white-space: nowrap;
}

.top-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.top-tags a {
  background: #f4efe7;
  border: 1px solid #e2d7c8;
  color: #5c4d3f;
  font-size: 13px;
  padding: 6px 10px;
}

.value-strip,
.panel,
.card,
.page-card,
.article-shell,
.tool-card,
.author-card,
.author-box {
  background: #fff;
  border-color: var(--line);
  border-radius: 0;
  box-shadow: none;
}

.section-head {
  border-bottom: 2px solid #111;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 8px;
}

.section-head h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
}

.eyebrow,
.tag {
  color: #b1784a;
  text-transform: uppercase;
}

.article-grid {
  gap: 20px;
}

.card {
  border: 0;
  border-bottom: 1px solid var(--line);
}

.card:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.card img {
  aspect-ratio: 16 / 11;
  filter: saturate(.95) contrast(1.02);
}

.card h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
}

.featured-card {
  border-top: 1px solid var(--line);
}

.featured-card a {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
}

.more-links a,
.guide-list a,
.pillar-grid a {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.sidebar {
  gap: 20px;
}

.panel {
  border-top: 3px solid #111;
}

.panel h2 {
  font-family: Georgia, 'Times New Roman', serif;
}

.ad-slot {
  background: #eee7dd;
  border-color: #cbbba8;
}

.footer {
  background: #111;
  border-top: 5px solid #b1784a;
}

.article-shell h1,
.page-card h1 {
  font-family: Georgia, 'Times New Roman', serif;
}

.article-hero,
.inline-image,
.author-photo {
  border-radius: 0;
}

@media (max-width: 900px) {
  .hero,
  .featured-card a {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: auto;
  }
}

@media (max-width: 700px) {
  .top-tags,
  .value-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .top-tags {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Homlisse-like editorial restyle: visual only */
body {
  background: #f6f2ea !important;
}

.site-header {
  background: #ffffff !important;
  border-bottom: 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08) !important;
}

.topline {
  background: #111 !important;
  border: 0 !important;
  color: #f5efe6 !important;
  max-width: none !important;
  padding-left: max(20px, calc((100vw - 1180px) / 2)) !important;
  padding-right: max(20px, calc((100vw - 1180px) / 2)) !important;
}

.nav {
  padding: 24px 20px !important;
}

.brand {
  gap: 14px !important;
}

.brand-mark {
  background: #b06f3c !important;
  border-radius: 50% !important;
  height: 52px !important;
  width: 52px !important;
}

.brand strong {
  color: #111 !important;
  font-size: 34px !important;
}

.brand small {
  color: #9a816c !important;
  font-size: 13px !important;
}

.nav-links {
  background: #111 !important;
  color: #fff !important;
  gap: 0 !important;
  padding: 0 12px !important;
}

.nav-links a {
  border-left: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
  padding: 13px 14px !important;
}

.nav-links a:hover {
  background: #b06f3c !important;
  border-color: transparent !important;
}

.hero {
  display: grid !important;
  gap: 22px !important;
  grid-template-columns: 1.35fr .65fr !important;
  max-width: 1180px !important;
}

.hero-copy {
  background: #fff !important;
  border-top: 5px solid #111 !important;
  color: #111 !important;
  min-height: 430px !important;
  order: 2 !important;
  padding: 34px !important;
}

.hero-copy h1 {
  color: #111 !important;
  font-size: clamp(36px, 4.8vw, 64px) !important;
}

.hero-copy .eyebrow {
  color: #b06f3c !important;
}

.hero-copy p:not(.eyebrow) {
  color: #6e6257 !important;
}

.hero img {
  height: 100% !important;
  min-height: 430px !important;
  object-fit: cover !important;
  order: 1 !important;
}

.hero-actions .button.ghost {
  border-color: #111 !important;
  color: #111 !important;
}

.ticker {
  border: 0 !important;
  box-shadow: inset 0 1px 0 #111, inset 0 -1px 0 #ddd !important;
}

.value-strip,
.pillar-strip,
.layout {
  max-width: 1180px !important;
}

.layout {
  grid-template-columns: minmax(0, 1fr) 340px !important;
}

.section-head {
  border-bottom: 1px solid #111 !important;
  margin-top: 10px !important;
  position: relative !important;
}

.section-head::before {
  background: #b06f3c !important;
  bottom: -2px !important;
  content: "" !important;
  height: 3px !important;
  position: absolute !important;
  right: 0 !important;
  width: 92px !important;
}

.section-head h2 {
  color: #111 !important;
  font-size: 30px !important;
}

.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

.featured-card {
  grid-column: span 2 !important;
}

.featured-card a {
  display: block !important;
}

.card {
  background: transparent !important;
  border: 0 !important;
  position: relative !important;
}

.card img {
  aspect-ratio: 4 / 3 !important;
  box-shadow: 0 12px 25px rgba(0,0,0,.1) !important;
}

.card-body {
  background: #fff !important;
  margin: -34px 14px 0 !important;
  padding: 18px !important;
  position: relative !important;
  z-index: 2 !important;
}

.card h3 {
  color: #111 !important;
  font-size: 21px !important;
}

.tag,
.eyebrow {
  color: #b06f3c !important;
  letter-spacing: .04em !important;
}

.more-links {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.more-links a,
.pillar-grid a {
  border-right: 4px solid #b06f3c !important;
  color: #111 !important;
}

.sidebar {
  position: sticky !important;
  top: 118px !important;
}

.panel {
  background: #fff !important;
  border: 0 !important;
  border-top: 5px solid #111 !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.06) !important;
}

.panel h2 {
  border-bottom: 1px solid #e4ded4 !important;
  padding-bottom: 8px !important;
}

.ad-slot {
  background: repeating-linear-gradient(45deg, #eee6dc, #eee6dc 10px, #e6dccf 10px, #e6dccf 20px) !important;
}

.footer {
  margin-top: 40px !important;
}

@media (max-width: 1000px) {
  .hero,
  .layout {
    grid-template-columns: 1fr !important;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .sidebar {
    position: static !important;
  }
}

@media (max-width: 700px) {
  .nav-links {
    background: transparent !important;
    padding: 0 !important;
  }

  .nav-links a {
    background: #111 !important;
    border: 0 !important;
    margin-bottom: 4px !important;
  }

  .hero,
  .article-grid,
  .more-links {
    grid-template-columns: 1fr !important;
  }

  .featured-card {
    grid-column: auto !important;
  }
}

/* FitKitchen blue/red magazine theme override */
:root {
  --bg: #f7fbff;
  --paper: #ffffff;
  --ink: #0d1b2a;
  --muted: #5d6b7a;
  --line: #d7e2ef;
  --green: #123c69;
  --leaf: #b11226;
  --sun: #d62839;
  --water: #1d6fb8;
  --shadow: 0 18px 44px rgba(18, 60, 105, .14);
}

html,
body {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0%, rgba(239,247,255,.96) 45%, rgba(255,242,244,.92) 100%),
    radial-gradient(circle at 12% 18%, rgba(29,111,184,.18), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(177,18,38,.16), transparent 24%) !important;
  color: #0d1b2a !important;
}

.site-header {
  background: #ffffff !important;
  border-bottom: 4px solid #123c69 !important;
  box-shadow: 0 10px 30px rgba(13, 27, 42, .12) !important;
}

.topline {
  background: linear-gradient(90deg, #123c69, #0d1b2a) !important;
  color: #fff !important;
}

.brand-mark {
  background: #b11226 !important;
  border-radius: 10px !important;
}

.brand strong {
  color: #123c69 !important;
}

.brand small {
  color: #b11226 !important;
}

.nav-links {
  background: #123c69 !important;
}

.nav-links a:hover {
  background: #b11226 !important;
}

.hero-copy {
  background: linear-gradient(145deg, #123c69, #0d1b2a) !important;
  border-top: 0 !important;
  color: #fff !important;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
  color: #fff !important;
}

.hero-copy p:not(.eyebrow) {
  color: #dbeafe !important;
}

.button.primary {
  background: #b11226 !important;
}

.hero-actions .button.ghost {
  border-color: rgba(255,255,255,.65) !important;
  color: #fff !important;
}

.ticker {
  background: #fff !important;
  box-shadow: inset 0 4px 0 #b11226, inset 0 -1px 0 #d7e2ef !important;
}

.ticker strong,
.eyebrow,
.tag {
  color: #b11226 !important;
}

.section-head {
  border-bottom-color: #123c69 !important;
}

.section-head::before {
  background: #b11226 !important;
}

.card-body,
.panel,
.value-strip,
.page-card,
.article-shell,
.tool-card,
.author-card,
.author-box {
  background: #ffffff !important;
  border-color: #d7e2ef !important;
}

.card img,
.hero img {
  border-bottom: 5px solid #b11226 !important;
}

.card h3,
.section-head h2,
.panel h2 {
  color: #123c69 !important;
}

.more-links a,
.pillar-grid a {
  border-right-color: #b11226 !important;
  color: #123c69 !important;
}

.panel {
  border-top-color: #123c69 !important;
}

.ad-slot {
  background: repeating-linear-gradient(45deg, #eef6ff, #eef6ff 10px, #ffecef 10px, #ffecef 20px) !important;
  border-color: #b11226 !important;
  color: #123c69 !important;
}

.footer {
  background: #0d1b2a !important;
  border-top-color: #b11226 !important;
}
