/* ===========================================================================
   KPI Glossary — page-specific styles
   Used by: /resources/glossary-new
   Depends on: colorography.css (tokens), global.css (layout/nav/footer/sections)
   =========================================================================== */

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

/* -------- Section / hero shell ------------------------------------------- */
/* Page sits over a soft gradient. The hero owns top padding to clear the
   fixed navbar; below the hero, the list page background is white. */
body { background: #fff; }

.gl-hero {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #F8F9FC 0%, #F5F8FF 100%);
  border-bottom: 1px solid var(--color-neutral-200);
}

/* Decorative grid pattern — uses the Figma-exported asset (already has the
   radial mask and highlight cells baked in). Sits behind hero content. */
.gl-hero-grid {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 1600px;       /* keep grid cells at native size on small screens */
  aspect-ratio: 2 / 1;     /* SVG is 1600x800 — preserve so cells stay square */
  height: auto;
  pointer-events: none;
  background-image: url('/assets/marketing/Grid_mask-group.svg');
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 100%;
}

.gl-hero-inner {
  position: relative;          /* sits above .gl-hero-grid */
  max-width: 824px;            /* 952 figma frame - 64px each side padding */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* -------- Title + sub ---------------------------------------------------- */
.gl-hero-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.gl-hero-title {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: var(--color-primary-500);
  margin: 0;
}

.gl-hero-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-neutral-600);
  max-width: 760px;
  margin: 0;
}

/* -------- Search input --------------------------------------------------- */
.gl-search {
  width: 100%;
  max-width: 700px;
  height: 60px;
  background: #fff;
  border: 1px solid var(--color-neutral-100);
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(16,24,40,0.05);
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 16px;
}

.gl-search input {
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-neutral-900);
}

.gl-search input::placeholder { color: var(--color-neutral-300); }

.gl-search input:focus { outline: 0; }

.gl-search:focus-within {
  border-color: var(--color-primary-300);
  box-shadow: 0 0 0 4px rgba(54,97,237,0.08), 0 1px 1px rgba(16,24,40,0.05);
}

/* -------- Category pills ------------------------------------------------- */
.gl-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.gl-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--color-neutral-100);
  border-radius: 24px;
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-neutral-600);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  box-shadow: 0 1px 1px rgba(16,24,40,0.04);
}

.gl-pill:hover {
  background: var(--color-primary-50);
  color: var(--color-primary-500);
}

.gl-pill.is-active {
  background: var(--color-primary-500);
  border-color: var(--color-primary-500);
  color: #fff;
}

.gl-pill.is-active:hover {
  background: var(--color-primary-800);
  color: #fff;
}

.gl-pill-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Icon swap: show regular by default, switch to active variant when pill is selected. */
.gl-pill .gl-pill-icon--active { display: none; }
.gl-pill.is-active .gl-pill-icon--regular { display: none; }
.gl-pill.is-active .gl-pill-icon--active { display: inline-block; }

/* -------- List page (letter-grouped grid of metric cards) ---------------- */
.gl-list-section {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #fff;
}

/* Inner stack inside .container-large; container-large handles centering + max-width */
.gl-list-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.gl-letter {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
.gl-letter[hidden] { display: none; }

.gl-letter-heading {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: var(--color-neutral-800);
  margin: 0;
}

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

.gl-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
}
.gl-card[hidden] { display: none; }

.gl-card-title {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: var(--color-neutral-800);
  margin: 0;
}

.gl-card-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-neutral-600);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gl-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 24px;
  background: var(--color-primary-50);
  border: 1px solid var(--color-neutral-100);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 22px;
  color: var(--color-neutral-600);
}
.gl-card-tag-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.gl-empty {
  padding: 48px 24px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-neutral-500);
}
.gl-empty[hidden] { display: none; }

/* -------- Responsive ----------------------------------------------------- */
@media (max-width: 768px) {
  .gl-hero { padding-top: 64px; padding-bottom: 64px; }
  .gl-hero-inner { gap: 20px; }
  .gl-hero-title { font-size: 36px; line-height: 44px; letter-spacing: -0.7px; }
  .gl-hero-sub { font-size: 16px; line-height: 26px; }
  .gl-search { height: 52px; }
  .gl-pills { gap: 8px; }
  .gl-pill { font-size: 14px; padding: 7px 12px; }
}

@media (max-width: 480px) {
  .gl-hero { padding-top: 48px; padding-bottom: 48px; }
  .gl-hero-title { font-size: 32px; line-height: 40px; }
  .gl-pills { gap: 8px; }
}

@media (max-width: 991px) {
  .gl-list-inner { gap: 64px; }
  /* Stack cards into a single column from tablet portrait downward. */
  .gl-grid { grid-template-columns: minmax(0, 1fr); row-gap: 16px; }
}
@media (max-width: 768px) {
  .gl-list-section { padding-top: 64px; padding-bottom: 96px; }
  /* Override global .padding-global 5% — feels too cramped at this width. */
  .gl-list-section .padding-global { padding-left: 20px; padding-right: 20px; }
  .gl-list-inner { gap: 56px; }
  .gl-letter { gap: 16px; }
  .gl-letter-heading { font-size: 36px; line-height: 44px; letter-spacing: -0.7px; }
  .gl-card { padding: 20px; }
  .gl-card-title { font-size: 20px; line-height: 28px; }
  .gl-card-desc { font-size: 15px; line-height: 26px; -webkit-line-clamp: 3; }
}
@media (max-width: 480px) {
  .gl-list-section { padding-top: 48px; padding-bottom: 80px; }
  .gl-letter-heading { font-size: 32px; line-height: 40px; }
}

