:root {
  --gl-accent: #f65478;
  --gl-accent-dark: #dc385e;
  --gl-accent-soft: #fff0f4;
  --gl-ink: #21181b;
  --gl-body: #554d51;
  --gl-muted: #827a7e;
  --gl-border: #ece7e9;
  --gl-surface: #ffffff;
  --gl-page: #ffffff;
  --gl-green: #62b779;
  --gl-green-soft: #eff9ef;
  --gl-purple: #9b72e6;
  --gl-blue: #6e91ef;
  --gl-orange: #f1a95c;
  --gl-radius-sm: 10px;
  --gl-radius: 16px;
  --gl-radius-lg: 24px;
  --gl-shadow-sm: 0 4px 16px rgba(59, 33, 42, 0.07);
  --gl-shadow: 0 12px 34px rgba(64, 38, 47, 0.10);
  --gl-container: 1420px;
  --gl-font: -apple-system, BlinkMacSystemFont, "Noto Sans Thai", "Sarabun", "Segoe UI", Tahoma, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--gl-page);
  color: var(--gl-ink);
  font-family: var(--gl-font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

a:hover {
  color: var(--gl-accent);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gl-accent) 35%, transparent);
  outline-offset: 3px;
}

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

.gl-container {
  width: min(calc(100% - 48px), var(--gl-container));
  margin-inline: auto;
}

.gl-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  vertical-align: -0.22em;
}

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

.screen-reader-text:focus {
  clip: auto !important;
  width: auto;
  height: auto;
  top: 8px;
  left: 8px;
  z-index: 99999;
  padding: 12px 16px;
  background: #fff;
  color: var(--gl-ink);
  border-radius: 8px;
  box-shadow: var(--gl-shadow);
}

/* Header */
.gl-site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  min-height: 82px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 220, 224, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.gl-site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(59, 34, 43, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.admin-bar .gl-site-header {
  top: 32px;
}

.gl-header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gl-brand-wrap {
  flex: 0 0 auto;
}

.gl-brand,
.gl-custom-logo a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.gl-brand:hover {
  color: var(--gl-ink);
}

.gl-brand-mark {
  width: 42px;
  height: 42px;
}

.gl-brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.gl-brand-copy strong {
  font-size: 24px;
  letter-spacing: -0.04em;
}

.gl-brand-copy small {
  margin-top: 5px;
  color: #6d6267;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.gl-custom-logo img {
  max-height: 58px;
  width: auto;
}

.gl-primary-nav {
  flex: 1 1 auto;
  min-width: 0;
}

.gl-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.45vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.gl-menu li {
  position: relative;
}

.gl-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  color: #3d3438;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.gl-menu .current-menu-item > a,
.gl-menu .current_page_item > a,
.gl-menu a:hover {
  color: var(--gl-accent);
}

.gl-menu .current-menu-item > a::after,
.gl-menu .current_page_item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--gl-accent);
}

.gl-menu .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  min-width: 220px;
  padding: 10px;
  margin: 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--gl-border);
  border-radius: 14px;
  box-shadow: var(--gl-shadow);
  transform: translate(-50%, 10px);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease;
}

.gl-menu li:hover > .sub-menu,
.gl-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.gl-menu .sub-menu a {
  width: 100%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 8px;
}

.gl-header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 9px;
}

.gl-icon-button,
.gl-menu-toggle {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #32282d;
  cursor: pointer;
}

.gl-icon-button:hover,
.gl-menu-toggle:hover {
  background: var(--gl-accent-soft);
  color: var(--gl-accent);
}

.gl-notification-dot::after {
  content: "";
  position: absolute;
  top: 7px;
  right: 7px;
  width: 7px;
  height: 7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gl-accent);
}

.gl-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 23px;
  border-radius: 10px;
  background: var(--gl-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--gl-accent) 24%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.gl-login-button:hover {
  color: #fff;
  background: var(--gl-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 12px 25px color-mix(in srgb, var(--gl-accent) 30%, transparent);
}

.gl-menu-toggle {
  display: none;
}

.gl-menu-toggle__close {
  display: none;
}

/* Hero */
.gl-main {
  overflow: clip;
}

.gl-hero {
  position: relative;
  overflow: hidden;
  min-height: 395px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.96) 0 7%, transparent 27%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.65) 0 10%, transparent 32%),
    linear-gradient(104deg, #fffafc 0%, #fff5f8 42%, #ffecef 100%);
}

