/* =========================================================
   Glucosol IT - site-3 | prefix: gly- | font: Mulish
   layout: soft-shadows | palette: RED #D02030
   ========================================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gly-primary: #D02030;
  --gly-primary-light: #E04050;
  --gly-primary-dark: #B01828;
  --gly-accent: #E8A830;
  --gly-accent-dark: #C48A20;
  --gly-bg: #FFFFFF;
  --gly-bg-alt: #FFF8F8;
  --gly-surface: #FFFFFF;
  --gly-text: #1A1A2E;
  --gly-text-sec: #4A5568;
  --gly-text-on-primary: #FFFFFF;
  --gly-border: #E8D0D0;
  --gly-price-old: #999999;
  --gly-price-new: #E8A830;
  --gly-badge-discount: #E74C3C;
  --gly-hero-bg: #FFF5F5;
  --gly-footer-bg: #2A1A1E;
  --gly-footer-text: #C8B8BC;
  --gly-radius: 16px;
  --gly-radius-sm: 10px;
  --gly-shadow: 0 6px 24px rgba(208, 32, 48, 0.06);
  --gly-shadow-hover: 0 12px 36px rgba(208, 32, 48, 0.12);
  --gly-container: 1120px;
  --gly-gap: 28px;
  --gly-font: 'Mulish', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--gly-font);
  color: var(--gly-text);
  background: var(--gly-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gly-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gly-primary-light); }

/* --- Container --- */
.gly-frame {
  max-width: var(--gly-container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header / Topbar --- */
.gly-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gly-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow .3s;
}

.gly-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.gly-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gly-text);
  text-decoration: none;
  white-space: nowrap;
}
.gly-brand:hover { color: var(--gly-primary); }

.gly-menu-list {
  list-style: none;
  display: flex;
  gap: 24px;
  align-items: center;
}

.gly-menu-list a {
  color: var(--gly-text-sec);
  font-size: .88rem;
  font-weight: 500;
  transition: color .2s;
  white-space: nowrap;
}
.gly-menu-list a:hover { color: var(--gly-primary); }

.gly-menu-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gly-text);
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 20px;
}

.gly-trigger {
  display: inline-block;
  background: var(--gly-accent);
  color: var(--gly-text);
  font-weight: 700;
  font-size: .95rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  text-align: center;
  line-height: 1.4;
}
.gly-trigger:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(232, 168, 48, 0.3);
  color: var(--gly-text);
}

.gly-trigger--header {
  padding: 8px 20px;
  font-size: .85rem;
}

.gly-trigger--wide {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
}

.gly-trigger-wrap {
  text-align: center;
  margin-top: 32px;
}

.gly-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gly-text);
  padding: 4px;
}

/* --- Hero / Showcase --- */
.gly-showcase-section {
  background: linear-gradient(170deg, var(--gly-hero-bg) 0%, var(--gly-bg) 100%);
  padding: 20px 0 0;
}

.gly-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 40px;
  align-items: start;
  padding: 48px 0 56px;
}

.gly-showcase-content { display: flex; flex-direction: column; gap: 20px; }

.gly-chip-row { display: flex; gap: 8px; flex-wrap: wrap; }

.gly-chip {
  display: inline-block;
  background: var(--gly-bg-alt);
  border: 1px solid var(--gly-border);
  color: var(--gly-text-sec);
  font-size: .78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}
.gly-chip--accent {
  background: rgba(232, 168, 48, 0.1);
  border-color: rgba(232, 168, 48, 0.3);
  color: var(--gly-accent-dark);
}
.gly-chip--discount {
  background: var(--gly-badge-discount);
  color: #fff;
  border-color: var(--gly-badge-discount);
  font-size: .75rem;
  padding: 2px 10px;
  vertical-align: middle;
}

.gly-showcase-intro {
  color: var(--gly-text-sec);
  font-size: .95rem;
  line-height: 1.75;
}

.gly-showcase-visual { display: flex; flex-direction: column; gap: 20px; }

.gly-showcase-img {
  display: block;
  width: 100%;
  max-width: min(560px, 100%);
  height: auto;
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
}

/* --- Summary table (specs) --- */
.gly-specs {
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  padding: 20px 24px;
  border: 1px solid var(--gly-border);
}

.gly-specs-title {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--gly-primary);
  margin-bottom: 12px;
}

