/*
Theme Name: GuideBlogs Front Page
Theme URI: https://guideblogs.com/
Author: GuideBlogs
Description: Front page styling for the GuideBlogs wellness homepage.
Version: 1.0.0
Text Domain: guideblogs
*/

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

:root {
  --gb-green-950: #050f02;
  --gb-green-900: #0c1f06;
  --gb-green-800: #173404;
  --gb-green-700: #27500a;
  --gb-green-600: #3b6d11;
  --gb-green-500: #4d8a16;
  --gb-green-400: #639922;
  --gb-green-300: #97c459;
  --gb-green-200: #c0dd97;
  --gb-green-100: #e2f0c4;
  --gb-green-50: #f3f9ea;
  --gb-gold: #c9a84c;
  --gb-gold-light: #e8d5a3;
  --gb-cream: #faf8f3;
  --gb-text-dark: #0c1f06;
  --gb-text-mid: #27500a;
  --gb-text-muted: #5a7a3a;
  --gb-border: rgba(59, 109, 17, 0.15);
  --gb-border-strong: rgba(59, 109, 17, 0.3);
  --gb-display: "Cormorant Garamond", Georgia, serif;
  --gb-body: "Jost", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gb-cream);
  color: var(--gb-text-dark);
  font-family: var(--gb-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

body.guideblogs-full-width,
.gb-page {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.gb-page a {
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gb-page p,
.gb-page li {
  color: var(--gb-text-mid);
}

.gb-hero .gb-eyebrow,
.gb-template-hero .gb-eyebrow,
.gb-single-hero .gb-eyebrow {
  color: var(--gb-gold-light);
}

.gb-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 5vw;
  background: var(--gb-green-900);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.gb-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gb-gold-light);
  font-family: var(--gb-display);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
}

.gb-logo img {
  display: block;
  width: auto;
  height: 46px;
  max-width: 118px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.12));
}

.gb-logo-word {
  display: inline-block;
}

.gb-logo-word span,
.gb-logo > span span {
  color: var(--gb-green-300);
}

.gb-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gb-nav a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.gb-nav a:hover,
.gb-nav a:focus-visible {
  color: var(--gb-gold-light);
}

.gb-nav .gb-header-cta {
  padding: 8px 20px;
  background: var(--gb-gold);
  border-radius: 2px;
  color: var(--gb-green-950);
  font-size: 0.7rem;
  font-weight: 600;
}

.gb-nav .gb-header-cta:hover,
.gb-nav .gb-header-cta:focus-visible {
  background: var(--gb-gold-light);
  color: var(--gb-green-950);
}

.gb-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  overflow: hidden;
  background: var(--gb-green-900);
}

.gb-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59, 109, 17, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.gb-hero-text {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 6rem 4rem 6rem 8vw;
}

.gb-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 1.5rem;
  color: var(--gb-gold);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gb-eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gb-gold);
  content: "";
}

.gb-hero h1 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-family: var(--gb-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.08;
}

.gb-hero h1 em {
  color: var(--gb-green-300);
  font-style: italic;
}

.gb-hero-sub {
  max-width: 420px;
  margin: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.8;
}

.gb-hero .gb-hero-sub {
  color: rgba(255, 255, 255, 0.84);
}

.gb-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gb-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 32px;
  background: var(--gb-gold);
  border-radius: 2px;
  color: var(--gb-green-950);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.gb-btn-primary:hover,
.gb-btn-primary:focus-visible {
  background: var(--gb-gold-light);
  color: var(--gb-green-950);
}

.gb-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.gb-btn-ghost::after,
.gb-view-all::after {
  content: "->";
}

.gb-btn-ghost:hover,
.gb-btn-ghost:focus-visible {
  color: #fff;
}

.gb-hero-visual {
  position: relative;
  z-index: 1;
  min-height: 88vh;
  background:
    linear-gradient(160deg, rgba(12, 31, 6, 0.24) 0%, rgba(12, 31, 6, 0.06) 100%),
    var(--gb-hero-image, url("https://images.unsplash.com/photo-1490818387583-1baba5e638af?w=1200&q=82")) center/cover no-repeat;
}