.gl-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 7px, transparent 8px),
    radial-gradient(circle, rgba(255, 218, 228, 0.68) 0 4px, transparent 5px);
  background-position: 92% 22%, 77% 70%;
  background-size: 150px 150px, 115px 115px;
  opacity: 0.5;
}

.gl-hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.gl-hero-orb--one {
  width: 240px;
  height: 240px;
  right: -70px;
  top: -85px;
  background: rgba(255, 255, 255, 0.55);
}

.gl-hero-orb--two {
  width: 140px;
  height: 140px;
  left: 47%;
  bottom: -70px;
  background: rgba(255, 212, 224, 0.45);
}

.gl-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 395px;
}

.gl-hero-copy {
  position: relative;
  z-index: 3;
  padding: 48px 0 70px;
}

.gl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #564b50;
  font-size: 14px;
  font-weight: 650;
}

.gl-eyebrow-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff8dd;
  color: #f3a413;
}

.gl-eyebrow-icon .gl-icon {
  width: 16px;
  height: 16px;
}

.gl-hero h1 {
  max-width: 650px;
  margin: 0 0 18px;
  color: #171114;
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 830;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.gl-hero h1 span {
  display: block;
  color: var(--gl-accent);
}

.gl-hero-description {
  max-width: 610px;
  margin-bottom: 25px;
  color: #675d62;
  font-size: 16px;
  line-height: 1.75;
}

.gl-hero-search {
  position: relative;
  width: min(590px, 100%);
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 49px;
  background: #fff;
  border: 1px solid rgba(226, 217, 221, 0.95);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(69, 42, 52, 0.09);
}

.gl-search-leading {
  position: absolute;
  left: 17px;
  top: 50%;
  width: 22px;
  height: 22px;
  color: #9a9195;
  transform: translateY(-50%);
}

.gl-hero-search input {
  flex: 1 1 auto;
  min-width: 0;
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gl-ink);
}

.gl-hero-search input::placeholder {
  color: #aaa2a6;
}

.gl-hero-search button {
  flex: 0 0 auto;
  min-width: 92px;
  height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: var(--gl-accent);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 7px 16px color-mix(in srgb, var(--gl-accent) 24%, transparent);
}

.gl-hero-search button:hover {
  background: var(--gl-accent-dark);
}

.gl-hero-media {
  position: relative;
  align-self: stretch;
  min-width: 0;
}

.gl-hero-image-frame {
  position: absolute;
  inset: 0 -40px 0 -80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 12%, #000 28%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 12%, #000 28%, #000 100%);
}

.gl-hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.08);
}

.gl-recipe-count-badge {
  position: absolute;
  z-index: 4;
  top: 30px;
  right: 55px;
  width: 126px;
  height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 3px solid var(--gl-accent);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gl-accent);
  box-shadow: 0 10px 26px rgba(218, 63, 99, 0.14);
}

.gl-recipe-count-badge::before,
.gl-recipe-count-badge::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #fff;
}

.gl-recipe-count-badge::before {
  left: 2px;
  bottom: 21px;
}

.gl-recipe-count-badge::after {
  right: 5px;
  top: 21px;
}

.gl-recipe-count-badge small,
.gl-recipe-count-badge span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
}

.gl-recipe-count-badge strong {
  margin: 2px 0;
  font-size: 27px;
  line-height: 1;
}

/* Quick links */
.gl-quick-links {
  position: relative;
  z-index: 10;
  margin-top: -34px;
}

.gl-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 13px;
  border: 1px solid var(--gl-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(64, 38, 47, 0.10);
}

.gl-quick-link {
  position: relative;
  min-width: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-right: 1px solid #eee8eb;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gl-quick-link:last-child {
  border-right: 0;
}

.gl-quick-link:hover {
  color: inherit;
  background: #fff8fa;
  transform: translateY(-2px);
}

.gl-quick-link-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f5efff;
  color: var(--gl-purple);
}

.gl-quick-link-icon .gl-icon {
  width: 25px;
  height: 25px;
}

.gl-quick-link--blue .gl-quick-link-icon {
  background: #edf5ff;
  color: var(--gl-blue);
}

.gl-quick-link--orange .gl-quick-link-icon {
  background: #fff4e8;
  color: var(--gl-orange);
}