.gly-specs-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.gly-specs-table td { padding: 8px 0; vertical-align: top; border-bottom: 1px solid rgba(232, 208, 208, 0.5); }
.gly-specs-table td:first-child { font-weight: 600; color: var(--gly-text); width: 40%; padding-right: 12px; }
.gly-specs-table td:last-child { color: var(--gly-text-sec); }
.gly-specs-table tr:last-child td { border-bottom: none; }

.gly-price-highlight { color: var(--gly-accent-dark); font-size: 1.05rem; }
.gly-price-highlight + s { color: var(--gly-price-old); font-size: .82rem; margin: 0 6px; }

/* --- TOC / Index --- */
.gly-index {
  padding: 0 0 12px;
  background: var(--gly-bg);
}

.gly-index-card {
  background: var(--gly-surface);
  border: 1px solid var(--gly-border);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  padding: 24px 28px;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.gly-index-title {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gly-primary);
  margin-bottom: 14px;
}

.gly-index-list {
  list-style: none;
  counter-reset: toc-count;
  display: grid;
  gap: 6px;
}

.gly-index-list li {
  counter-increment: toc-count;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.gly-index-list li::before {
  content: counter(toc-count, decimal-leading-zero);
  color: var(--gly-primary);
  font-weight: 700;
  font-size: .78rem;
  min-width: 22px;
}

.gly-index-list a {
  color: var(--gly-text-sec);
  font-size: .88rem;
  font-weight: 500;
  padding: 4px 0;
  transition: color .2s;
}
.gly-index-list a:hover { color: var(--gly-primary); }

/* --- Sections / Segments --- */
.gly-segment {
  padding: 64px 0;
  background: var(--gly-bg);
}

.gly-segment--alt {
  background: var(--gly-bg-alt);
}

.gly-segment h2 {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--gly-text);
  line-height: 1.3;
}

.gly-segment h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gly-text);
  line-height: 1.35;
}

.gly-segment p {
  margin-bottom: 16px;
  color: var(--gly-text-sec);
  line-height: 1.75;
}

.gly-segment ul,
.gly-segment ol {
  margin: 12px 0 20px 0;
  padding-left: 0;
  list-style: none;
}

.gly-segment ul li,
.gly-segment ol li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: var(--gly-text-sec);
  line-height: 1.65;
}

.gly-segment ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--gly-primary);
  border-radius: 50%;
  opacity: .6;
}

.gly-segment ol {
  counter-reset: ol-step;
}
.gly-segment ol li {
  counter-increment: ol-step;
  padding-left: 36px;
}
.gly-segment ol li::before {
  content: counter(ol-step);
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: var(--gly-primary);
  color: var(--gly-text-on-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
}

.gly-segment ul li strong,
.gly-segment ol li strong {
  color: var(--gly-text);
}

/* --- Ingredient cards (elements) --- */
.gly-element-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gly-gap);
  margin: 28px 0;
}

.gly-element {
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  padding: 28px;
  border: 1px solid var(--gly-border);
  transition: box-shadow .3s, transform .3s;
}
.gly-element:hover {
  box-shadow: var(--gly-shadow-hover);
  transform: translateY(-3px);
}

.gly-element-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.gly-element-hex { flex-shrink: 0; }

.gly-element h3 {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.gly-element p {
  font-size: .92rem;
}

.gly-element ul { margin: 8px 0 12px; }
.gly-element ul li { font-size: .92rem; }

/* --- Composition table --- */
.gly-table-scroll { overflow-x: auto; margin: 28px 0 0; }

.gly-composition-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  overflow: hidden;
  box-shadow: var(--gly-shadow);
}

.gly-composition-table caption {
  text-align: left;
  font-weight: 700;
  font-size: .95rem;
  padding: 16px 20px 12px;
  color: var(--gly-text);
}

.gly-composition-table th {
  background: var(--gly-primary);
  color: var(--gly-text-on-primary);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.gly-composition-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gly-border);
  color: var(--gly-text-sec);
  vertical-align: top;
}

.gly-composition-table td:first-child { font-weight: 600; color: var(--gly-text); }
.gly-composition-table tr:last-child td { border-bottom: none; }

/* --- Foglietto / Leaflet grid (panels) --- */
.gly-leaflet-grid {
  display: grid;
  gap: var(--gly-gap);
  margin-top: 24px;
}

.gly-panel {
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  padding: 28px;
  border: 1px solid var(--gly-border);
}

.gly-panel h3 {
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gly-primary);
  margin-bottom: 16px;
}

/* --- Expert / Specialist --- */
.gly-specialist {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  border: 1px solid var(--gly-border);
}