.gb-hero-card {
  position: absolute;
  bottom: 3rem;
  left: -2rem;
  width: min(280px, calc(100% - 2rem));
  padding: 1.5rem 2rem;
  background: rgba(12, 31, 6, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.gb-hero-card-label,
.gb-card-cat,
.gb-widget-title,
.gb-footer-col-title {
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gb-hero-card-label {
  margin: 0 0 0.5rem;
  color: var(--gb-gold);
  font-size: 0.65rem;
}

.gb-hero-card .gb-hero-card-label {
  color: var(--gb-gold-light);
}

.gb-hero-card-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-family: var(--gb-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.35;
}

.gb-hero-card .gb-hero-card-title {
  color: #fff;
}

.gb-hero-card-meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.gb-hero-card .gb-hero-card-meta {
  color: rgba(255, 255, 255, 0.78);
}

.gb-newsletter-box .gb-newsletter-tagline,
.gb-site-footer .gb-footer-tagline,
.gb-site-footer p,
.gb-site-footer li,
.gb-template-hero p:not(.gb-eyebrow),
.gb-single-hero .gb-card-meta,
.gb-banner .gb-banner-quote,
.gb-banner .gb-banner-attr {
  color: rgba(255, 255, 255, 0.78);
}

.gb-site-footer .gb-footer-col-title,
.gb-newsletter-box .gb-widget-title,
.gb-banner .gb-banner-attr {
  color: var(--gb-gold-light);
}

.gb-cat-bar {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 5vw;
  background: #fff;
  border-bottom: 1px solid var(--gb-border);
  scrollbar-width: none;
}

.gb-cat-bar::-webkit-scrollbar {
  display: none;
}

.gb-cat-item {
  flex: 0 0 auto;
  padding: 1.1rem 1.5rem;
  border-bottom: 2px solid transparent;
  color: var(--gb-text-muted);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gb-cat-item:hover,
.gb-cat-item:focus-visible,
.gb-cat-item.is-active {
  border-bottom-color: var(--gb-green-600);
  color: var(--gb-green-600);
}

.gb-section,
.gb-content-sidebar {
  padding-right: clamp(1.25rem, 5vw, 6rem);
  padding-left: clamp(1.25rem, 5vw, 6rem);
}

.gb-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gb-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gb-section-title {
  margin: 0;
  color: var(--gb-green-800);
  font-family: var(--gb-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.gb-section-title em {
  color: var(--gb-green-600);
  font-style: italic;
}

.gb-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gb-green-700);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gb-view-all:hover,
.gb-view-all:focus-visible {
  color: var(--gb-green-700);
}

.gb-featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 1.5px;
  background: var(--gb-border);
}

.gb-featured-main,
.gb-featured-side,
.gb-article-item {
  background: #fff;
  color: inherit;
  text-decoration: none;
}

.gb-featured-main {
  grid-row: 1 / 3;
}

.gb-featured-main:hover .gb-card-img,
.gb-featured-side:hover .gb-card-img-sm,
.gb-article-item:hover .gb-article-thumb {
  transform: scale(1.04);
}

.gb-card-img-wrap,
.gb-article-thumb-wrap {
  overflow: hidden;
}

.gb-card-img,
.gb-card-img-sm,
.gb-article-thumb,
.gb-recent-thumb {
  display: block;
  width: 100%;
  object-fit: cover;
}

.gb-card-img {
  height: 380px;
  transition: transform 0.6s ease;
}

.gb-card-img-sm {
  height: 200px;
  transition: transform 0.6s ease;
}

.gb-card-body {
  padding: 1.8rem 2rem;
}

.gb-card-body-sm {
  padding: 1.2rem 1.5rem;
}

.gb-card-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 0.7rem;
  color: var(--gb-green-500);
  font-size: 0.62rem;
  font-weight: 600;
}

.gb-card-cat::before {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gb-green-400);
  content: "";
}

.gb-card-title,
.gb-card-title-sm,
.gb-article-title,
.gb-recent-title {
  margin-top: 0;
  color: var(--gb-green-900);
  font-family: var(--gb-display);
  font-weight: 400;
}

.gb-card-title {
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
  line-height: 1.2;
}

.gb-card-title-sm {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  line-height: 1.25;
}

.gb-card-title a,
.gb-card-title-sm a,
.gb-article-title a,
.gb-recent-title a {
  color: inherit;
  text-decoration: none;
}

.gb-card-title a:hover,
.gb-card-title-sm a:hover,
.gb-article-title a:hover,
.gb-recent-title a:hover {
  color: var(--gb-green-600);
}

.gb-card-excerpt,
.gb-article-excerpt {
  color: #355f18;
  font-weight: 300;
}

.gb-card-excerpt {
  margin: 0 0 1.2rem;
  font-size: 0.96rem;
  line-height: 1.85;
}

.gb-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #537534;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gb-card-meta .sep {
  opacity: 0.5;
}

.gb-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--gb-green-200);
  color: var(--gb-green-700);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.gb-read-more:hover,