.gl-quick-link--pink .gl-quick-link-icon {
  background: #fff0f4;
  color: var(--gl-accent);
}

.gl-quick-link--violet .gl-quick-link-icon {
  background: #f3efff;
  color: #8f6ad6;
}

.gl-quick-link-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.gl-quick-link-copy strong {
  overflow: hidden;
  color: #31282c;
  font-size: 14px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-quick-link-copy small {
  overflow: hidden;
  margin-top: 2px;
  color: #82797d;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-quick-link-arrow {
  color: var(--gl-accent);
}

.gl-quick-link-arrow .gl-icon {
  width: 18px;
  height: 18px;
}

/* Shared sections */
.gl-section {
  padding: 34px 0 0;
}

.gl-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.gl-section-heading h2 {
  margin: 0;
  color: #251d20;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.gl-section-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gl-view-all {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--gl-border);
  border-radius: 999px;
  background: #fff;
  color: #61585c;
  font-size: 12px;
  font-weight: 700;
}

.gl-view-all:hover {
  border-color: color-mix(in srgb, var(--gl-accent) 35%, var(--gl-border));
  background: var(--gl-accent-soft);
}

.gl-view-all .gl-icon {
  width: 15px;
  height: 15px;
}

.gl-carousel-button {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--gl-border);
  border-radius: 50%;
  background: #fff;
  color: #8e8589;
  cursor: pointer;
}

.gl-carousel-button:hover {
  color: var(--gl-accent);
  border-color: var(--gl-accent);
}

.gl-card-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.gl-card-row::-webkit-scrollbar {
  display: none;
}

.gl-card {
  flex: 0 0 calc((100% - 64px) / 5);
  min-width: 0;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #e9e3e6;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--gl-shadow-sm);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.gl-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--gl-accent) 23%, #e9e3e6);
  box-shadow: 0 14px 32px rgba(63, 37, 46, 0.13);
}

.gl-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f6f2f3;
}

.gl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gl-card:hover .gl-card-media img {
  transform: scale(1.045);
}

.gl-recipe-card .gl-card-media {
  aspect-ratio: 2.04 / 1;
}

.gl-article-card .gl-card-media {
  aspect-ratio: 2.18 / 1;
}

.gl-course-card .gl-card-media {
  aspect-ratio: 2.84 / 1;
}

.gl-media-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 7px;
  background: var(--gl-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(55, 30, 40, 0.15);
}

.gl-media-badge--soft {
  background: rgba(255, 255, 255, 0.92);
  color: var(--gl-accent);
}

.gl-card-body {
  padding: 12px 13px 13px;
}

.gl-card-body h3 {
  overflow: hidden;
  margin: 0 0 2px;
  color: #2c2327;
  font-size: 14px;
  font-weight: 790;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-card-body h3 a:hover {
  color: var(--gl-accent);
}

.gl-card-body > p {
  overflow: hidden;
  min-height: 22px;
  margin: 0;
  color: #7f767a;
  font-size: 11px;
  line-height: 1.55;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-recipe-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 10px;
  color: #746c70;
  font-size: 10px;
}

.gl-recipe-meta > span {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}

.gl-recipe-meta .gl-icon {
  width: 12px;
  height: 12px;
}

.gl-meta-rating {
  color: #5e5559;
}

.gl-meta-rating > span[aria-hidden] {
  color: #f2a51a;
}

.gl-meta-popularity {
  color: #eb5d78;
}

/* Calculator */
.gl-calculator-section {
  padding-top: 18px;
}

.gl-calculator-shell {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 245px;
  gap: 14px;
  padding: 20px;
  border: 1px solid #cfe5d5;
  border-radius: 20px;
  background:
    radial-gradient(circle at 2% 12%, rgba(214, 244, 219, 0.9), transparent 28%),
    radial-gradient(circle at 95% 86%, rgba(255, 252, 220, 0.8), transparent 30%),
    linear-gradient(110deg, #f3fbf3, #f9fff8 60%, #fffef5);
  box-shadow: 0 10px 28px rgba(46, 94, 59, 0.06);
}

.gl-calculator-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 4px 4px 2px;
}

.gl-calculator-intro h2 {
  margin: 0 0 5px;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.gl-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 11px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: #dff5e2;
  color: #31874a;
  font-size: 11px;
  font-weight: 800;
}

.gl-calculator-intro p {
  margin-bottom: 18px;
  color: #667168;
  font-size: 13px;
  line-height: 1.7;
}

.gl-button {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 750;
  transition: 0.2s ease;
}

.gl-button--primary {
  margin-top: auto;
  background: var(--gl-accent);
  color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--gl-accent) 22%, transparent);
}