/* =========================================================================
   Inner page (single metric)
   ========================================================================= */

/* Make list-page cards clickable without breaking the visual */
a.gl-card { text-decoration: none; color: inherit; transition: box-shadow 0.15s ease, border-color 0.15s ease; }
a.gl-card:hover { border-color: var(--color-primary-300); box-shadow: 0 4px 16px rgba(54, 97, 237, 0.08); }
a.gl-card:focus-visible { outline: 2px solid var(--color-primary-500); outline-offset: 2px; }

/* -------- Detail hero ---------------------------------------------------- */
.gl-detail-hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, #F8F9FC 0%, #F5F8FF 100%);
  border-bottom: 1px solid var(--color-neutral-200);
}

/* Hero inner = 2-col grid mirroring .gl-detail-grid below.
   Left col: back button (sd-back). Right col: category tag + title + definition. */
.gl-detail-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.gl-detail-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

/* "All Metrics" back link — sd-back pattern. Ported from blog.css so metric
   pages don't need to load that stylesheet. */
.sd-back.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #52577a;
  text-decoration: none;
  transition: color 0.18s ease;
}
.sd-back.blog-post-back:hover { color: var(--color-primary-500); }
.sd-back.blog-post-back .sd-back-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d4d9ea;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.sd-back.blog-post-back:hover .sd-back-icon {
  background: rgba(54, 97, 237, 0.10);
  border-color: rgba(54, 97, 237, 0.35);
}
.sd-back.blog-post-back .sd-back-icon svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.gl-detail-cat {
  margin: 0;
}

.gl-detail-title {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: var(--color-primary-500);
  margin: 4px 0 0;
}

.gl-detail-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-neutral-600);
  max-width: 720px;
  margin: 0;
}

/* -------- Detail layout (sidebar + content) ----------------------------- */
/* Outer section: vertical padding only. Horizontal centering + max-width
   come from the design-system wrappers (.padding-global > .container-large). */
.gl-detail-layout {
  padding-top: 64px;
  padding-bottom: 80px;
}

/* Inner 2-col grid (sidebar + content) */
.gl-detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.gl-detail-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-self: start;
}

/* "On this page" TOC — mirrors success-story `.ss-toc` (node ref in the
   success-story.css). The parent `.gl-detail-aside` already handles sticky,
   so we strip the standalone-card chrome (bg, padding, radius, sticky). */
.ss-toc {
  position: static;
  top: auto;
  background: transparent;
  padding: 0;
  border-radius: 0;
  z-index: auto;
}
.ss-toc-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ss-toc-title {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #757a97;
}
.ss-toc-links {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e1e4ee;
}
.ss-toc-link {
  position: relative;
  display: block;
  padding: 8px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #757a97;
  text-decoration: none;
  transition: color 0.15s ease;
}
.ss-toc-link::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.15s ease;
}
.ss-toc-link:hover { color: #2D3044; }
.ss-toc-link.is-active { color: #3661ed; }
.ss-toc-link.is-active::before { background: #3661ed; }

.gl-toc-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gl-toc-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-neutral-500);
}

.gl-related {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.gl-related-link {
  display: block;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-primary-500);
  text-decoration: none;
  transition: color 0.15s ease;
}

.gl-related-link:hover { color: var(--color-primary-800); }

/* -------- Detail content (right column) --------------------------------- */
.gl-detail-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  min-width: 0;
}

/* TL;DR card — header (icon + label) over divider, body below.
   Spec from Figma node 1667:8333.
   padding 0 cancels the global `section` rule (120px top/bottom). */
.gl-detail-tldr {
  display: flex;
  flex-direction: column;
  background: #F5F8FF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.gl-detail-tldr-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}
.gl-detail-tldr-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-neutral-600);
}
.gl-detail-tldr-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2D2F31;
  text-transform: none;
}
.gl-detail-tldr-body {
  padding: 24px;
}
.gl-detail-tldr-body p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #1F212E;
}
.gl-detail-tldr-body p + p { margin-top: 12px; }

/* Body sections — reset base `section` padding (global.css gives every
   <section> 120px top/bottom; these are nested inside .gl-detail-content
   which already provides flex gap between siblings). */
.gl-detail-section {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}
.gl-detail-h2 {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: -0.4px;
  color: var(--color-neutral-800);
  margin: 0 0 16px;
}

.gl-detail-content p,
.gl-detail-content li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-neutral-700);
}
.gl-detail-content p { margin: 0 0 14px; }
.gl-detail-content p:last-child { margin-bottom: 0; }
.gl-detail-content ul,
.gl-detail-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gl-detail-content li::marker { color: inherit; }
.gl-detail-content strong { color: var(--color-neutral-800); font-weight: 600; }
.gl-detail-content code {
  background: var(--color-neutral-100);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
}