.gb-read-more:focus-visible {
  border-bottom-color: var(--gb-green-500);
  color: var(--gb-green-800);
}

.gb-banner {
  position: relative;
  overflow: hidden;
  padding: 5rem 5vw;
  background: var(--gb-green-800);
  text-align: center;
}

.gb-banner::before {
  position: absolute;
  top: -8rem;
  left: 50%;
  color: rgba(255, 255, 255, 0.04);
  content: "\"";
  font-family: var(--gb-display);
  font-size: 28rem;
  line-height: 1;
  pointer-events: none;
  transform: translateX(-50%);
}

.gb-banner-quote {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto 1rem;
  color: #fff;
  font-family: var(--gb-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
}

.gb-banner-attr {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--gb-gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gb-content-sidebar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 4rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.gb-article-list {
  display: flex;
  flex-direction: column;
}

.gb-article-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--gb-border);
  border-bottom: 0;
}

.gb-article-item:last-child {
  border-bottom: 1px solid var(--gb-border);
}

.gb-article-item:hover {
  border-color: var(--gb-border-strong);
}

.gb-article-thumb-wrap {
  min-height: 160px;
}

.gb-article-thumb {
  height: 100%;
  min-height: 160px;
  transition: transform 0.5s ease;
}

.gb-article-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 2rem;
}

.gb-article-title {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.gb-article-excerpt {
  display: -webkit-box;
  margin: 0 0 0.75rem;
  overflow: hidden;
  font-size: 0.94rem;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.gb-sidebar-widget {
  margin-bottom: 2.5rem;
}

.gb-widget-title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gb-border-strong);
  color: var(--gb-green-500);
  font-size: 0.65rem;
  font-weight: 600;
}

.gb-newsletter-box {
  padding: 2rem;
  background: var(--gb-green-900);
  border-radius: 4px;
}

.gb-newsletter-box .gb-widget-title {
  border-bottom-color: rgba(201, 168, 76, 0.3);
  color: var(--gb-gold);
}

.gb-newsletter-tagline {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
}

.gb-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gb-newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  color: #fff;
  font: inherit;
  font-size: 0.82rem;
  outline: none;
}

.gb-newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.gb-newsletter-form input[type="email"]:focus {
  border-color: var(--gb-gold);
}

.gb-newsletter-form button {
  padding: 12px;
  background: var(--gb-gold);
  border: 0;
  border-radius: 2px;
  color: var(--gb-green-950);
  cursor: pointer;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gb-newsletter-form button:hover,
.gb-newsletter-form button:focus-visible {
  background: var(--gb-gold-light);
}

.gb-cat-links,
.gb-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gb-cat-links li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--gb-border);
  font-size: 0.85rem;
}

.gb-cat-links a {
  color: var(--gb-text-mid);
  font-weight: 400;
  text-decoration: none;
}

.gb-cat-links a:hover,
.gb-cat-links a:focus-visible {
  color: var(--gb-green-600);
}

.gb-cat-count {
  align-self: center;
  padding: 1px 8px;
  background: var(--gb-green-50);
  border-radius: 10px;
  color: #8ca178;
  font-size: 0.7rem;
}

.gb-recent-item {
  display: flex;
  gap: 12px;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--gb-border);
  color: inherit;
  text-decoration: none;
}

.gb-recent-item:last-child {
  border-bottom: 0;
}

.gb-recent-thumb {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  border-radius: 2px;
}