.gl-button--primary:hover {
  color: #fff;
  background: var(--gl-accent-dark);
  transform: translateY(-1px);
}

.gl-button--secondary {
  margin-top: 9px;
  border: 1px solid #ded8da;
  background: #fff;
  color: #50484b;
}

.gl-button--secondary:hover {
  border-color: var(--gl-accent);
  color: var(--gl-accent);
}

.gl-calculator-results {
  overflow: hidden;
  border: 1px solid #e5ebe5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.91);
}

.gl-calculator-topline {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 14px;
  border-bottom: 1px solid #edf0ed;
}

.gl-calculator-topline strong {
  font-size: 12px;
}

.gl-calculator-topline select {
  height: 30px;
  padding: 0 28px 0 10px;
  border: 1px solid #dfE5df;
  border-radius: 7px;
  background: #fff;
  color: #534b4e;
  font-size: 10px;
}

.gl-gauges {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 14px 10px 10px;
}

.gl-gauge-item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 8px;
  text-align: center;
  border-right: 1px solid #edf0ed;
}

.gl-gauge-item:last-child {
  border-right: 0;
}

.gl-gauge-label {
  min-height: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gl-gauge-label strong {
  font-size: 11px;
  line-height: 1.35;
}

.gl-gauge-label small {
  color: #8a8285;
  font-size: 8.5px;
}

.gl-gauge {
  position: relative;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin: 4px 0 2px;
  border-radius: 50%;
  background: conic-gradient(var(--gauge-color) calc(var(--progress) * 1%), #e8eee9 0);
}

.gl-gauge::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: #fff;
}

.gl-gauge-core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.gl-gauge-core strong {
  font-size: 18px;
  letter-spacing: -0.04em;
}

.gl-gauge-core span {
  min-height: 10px;
  margin-top: 3px;
  color: #8d8589;
  font-size: 8px;
}

.gl-gauge-range {
  color: #8a8285;
  font-size: 8px;
}

.gl-gauge-state {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  margin-top: 3px;
  border-radius: 999px;
  background: #e2f4e4;
  color: #3d9254;
  font-size: 8px;
  font-weight: 750;
}

.gl-calculator-summary {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 13px;
  border-top: 1px solid #edf0ed;
  color: #545c56;
  font-size: 9px;
}

.gl-calculator-summary > strong {
  color: #323834;
  font-size: 10px;
}

.gl-summary-ok {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #448f58;
}

.gl-summary-ok .gl-icon {
  width: 13px;
  height: 13px;
}

.gl-calculator-summary > a {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gl-accent);
  font-weight: 700;
  white-space: nowrap;
}

.gl-calculator-summary > a .gl-icon {
  width: 12px;
  height: 12px;
}

.gl-ingredient-sample {
  overflow: hidden;
  border: 1px solid #e5ebe5;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.91);
}

.gl-ingredient-heading {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid #edf0ed;
}

.gl-ingredient-heading strong {
  font-size: 11px;
}

.gl-ingredient-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid #e0e6e1;
  border-radius: 7px;
  color: #8c8487;
  font-size: 9px;
}

.gl-ingredient-sample table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.gl-ingredient-sample th,
.gl-ingredient-sample td {
  padding: 5px 13px;
  border-bottom: 1px solid #f0f2f0;
}

.gl-ingredient-sample th {
  color: #71696c;
  font-weight: 500;
  text-align: left;
}

.gl-ingredient-sample td {
  color: #3d3639;
  text-align: right;
  white-space: nowrap;
}

.gl-ingredient-sample tfoot th,
.gl-ingredient-sample tfoot td {
  padding-top: 7px;
  padding-bottom: 7px;
  border-bottom: 0;
  color: #2d2729;
  font-weight: 800;
}