/* Final Thought quote block — Figma node 743:5172.
   h2 sits above (uses .gl-detail-h2). Card has soft gradient + leading quote. */
.gl-detail-final {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, #F8F9FC 0%, #F5F8FF 100%);
  border: 1px solid var(--color-neutral-100);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gl-detail-final-mark {
  flex-shrink: 0;
  width: 44.71px;
  height: 40px;
  color: var(--color-primary-500);
}
.gl-detail-final p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #232532;
}
.gl-detail-final p + p { margin-top: 18px; }
.gl-detail-final p strong { font-weight: 600; }

/* FAQs (shown upfront, no accordion) */
.gl-detail-faqs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}
.gl-faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 0 0;
  border-top: 1px solid var(--color-neutral-100);
}
.gl-faq-q {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: var(--color-neutral-800);
  margin: 0;
}
.gl-faq-a p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-neutral-600);
}

/* Placeholder (when no details .md yet) */
.gl-detail-placeholder {
  padding: 24px 28px;
  background: var(--color-neutral-50);
  border: 1px dashed var(--color-neutral-200);
  border-radius: 12px;
}
.gl-detail-placeholder-text {
  font-family: 'Inter', sans-serif;
  color: var(--color-neutral-600);
  margin: 0 0 12px;
}

/* CTA before footer */
/* "Discover Petavue" CTA block — Figma node 743:5299. Header row (heading +
   button) over a 2x2 feature grid. Lives between body content and footer. */
.gl-cta {
  background: #F8F9FC;
  border-top: 1px solid var(--color-neutral-100);
  border-bottom: 1px solid #D4D9EA;
  padding-top: 40px;
  padding-bottom: 40px;
}
.gl-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.gl-cta-head {
  display: flex;
  align-items: center;
  gap: 24px;
}
.gl-cta-head-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gl-cta-heading {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 48px;
  color: var(--color-primary-500);
  margin: 0;
}
.gl-cta-heading-light { font-weight: 400; }
.gl-cta-tagline {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #8E93AF;
  margin: 0;
}
/* Button uses .btn-primary from global.css — no custom button styles here. */
.gl-cta-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}
.gl-cta-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.gl-cta-feature-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary-500);
  flex-shrink: 0;
}
.gl-cta-feature-title {
  font-family: 'Instrument Sans', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  color: #1F212E;
  margin: 0;
}
.gl-cta-feature-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #52577A;
  margin: 0;
}

/* -------- Responsive (detail) ------------------------------------------- */
@media (max-width: 991px) {
  .gl-detail-hero { padding-top: 56px; padding-bottom: 56px; }
  .gl-detail-layout { padding-top: 48px; padding-bottom: 64px; }
  .gl-detail-grid { grid-template-columns: 220px minmax(0, 1fr); gap: 40px; }
  .gl-detail-hero-inner { grid-template-columns: 220px minmax(0, 1fr); gap: 40px; }
  .gl-detail-aside { top: 80px; gap: 24px; }
  .gl-cta { padding-top: 56px; padding-bottom: 56px; }
}
@media (max-width: 768px) {
  .gl-detail-hero { padding-top: 48px; padding-bottom: 48px; }
  .gl-detail-title { font-size: 36px; line-height: 44px; letter-spacing: -0.7px; }
  .gl-detail-sub { font-size: 16px; line-height: 26px; }
  .gl-detail-layout { padding-top: 40px; padding-bottom: 64px; }
  .gl-detail-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .gl-detail-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .gl-detail-aside { position: static; }
  /* TOC links become horizontal pills/chips on mobile. */
  .ss-toc-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    border-left: 0;
  }
  .ss-toc-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--color-primary-50);
    border: 1px solid var(--color-primary-100);
    font-size: 13px;
    color: var(--color-neutral-700);
  }
  .ss-toc-link::before { display: none; }
  .ss-toc-link.is-active {
    background: var(--color-primary-100);
    color: var(--color-primary-500);
  }
  .gl-detail-content { gap: 36px; }
  .gl-detail-h2 { font-size: 24px; line-height: 32px; }
  .gl-detail-tldr-head { padding: 14px 20px; }
  .gl-detail-tldr-body { padding: 24px 20px 28px 20px; }
  .gl-detail-tldr-body p { font-size: 16px; line-height: 28px; }
  .gl-detail-final { padding: 32px 24px; gap: 24px; }
  .gl-detail-final p { font-size: 16px; line-height: 28px; }
  .gl-detail-final p + p { margin-top: 14px; }
  .gl-cta { padding-top: 32px; padding-bottom: 32px; }
  .gl-cta-inner { gap: 32px; }
  .gl-cta-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gl-cta-heading { font-size: 26px; line-height: 36px; }
  .gl-cta-features { grid-template-columns: minmax(0, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .gl-detail-hero { padding-top: 40px; padding-bottom: 40px; }
  .gl-detail-title { font-size: 30px; line-height: 38px; }
  .gl-detail-layout { padding-top: 32px; padding-bottom: 56px; }
}