.gb-recent-title {
  margin-bottom: 4px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.gb-recent-date {
  margin: 0;
  color: #8ca178;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.gb-pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}

.gb-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  border: 1px solid var(--gb-border);
  border-radius: 2px;
  color: var(--gb-text-mid);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.gb-pagination .current,
.gb-pagination .page-numbers:hover,
.gb-pagination .page-numbers:focus-visible {
  background: var(--gb-green-700);
  border-color: var(--gb-green-700);
  color: #fff;
}

.gb-site-footer {
  background: var(--gb-green-950);
  color: rgba(255, 255, 255, 0.52);
}

.gb-footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.gb-footer-brand .gb-logo {
  font-size: 1.4rem;
}

.gb-footer-brand .gb-logo img {
  height: 54px;
  max-width: 140px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 3px;
}

.gb-footer-tagline {
  max-width: 240px;
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
}

.gb-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.gb-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.gb-social-link:hover,
.gb-social-link:focus-visible {
  border-color: var(--gb-gold);
  color: var(--gb-gold);
}

.gb-footer-col-title {
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 600;
}

.gb-footer-links li {
  margin-bottom: 0.6rem;
}

.gb-footer-links a {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 300;
  text-decoration: none;
}

.gb-footer-links a:hover,
.gb-footer-links a:focus-visible {
  color: rgba(255, 255, 255, 0.82);
}

.gb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 5vw;
  font-size: 0.72rem;
}

.gb-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gb-footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  text-decoration: none;
}

.gb-footer-bottom-links a:hover,
.gb-footer-bottom-links a:focus-visible {
  color: rgba(255, 255, 255, 0.65);
}

.gb-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gb-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Whole-site article, archive, and sidebar refinement. */
.gb-site-shell {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(243, 249, 234, 0.55), rgba(250, 248, 243, 0.96) 18rem),
    var(--gb-cream);
}

.gb-template-wrap {
  padding: 0 clamp(1.25rem, 5vw, 6rem) 5rem;
}

.gb-template-hero,
.gb-single-hero {
  position: relative;
  overflow: hidden;
  margin: 0 calc(clamp(1.25rem, 5vw, 6rem) * -1) 2rem;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 5vw, 6rem);
  background:
    linear-gradient(110deg, rgba(5, 15, 2, 0.94), rgba(23, 52, 4, 0.9)),
    url("https://images.unsplash.com/photo-1543352634-a1c51d9f1fa7?w=1600&q=86") center/cover no-repeat;
  color: #fff;
}

.gb-template-hero h1,
.gb-single-hero h1 {
  max-width: 980px;
  margin: 0.5rem 0 1rem;
  color: #fff;
  font-family: var(--gb-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
}

.gb-template-hero p:not(.gb-eyebrow),
.gb-single-hero .gb-card-meta {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.gb-template-layout,
.gb-single-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.gb-post-feed {
  display: grid;
  gap: 1px;
  background: var(--gb-border);
  border: 1px solid var(--gb-border);
}

.gb-template-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  background: rgba(255, 255, 255, 0.94);
}

.gb-template-thumb {
  display: block;
  min-height: 230px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(12, 31, 6, 0.18), rgba(201, 168, 76, 0.16)),
    var(--gb-green-50);
}

.gb-template-thumb img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gb-template-card:hover .gb-template-thumb img {
  transform: scale(1.04);
}

.gb-template-card-body {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.gb-template-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--gb-display);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.18;
}

.gb-template-card h2 a {
  color: var(--gb-green-950);
  text-decoration: none;
}

.gb-template-card h2 a:hover,
.gb-template-card h2 a:focus-visible {
  color: var(--gb-green-600);
}

.gb-template-card-body > p {
  margin: 0 0 1.25rem;
  color: #355f18;
  font-size: 0.98rem;
  line-height: 1.85;
}

.gb-template-sidebar {
  position: sticky;
  top: 96px;
}

.gb-single-featured {
  margin: -1.5rem 0 2.5rem;
}

.gb-single-featured img {
  display: block;
  width: 100%;
  max-height: 540px;
  object-fit: cover;
}

.gb-single-content {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gb-border);
}

.gb-single-content > *:first-child {
  margin-top: 0;
}

.gb-single-content p,
.gb-single-content li {
  color: #1f3e0e;
  font-size: 1.05rem;
  line-height: 1.9;
}

.gb-single-content a {
  color: var(--gb-green-700);
  font-weight: 500;
}

.gb-single-content h2,
.gb-single-content h3,
.gb-single-content h4 {
  margin: 2rem 0 0.8rem;
  color: var(--gb-green-900);
  font-family: var(--gb-display);
  font-weight: 400;
  line-height: 1.18;
}