/* Articles */
.gl-article-card .gl-card-body > p {
  min-height: 36px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

.gl-author-meta {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #665e62;
  font-size: 9px;
}

.gl-author-meta > span:not(.gl-avatar) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-author-meta small {
  color: #9b9196;
  white-space: nowrap;
}

.gl-avatar {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #efe5e8;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff1f5, #efe9ff);
  color: var(--gl-accent);
  font-size: 7px;
  font-weight: 800;
}

/* Shops */
.gl-shop-section {
  padding-top: 24px;
}

.gl-shop-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gl-shop-card {
  min-width: 0;
  padding: 15px;
  border: 1px solid #eae4e7;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(64, 38, 47, 0.05);
  transition: 0.23s ease;
}

.gl-shop-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--gl-accent) 22%, #eae4e7);
  box-shadow: var(--gl-shadow-sm);
}

.gl-shop-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.gl-shop-logo {
  width: 58px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fff0f4;
  color: var(--gl-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gl-shop-logo--orange {
  background: #fff2df;
  color: #e68122;
}

.gl-shop-logo--blue {
  background: #eaf3ff;
  color: #317bd3;
}

.gl-shop-logo--teal {
  background: #e7f7f6;
  color: #2b8e8a;
}

.gl-shop-logo--yellow {
  background: #fff9dc;
  color: #d89b08;
}

.gl-shop-chevron {
  color: #b2aaae;
}

.gl-shop-chevron .gl-icon {
  width: 15px;
  height: 15px;
}

.gl-shop-card h3 {
  overflow: hidden;
  margin: 0 0 2px;
  color: #332a2e;
  font-size: 13px;
  font-weight: 790;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-shop-card > p {
  overflow: hidden;
  margin: 0 0 8px;
  color: #888084;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-shop-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 10px;
}

.gl-shop-bottomline small {
  color: #9f979a;
}

.gl-shop-bottomline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 29px;
  padding: 0 11px;
  border: 1px solid #ffc3d0;
  border-radius: 7px;
  color: var(--gl-accent);
  font-weight: 750;
  white-space: nowrap;
}

.gl-shop-bottomline a:hover {
  background: var(--gl-accent);
  color: #fff;
}

/* Courses */
.gl-course-card .gl-card-body > p {
  min-height: 34px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
}

.gl-course-bottomline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 7px;
}

.gl-author-compact {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  color: #696065;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gl-course-bottomline > strong {
  color: var(--gl-accent);
  font-size: 12px;
  white-space: nowrap;
}

/* Community */
.gl-community {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: 36px 0;
  background:
    linear-gradient(100deg, rgba(237, 231, 255, 0.94), rgba(255, 232, 239, 0.93)),
    var(--gl-community-image) center / cover no-repeat;
}

.gl-community::before,
.gl-community::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
}

.gl-community::before {
  width: 280px;
  height: 280px;
  left: -100px;
  top: -150px;
  background: #fff;
}

.gl-community::after {
  width: 230px;
  height: 230px;
  right: -40px;
  bottom: -120px;
  background: #ffdce5;
}

.gl-community-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.gl-community-copy h2 {
  margin: 0 0 2px;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.gl-community-copy > p {
  margin-bottom: 21px;
  color: #675c65;
  font-size: 14px;
}

.gl-community-metrics {
  display: flex;
  align-items: stretch;
  gap: 26px;
}

.gl-community-metrics > div {
  min-width: 125px;
  display: grid;
  grid-template-columns: 42px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
}

.gl-metric-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 114, 230, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gl-purple);
}

.gl-metric-icon .gl-icon {
  width: 21px;
  height: 21px;
}

.gl-community-metrics strong {
  color: #9b5abb;
  font-size: 21px;
  line-height: 1.1;
}

.gl-community-metrics small {
  color: #756b72;
  font-size: 10px;
}

.gl-testimonial {
  position: relative;
  min-height: 150px;
  padding: 28px 34px 24px 92px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(84, 58, 81, 0.10);
  backdrop-filter: blur(12px);
}

.gl-quote-mark {
  position: absolute;
  top: 18px;
  left: 24px;
  width: 52px;
  height: auto;
}

.gl-testimonial > p {
  margin: 0 0 14px;
  color: #5a5156;
  font-size: 13px;
  line-height: 1.75;
}

.gl-testimonial footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gl-testimonial-avatar {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gl-accent), var(--gl-purple));
  color: #fff;
  font-size: 11px;
  font-weight: 850;
}

.gl-testimonial cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  line-height: 1.35;
}

.gl-testimonial cite strong {
  font-size: 12px;
}

.gl-testimonial cite small {
  color: #8a8186;
  font-size: 9px;
}

/* Footer */
.gl-site-footer {
  border-top: 1px solid #ebe5e8;
  background: #fff;
}