.gly-specialist-photo { flex-shrink: 0; }

.gly-specialist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gly-primary);
}

.gly-specialist-info { display: flex; flex-direction: column; gap: 4px; }

.gly-specialist-name {
  font-size: 1.1rem;
  color: var(--gly-text);
}

.gly-specialist-role {
  font-size: .85rem;
  color: var(--gly-primary);
  font-weight: 600;
}

.gly-specialist-bio {
  font-size: .88rem;
  color: var(--gly-text-sec);
  margin-top: 8px;
  margin-bottom: 0;
}

.gly-opinion {
  border-left: 4px solid var(--gly-primary);
  padding: 24px 28px;
  background: var(--gly-surface);
  border-radius: 0 var(--gly-radius) var(--gly-radius) 0;
  box-shadow: var(--gly-shadow);
  margin: 0 0 24px;
}

.gly-opinion p { font-size: .92rem; }
.gly-opinion ul { margin: 8px 0 16px; }
.gly-opinion ul li { font-size: .92rem; }

.gly-stars-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  border: 1px solid var(--gly-border);
}

.gly-stars-label { font-weight: 600; font-size: .9rem; color: var(--gly-text); }
.gly-stars-value { font-weight: 700; font-size: 1.2rem; color: var(--gly-accent-dark); }
.gly-stars-icons { display: flex; gap: 2px; }

/* --- Purchase split --- */
.gly-purchase-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 36px;
  align-items: start;
  margin-top: 24px;
}

.gly-purchase-info h3 {
  margin-top: 20px;
}

/* --- Offer card (price block) --- */
.gly-offer-card {
  position: relative;
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow-hover);
  padding: 32px 28px;
  border: 2px solid var(--gly-primary);
  text-align: center;
}

.gly-offer-card-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--gly-badge-discount);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  padding: 5px 14px;
  border-radius: 50px;
}

.gly-offer-card-title {
  display: block;
  font-size: 1.15rem;
  color: var(--gly-text);
  margin-bottom: 4px;
}

.gly-offer-card-subtitle {
  font-size: .85rem;
  color: var(--gly-text-sec);
  margin-bottom: 20px;
}

.gly-offer-card-prices {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.gly-offer-card-old {
  font-size: 1rem;
  color: var(--gly-price-old);
}

.gly-offer-card-new {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gly-accent-dark);
}

.gly-offer-card-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
}

.gly-offer-card-perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--gly-text-sec);
}

.gly-offer-card-perks li::before { display: none; }

/* --- Reviews / Feedback --- */
.gly-feedback-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.gly-feedback {
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  padding: 24px 28px;
  border: 1px solid var(--gly-border);
  transition: box-shadow .3s, transform .3s;
}
.gly-feedback:hover {
  box-shadow: var(--gly-shadow-hover);
  transform: translateY(-2px);
}

.gly-feedback-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.gly-feedback-name { font-size: 1rem; color: var(--gly-text); }

.gly-feedback-rating {
  background: rgba(232, 168, 48, 0.12);
  color: var(--gly-accent-dark);
  font-weight: 700;
  font-size: .82rem;
  padding: 3px 10px;
  border-radius: 50px;
}

.gly-feedback-situation {
  display: block;
  font-size: .82rem;
  color: var(--gly-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.gly-feedback p {
  font-size: .92rem;
  margin-bottom: 10px;
}

.gly-feedback-period {
  display: block;
  font-size: .78rem;
  color: var(--gly-text-sec);
  font-style: italic;
  margin-top: 4px;
}

/* --- FAQ / Accordion --- */
.gly-accordion-group {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.gly-accordion {
  background: var(--gly-surface);
  border-radius: var(--gly-radius);
  box-shadow: var(--gly-shadow);
  border: 1px solid var(--gly-border);
  overflow: hidden;
  transition: box-shadow .3s;
}
.gly-accordion:hover { box-shadow: var(--gly-shadow-hover); }

.gly-accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  gap: 12px;
}
.gly-accordion summary::-webkit-details-marker { display: none; }

.gly-accordion summary h3 {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  flex: 1;
}

.gly-accordion-chevron {
  flex-shrink: 0;
  color: var(--gly-primary);
  transition: transform .3s;
}

.gly-accordion[open] .gly-accordion-chevron {
  transform: rotate(180deg);
}

.gly-accordion[open] {
  background: var(--gly-bg-alt);
}

.gly-accordion-body {
  padding: 0 24px 20px;
}
.gly-accordion-body p {
  font-size: .9rem;
  line-height: 1.7;
}

/* --- Breadcrumb / Trail (inner pages) --- */
.gly-trail {
  background: var(--gly-bg-alt);
  padding: 12px 0;
  border-bottom: 1px solid var(--gly-border);
}

.gly-trail-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  flex-wrap: wrap;
}

.gly-trail-list li { display: flex; align-items: center; gap: 8px; }
.gly-trail-list li::before { display: none; }
.gly-trail-list li + li::before {
  content: '>';
  display: inline;
  color: var(--gly-text-sec);
  font-size: .75rem;
  padding: 0;
  position: static;
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  opacity: 1;
}

.gly-trail-list a {
  color: var(--gly-primary);
  font-weight: 500;
}

.gly-trail-list [aria-current="page"] {
  color: var(--gly-text-sec);
  font-weight: 400;
}

/* --- Legal pages: h1/h2 spacing --- */
.gly-segment h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.3;
}