.gb-single-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.gb-single-content h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.gb-single-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background: var(--gb-green-50);
  border-left: 3px solid var(--gb-gold);
  color: var(--gb-green-900);
  font-family: var(--gb-display);
  font-size: 1.5rem;
  line-height: 1.45;
}

.gb-single-content img {
  border-radius: 2px;
}

.gb-template-sidebar .gb-sidebar-widget,
.gb-single-grid .gb-sidebar-widget {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--gb-border);
}

.gb-template-sidebar .gb-newsletter-box,
.gb-single-grid .gb-newsletter-box {
  background: var(--gb-green-900);
  border-color: rgba(201, 168, 76, 0.24);
}

.gb-template-sidebar .gb-widget-title,
.gb-single-grid .gb-widget-title {
  color: var(--gb-green-700);
  font-size: 0.72rem;
}

.gb-template-sidebar .gb-newsletter-box .gb-widget-title,
.gb-single-grid .gb-newsletter-box .gb-widget-title {
  color: var(--gb-gold);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .gb-fade-up,
  .gb-card-img,
  .gb-card-img-sm,
  .gb-article-thumb,
  .gb-page a {
    transition: none;
  }

  .gb-fade-up {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .gb-site-header {
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: 0.85rem;
    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .gb-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 0.9rem;
    overflow-x: auto;
    padding: 0 0 0.25rem;
    scrollbar-width: none;
  }

  .gb-nav::-webkit-scrollbar {
    display: none;
  }

  .gb-nav a {
    flex: 0 0 auto;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .gb-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .gb-hero-text {
    padding: 4rem clamp(1.25rem, 6vw, 3rem);
  }

  .gb-hero-visual {
    min-height: 320px;
  }

  .gb-hero-card {
    right: 5vw;
    left: auto;
  }

  .gb-featured-grid,
  .gb-content-sidebar,
  .gb-footer-top {
    grid-template-columns: 1fr;
  }

  .gb-featured-main {
    grid-row: auto;
  }

  .gb-content-sidebar {
    gap: 3rem;
  }

  .gb-article-item {
    grid-template-columns: 1fr;
  }

  .gb-article-thumb-wrap,
  .gb-article-thumb {
    height: 200px;
  }

  .gb-template-layout,
  .gb-single-grid,
  .gb-template-card {
    grid-template-columns: 1fr;
  }

  .gb-template-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .gb-logo {
    font-size: 1.45rem;
  }

  .gb-nav {
    gap: 0.65rem;
  }

  .gb-nav .gb-header-cta {
    padding: 7px 14px;
  }

  .gb-hero h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .gb-eyebrow {
    align-items: flex-start;
    gap: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    line-height: 1.6;
  }

  .gb-eyebrow::before {
    width: 22px;
    margin-top: 0.75em;
  }

  .gb-hero-sub {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .gb-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gb-btn-primary,
  .gb-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .gb-hero-card {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    width: auto;
    padding: 1.15rem 1.25rem;
  }

  .gb-cat-bar {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .gb-section,
  .gb-content-sidebar {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .gb-section-header,
  .gb-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .gb-cat-item {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .gb-card-body,
  .gb-card-body-sm,
  .gb-article-body {
    padding: 1.35rem;
  }

  .gb-card-img,
  .gb-card-img-sm {
    height: 240px;
  }

  .gb-card-title {
    font-size: 1.45rem;
  }

  .gb-card-title-sm,
  .gb-article-title {
    font-size: 1.25rem;
  }

  .gb-template-wrap {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .gb-template-hero,
  .gb-single-hero {
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 3.75rem 1.25rem;
  }

  .gb-template-hero h1,
  .gb-single-hero h1 {
    font-size: clamp(2.3rem, 14vw, 3.6rem);
  }

  .gb-template-card-body,
  .gb-single-content,
  .gb-template-sidebar .gb-sidebar-widget,
  .gb-single-grid .gb-sidebar-widget {
    padding: 1.25rem;
  }

  .gb-template-thumb,
  .gb-template-thumb img {
    min-height: 210px;
  }

  .gb-footer-top,
  .gb-footer-bottom {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

@media (max-width: 420px) {
  .gb-site-header {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .gb-nav a {
    font-size: 0.64rem;
  }

  .gb-hero-text {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .gb-hero-visual {
    min-height: 260px;
  }

  .gb-section-title {
    font-size: 1.9rem;
  }

  .gb-footer-top {
    gap: 2rem;
  }
}