.gl-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.95fr 0.95fr 1.2fr;
  gap: 44px;
  padding-top: 34px;
  padding-bottom: 26px;
}

.gl-brand--footer .gl-brand-copy strong {
  font-size: 21px;
}

.gl-footer-brand-col > p {
  max-width: 280px;
  margin: 12px 0 14px;
  color: #777074;
  font-size: 11px;
  line-height: 1.75;
}

.gl-social-links {
  display: flex;
  align-items: center;
  gap: 7px;
}

.gl-social-links a {
  width: 29px;
  height: 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9e2e5;
  border-radius: 50%;
  color: #584f53;
}

.gl-social-links a:hover {
  border-color: var(--gl-accent);
  background: var(--gl-accent);
  color: #fff;
}

.gl-social-links .gl-icon {
  width: 14px;
  height: 14px;
}

.gl-footer-col h2 {
  margin: 4px 0 11px;
  font-size: 12px;
  font-weight: 820;
}

.gl-footer-menu,
.gl-footer-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.gl-footer-menu li + li,
.gl-footer-contact li + li {
  margin-top: 7px;
}

.gl-footer-menu a {
  color: #6f676b;
  font-size: 10px;
}

.gl-footer-menu a:hover {
  color: var(--gl-accent);
}

.gl-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  color: #696165;
  font-size: 10px;
}

.gl-footer-contact .gl-icon {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  color: #51484c;
}

.gl-footer-bottom {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #efe9ec;
}

.gl-footer-bottom p {
  margin: 0;
  color: #8b8287;
  font-size: 9px;
}

.gl-back-to-top {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e6dfe2;
  border-radius: 50%;
  background: #fff;
  color: #7e7479;
  cursor: pointer;
  box-shadow: 0 5px 14px rgba(65, 38, 48, 0.08);
}

.gl-back-to-top .gl-icon {
  width: 16px;
  height: 16px;
  transform: rotate(90deg);
}

.gl-back-to-top:hover {
  border-color: var(--gl-accent);
  color: var(--gl-accent);
}

/* Standard WordPress content pages */
.gl-content-area {
  padding: 56px 0 72px;
}

.gl-content-shell {
  width: min(calc(100% - 48px), 1040px);
  margin-inline: auto;
}

.gl-page-header {
  margin-bottom: 30px;
  text-align: center;
}

.gl-page-header h1 {
  margin-bottom: 8px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.gl-page-header p {
  color: var(--gl-muted);
}

.gl-entry-card {
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--gl-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--gl-shadow-sm);
}

.gl-entry-card + .gl-entry-card {
  margin-top: 20px;
}

.gl-entry-card__media {
  margin: -32px -32px 26px;
}

.gl-entry-card__media img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.gl-entry-title {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.gl-entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--gl-muted);
  font-size: 13px;
}

.gl-entry-content {
  color: #40373b;
  font-size: 17px;
  line-height: 1.85;
}

.gl-entry-content > *:last-child {
  margin-bottom: 0;
}

.gl-entry-content img {
  border-radius: 14px;
}

.gl-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gl-archive-card {
  overflow: hidden;
  border: 1px solid var(--gl-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--gl-shadow-sm);
}

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

.gl-archive-card__body {
  padding: 18px;
}

.gl-archive-card h2 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.4;
}

.gl-archive-card p {
  margin-bottom: 12px;
  color: var(--gl-muted);
  font-size: 14px;
}

.gl-pagination {
  margin-top: 34px;
}

.gl-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.gl-pagination .page-numbers {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid var(--gl-border);
  border-radius: 9px;
  background: #fff;
}

.gl-pagination .current,
.gl-pagination a:hover {
  border-color: var(--gl-accent);
  background: var(--gl-accent);
  color: #fff;
}

/* Responsive */
@media (max-width: 1280px) {
  .gl-container {
    width: min(calc(100% - 40px), var(--gl-container));
  }

  .gl-header-inner {
    gap: 16px;
  }

  .gl-menu {
    gap: 14px;
  }

  .gl-menu a {
    font-size: 12.5px;
  }

  .gl-login-button {
    padding-inline: 16px;
  }

  .gl-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(470px, 1.12fr);
  }

  .gl-quick-link {
    grid-template-columns: 40px minmax(0, 1fr) 16px;
    gap: 9px;
    padding-inline: 12px;
  }

  .gl-quick-link-icon {
    width: 40px;
    height: 40px;
  }

  .gl-calculator-shell {
    grid-template-columns: 235px minmax(0, 1fr) 215px;
  }

  .gl-gauge {
    width: 70px;
    height: 70px;
  }

  .gl-gauge-core strong {
    font-size: 16px;
  }

  .gl-footer-grid {
    gap: 28px;
  }
}