/* --- Disclaimer / Legal note --- */
.gly-legal-note {
  background: var(--gly-surface);
  border: 1px solid var(--gly-border);
  border-radius: var(--gly-radius);
  padding: 24px 28px;
  box-shadow: var(--gly-shadow);
}

.gly-legal-note p {
  font-size: .85rem;
  color: var(--gly-text-sec);
}

/* --- Footer / Base --- */
.gly-base {
  background: var(--gly-footer-bg);
  color: var(--gly-footer-text);
  padding: 48px 0 20px;
}

.gly-base-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.gly-base-col { min-width: 0; }

.gly-base-heading {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  margin-bottom: 14px;
}

.gly-base p {
  font-size: .84rem;
  line-height: 1.65;
  color: var(--gly-footer-text);
}

.gly-base-links {
  list-style: none;
  padding: 0;
}

.gly-base-links li { padding: 4px 0; }

.gly-base-links a {
  color: var(--gly-footer-text);
  font-size: .84rem;
  transition: color .2s;
}
.gly-base-links a:hover { color: #fff; }

.gly-base-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  text-align: center;
}

.gly-base-bottom p {
  font-size: .78rem;
  color: rgba(200, 184, 188, 0.6);
}

/* --- Payments bar --- */
.gly-payments-bar {
  background: var(--gly-footer-bg);
  padding: 0 0 24px;
}

.gly-payments-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.gly-payment-icon {
  height: 32px;
  max-width: 72px;
  width: auto;
  background: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  object-fit: contain;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* --- Mobile (base, <768) --- */
@media (max-width: 767px) {
  .gly-topbar-inner { flex-wrap: wrap; }

  .gly-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--gly-bg);
    z-index: 200;
    padding: 72px 24px 40px;
    flex-direction: column;
  }

  .gly-menu.gly-menu--open {
    display: flex;
  }

  .gly-menu-list {
    flex-direction: column;
    gap: 0;
  }

  .gly-menu-list li { width: 100%; }

  .gly-menu-list a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gly-border);
  }

  .gly-menu-close {
    display: block;
  }

  .gly-burger { display: block; }

  .gly-trigger--header { display: none; }

  .gly-showcase {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0 40px;
  }

  .gly-showcase-visual { order: -1; }

  .gly-specs { padding: 16px 18px; }

  .gly-index-card { padding: 18px 20px; }

  .gly-segment { padding: 40px 0; }

  .gly-element-grid { gap: 16px; }
  .gly-element { padding: 20px; }

  .gly-panel { padding: 20px; }

  .gly-specialist { flex-direction: column; align-items: center; text-align: center; padding: 20px; }
  .gly-specialist-avatar { width: 80px; height: 80px; }
  .gly-specialist-info { align-items: center; }

  .gly-opinion { padding: 16px 20px; }

  .gly-stars-display { flex-wrap: wrap; justify-content: center; gap: 8px; }

  .gly-purchase-split { grid-template-columns: 1fr; gap: 24px; }

  .gly-offer-card { padding: 24px 20px; }

  .gly-feedback { padding: 18px 20px; }

  .gly-base-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Tablet (768+) --- */
@media (min-width: 768px) {
  .gly-element-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gly-feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gly-index-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Desktop (1024+) --- */
@media (min-width: 1024px) {
  .gly-frame { padding: 0 32px; }

  .gly-segment { padding: 80px 0; }

  .gly-element-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gly-leaflet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gly-feedback-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Wide (1440+) --- */
@media (min-width: 1440px) {
  .gly-frame { padding: 0 48px; }

  .gly-element-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