@media (max-width: 1120px) {
  .gl-primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    z-index: 100;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    padding: 18px 20px 28px;
    border-top: 1px solid var(--gl-border);
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 30px rgba(55, 31, 40, 0.12);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
  }

  .admin-bar .gl-primary-nav {
    inset-block-start: 114px;
  }

  .gl-primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

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

  .gl-menu li {
    width: 100%;
  }

  .gl-menu a {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 14px;
  }

  .gl-menu a:hover,
  .gl-menu .current-menu-item > a {
    background: var(--gl-accent-soft);
  }

  .gl-menu .current-menu-item > a::after,
  .gl-menu .current_page_item > a::after {
    display: none;
  }

  .gl-menu .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    padding: 5px 0 5px 14px;
    border: 0;
    box-shadow: none;
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .gl-menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .gl-menu-toggle[aria-expanded="true"] .gl-menu-toggle__open {
    display: none;
  }

  .gl-menu-toggle[aria-expanded="true"] .gl-menu-toggle__close {
    display: inline-flex;
  }

  .gl-brand-wrap {
    flex: 1 1 auto;
  }

  .gl-header-actions {
    order: 2;
  }

  .gl-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  }

  .gl-hero-copy {
    padding-bottom: 62px;
  }

  .gl-quick-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
  }

  .gl-quick-link {
    border-right: 0;
  }

  .gl-card {
    flex-basis: calc((100% - 32px) / 3);
  }

  .gl-calculator-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .gl-ingredient-sample {
    grid-column: 1 / -1;
  }

  .gl-ingredient-sample table tbody {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gl-ingredient-sample table tbody tr {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #f0f2f0;
  }

  .gl-ingredient-sample th,
  .gl-ingredient-sample td {
    border-bottom: 0;
  }

  .gl-ingredient-sample tfoot tr {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
  }

  .gl-shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gl-community-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .gl-community-metrics {
    gap: 12px;
  }

  .gl-community-metrics > div {
    min-width: 0;
  }

  .gl-footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .gl-footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .admin-bar .gl-site-header {
    top: 46px;
  }

  .admin-bar .gl-primary-nav {
    inset-block-start: 128px;
  }

  .gl-container,
  .gl-content-shell {
    width: min(calc(100% - 30px), var(--gl-container));
  }

  .gl-brand-copy strong {
    font-size: 21px;
  }

  .gl-brand-copy small {
    font-size: 6.5px;
  }

  .gl-header-actions .gl-icon-button:first-child,
  .gl-header-actions .gl-notification-dot {
    display: none;
  }

  .gl-login-button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .gl-hero {
    min-height: 0;
  }

  .gl-hero-grid {
    grid-template-columns: 1fr;
  }

  .gl-hero-copy {
    padding: 44px 0 22px;
  }

  .gl-hero h1 {
    max-width: 690px;
    font-size: clamp(40px, 9vw, 60px);
  }

  .gl-hero-media {
    min-height: 310px;
  }

  .gl-hero-image-frame {
    inset: 0 -45px 0 -45px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 13%, #000 100%);
  }

  .gl-recipe-count-badge {
    top: 24px;
    right: 18px;
    width: 108px;
    height: 108px;
  }

  .gl-recipe-count-badge strong {
    font-size: 23px;
  }

  .gl-quick-links {
    margin-top: -18px;
  }

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

  .gl-quick-link:last-child {
    grid-column: 1 / -1;
  }

  .gl-card {
    flex-basis: calc((100% - 16px) / 2);
  }

  .gl-calculator-shell {
    grid-template-columns: 1fr;
  }

  .gl-calculator-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: center;
  }

  .gl-calculator-intro h2,
  .gl-calculator-intro p,
  .gl-calculator-intro .gl-status-pill {
    grid-column: 1 / -1;
  }

  .gl-calculator-intro p {
    margin-bottom: 6px;
  }

  .gl-button--primary,
  .gl-button--secondary {
    margin: 0;
  }

  .gl-ingredient-sample {
    grid-column: auto;
  }

  .gl-ingredient-sample table tbody {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gl-community-grid {
    grid-template-columns: 1fr;
  }

  .gl-testimonial {
    min-height: 0;
  }

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

  .gl-footer-brand-col {
    grid-column: 1 / -1;
  }

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

@media (max-width: 560px) {
  .gl-container,
  .gl-content-shell {
    width: min(calc(100% - 24px), var(--gl-container));
  }

  .gl-site-header,
  .gl-header-inner {
    min-height: 70px;
  }

  .gl-primary-nav {
    inset-block-start: 70px;
    max-height: calc(100vh - 70px);
  }

  .admin-bar .gl-primary-nav {
    inset-block-start: 116px;
  }

  .gl-brand-mark {
    width: 36px;
    height: 36px;
  }

  .gl-brand-copy strong {
    font-size: 19px;
  }

  .gl-brand-copy small {
    display: none;
  }

  .gl-login-button {
    display: none;
  }

  .gl-menu {
    grid-template-columns: 1fr;
  }

  .gl-hero-copy {
    padding-top: 34px;
  }

  .gl-eyebrow {
    font-size: 12px;
  }

  .gl-hero h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .gl-hero-description {
    font-size: 14px;
  }

  .gl-hero-search {
    min-height: 54px;
    padding-left: 42px;
  }

  .gl-search-leading {
    left: 14px;
  }

  .gl-hero-search button {
    min-width: 72px;
    padding-inline: 13px;
    font-size: 12px;
  }

  .gl-hero-media {
    min-height: 245px;
  }

  .gl-recipe-count-badge {
    width: 92px;
    height: 92px;
    top: 10px;
    right: 6px;
    border-width: 2px;
  }

  .gl-recipe-count-badge small,
  .gl-recipe-count-badge span {
    font-size: 9px;
  }

  .gl-recipe-count-badge strong {
    font-size: 20px;
  }

  .gl-quick-links-grid {
    grid-template-columns: 1fr;
    padding: 9px;
  }

  .gl-quick-link:last-child {
    grid-column: auto;
  }

  .gl-section {
    padding-top: 28px;
  }

  .gl-section-heading {
    align-items: flex-end;
    gap: 12px;
  }

  .gl-section-heading h2 {
    font-size: 22px;
  }

  .gl-carousel-button {
    display: none;
  }

  .gl-view-all {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 10px;
  }

  .gl-card-row {
    margin-right: -12px;
    padding-right: 12px;
  }

  .gl-card {
    flex-basis: 82%;
  }

  .gl-calculator-shell {
    padding: 14px;
  }

  .gl-calculator-intro {
    display: flex;
  }

  .gl-calculator-intro h2 {
    font-size: 21px;
  }

  .gl-gauges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 0;
  }

  .gl-gauge-item:nth-child(2) {
    border-right: 0;
  }

  .gl-gauge-item:nth-child(3),
  .gl-gauge-item:nth-child(4) {
    padding-top: 12px;
    border-top: 1px solid #edf0ed;
  }

  .gl-calculator-summary {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .gl-summary-ok {
    flex-basis: calc(100% - 80px);
  }

  .gl-calculator-summary > a {
    margin-left: auto;
  }

  .gl-ingredient-sample table tbody {
    display: table-row-group;
  }

  .gl-ingredient-sample table tbody tr,
  .gl-ingredient-sample tfoot tr {
    display: table-row;
  }

  .gl-ingredient-sample th,
  .gl-ingredient-sample td {
    border-bottom: 1px solid #f0f2f0;
  }

  .gl-shop-grid {
    grid-template-columns: 1fr;
  }

  .gl-community {
    padding: 31px 0;
  }

  .gl-community-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .gl-community-metrics > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gl-metric-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 7px;
  }

  .gl-community-metrics strong {
    font-size: 18px;
  }

  .gl-testimonial {
    padding: 70px 22px 22px;
  }

  .gl-quote-mark {
    top: 15px;
    left: 20px;
  }

  .gl-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gl-footer-brand-col {
    grid-column: auto;
  }

  .gl-footer-bottom {
    align-items: flex-start;
    padding: 14px 0;
  }

  .gl-archive-grid {
    grid-template-columns: 1fr;
  }

  .gl-entry-card {
    padding: 22px;
  }

  .gl-entry-card__media {
    margin: -22px -22px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
