/* ============================================================
   Custom Acetal Parts — Goldcattle
   Scoped stylesheet. 100% contained within .gc-acetal
   to avoid any leakage into WordPress / Kadence global styles.
   Brand tokens: --blue #0052cc | --navy #0f2747 | --accent #00a3c4
   UI refresh 2026-08-17: premium B2B precision-engineering look.
   ============================================================ */

.gc-acetal {
  --blue: #0052cc;
  --blue-dark: #00419e;
  --navy: #0f2747;
  --accent: #00a3c4;
  --accent-soft: #e4f6fb;
  --blue-soft: #eaf1fc;
  --ink: #1c2530;
  --muted: #5b6776;
  --line: #e3e8ef;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-tint: #eef4fb;
  --good: #1a7f4b;
  --good-soft: #e7f6ee;
  --warn: #b06a00;
  --warn-soft: #fbf0dc;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(15, 39, 71, .06);
  --shadow: 0 12px 34px rgba(15, 39, 71, .10);
  --shadow-card-hover: 0 18px 44px rgba(15, 39, 71, .14);
  --maxw: 1140px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  background: var(--bg);
  margin: 0;
  padding: 0;
  font-size: 16px;
  scroll-behavior: smooth;
}

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

.gc-acetal a { color: var(--blue); text-decoration: none; transition: color .18s ease; }
.gc-acetal a:hover { color: var(--blue-dark); }
.gc-acetal img { max-width: 100%; display: block; }

.gc-acetal :focus-visible {
  outline: 3px solid rgba(0, 82, 204, .45);
  outline-offset: 2px;
  border-radius: 4px;
}

.gc-acetal .gc-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.gc-acetal .gc-section { padding: 80px 0; }
.gc-acetal .gc-section--soft { background: var(--bg-soft); }
.gc-acetal .gc-section--tint { background: var(--bg-tint); }

/* ---------- Hero ---------- */
.gc-acetal .gc-hero {
  position: relative;
  background:
    radial-gradient(900px 380px at 88% -8%, rgba(0, 163, 196, .10), transparent 60%),
    radial-gradient(700px 360px at 0% 0%, rgba(0, 82, 204, .07), transparent 55%),
    linear-gradient(180deg, #f7fafd 0%, #ffffff 62%);
  padding: 46px 0 54px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.gc-acetal .gc-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--accent) 100%);
}
.gc-acetal .gc-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.gc-acetal .gc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 13px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.gc-acetal .gc-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.gc-acetal .gc-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.04;
  margin: 0 0 14px;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -.02em;
}
.gc-acetal .gc-hero__sub {
  font-size: 16.5px;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 560px;
  line-height: 1.6;
}
.gc-acetal .gc-hero__sub strong { color: var(--navy); font-weight: 700; }
.gc-acetal .gc-hero__specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 18px;
  max-width: 560px;
}
.gc-acetal .gc-hero__spec {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 13px 10px 12px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.gc-acetal .gc-hero__spec:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-top-color: var(--blue);
}
.gc-acetal .gc-hero__spec strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3px;
}
.gc-acetal .gc-hero__spec span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}
.gc-acetal .gc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px;
}
.gc-acetal .gc-hero__trust span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--good);
  background: var(--good-soft);
  border: 1px solid #c8ead6;
  border-radius: 999px;
  padding: 5px 11px;
}
.gc-acetal .gc-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.gc-acetal .gc-hero__cta .gc-btn { padding: 13px 24px; font-size: 14.5px; }
.gc-acetal .gc-hero__files {
  font-size: 12px;
  color: var(--muted);
  margin: 10px 0 0;
  letter-spacing: .02em;
}
.gc-acetal .gc-hero__media {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-tint) 100%);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gc-acetal .gc-hero__media img {
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  width: 100%;
  height: auto;
  display: block;
}
.gc-acetal .gc-hero__badge {
  position: absolute;
  bottom: 22px;
  right: 22px;
  background: rgba(15, 39, 71, .94);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 9px 15px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(15, 39, 71, .28);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.gc-acetal .gc-hero__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3ddc97;
}

/* ---------- Buttons ---------- */
.gc-acetal .gc-btn,
.gc-acetal a.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
  font-family: inherit;
}
.gc-acetal .gc-btn:active { transform: translateY(1px); }
.gc-acetal a.gc-btn { text-decoration: none; }
.gc-acetal .gc-btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 82, 204, .28);
}
.gc-acetal .gc-btn--primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 82, 204, .34);
}
.gc-acetal .gc-btn--secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}
.gc-acetal .gc-btn--secondary:hover { background: var(--blue-soft); }

/* ---------- Section heading ---------- */
.gc-acetal .gc-h2 {
  font-size: clamp(25px, 3.1vw, 34px);
  color: var(--navy);
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.01em;
  position: relative;
  padding-bottom: 18px;
}
.gc-acetal .gc-h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}
.gc-acetal .gc-lede {
  font-size: 17px;
  color: var(--muted);
  max-width: 780px;
  margin: 0 0 36px;
  line-height: 1.62;
}
.gc-acetal .gc-lede strong { color: var(--navy); font-weight: 700; }
.gc-acetal .gc-h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
}

/* ---------- Capability strip ---------- */
.gc-acetal .gc-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 30px;
}
.gc-acetal .gc-chip,
.gc-acetal a.gc-chip {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, color .18s ease;
}
.gc-acetal a.gc-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 82, 204, .14);
  transform: translateY(-2px);
}

/* ---------- Capability spec table (key/value) ---------- */
.gc-acetal .gc-cap-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}
.gc-acetal .gc-cap-table tr { border-bottom: 1px solid var(--line); }
.gc-acetal .gc-cap-table tr:last-child { border-bottom: 0; }
.gc-acetal .gc-cap-table th {
  width: 200px;
  text-align: left;
  padding: 14px 18px;
  background: var(--bg-soft);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid var(--line);
  vertical-align: top;
}
.gc-acetal .gc-cap-table td {
  padding: 14px 18px;
  color: var(--ink);
  vertical-align: top;
}
.gc-acetal .gc-cap-table tr:nth-child(even) th,
.gc-acetal .gc-cap-table tr:nth-child(even) td { background: #fafcfe; }

/* ---------- Generic tables ---------- */
.gc-acetal .gc-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 15px;
}
.gc-acetal .gc-table th,
.gc-acetal .gc-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.gc-acetal .gc-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .01em;
}
.gc-acetal .gc-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.gc-acetal .gc-table tbody tr { transition: background .15s ease; }
.gc-acetal .gc-table tbody tr:hover { background: var(--bg-tint); }
.gc-acetal .gc-table tbody tr:last-child td { border-bottom: 0; }
.gc-acetal .gc-table td .gc-note { color: var(--muted); font-size: 13px; }
.gc-acetal .gc-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #007a93;
}
.gc-acetal .gc-tag--good { background: var(--good-soft); color: var(--good); }
.gc-acetal .gc-tag--warn { background: var(--warn-soft); color: var(--warn); }

/* ---------- Column cards ---------- */
.gc-acetal .gc-grid { display: grid; gap: 22px; }
.gc-acetal .gc-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gc-acetal .gc-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gc-acetal .gc-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gc-acetal .gc-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s ease, transform .22s ease, border-color .22s ease;
}
.gc-acetal .gc-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-top-color: var(--blue);
}
.gc-acetal .gc-card h3 { margin-top: 0; font-size: 18px; }
.gc-acetal .gc-card p { margin: 0; color: var(--muted); }
.gc-acetal .gc-card ul { margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.gc-acetal .gc-card ul li { margin: 5px 0; }
.gc-acetal .gc-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 14px;
}
.gc-acetal .gc-card--recommend {
  border-color: var(--good);
  border-top-color: var(--good);
  background: linear-gradient(160deg, #ffffff 0%, #f3fbf6 100%);
}
.gc-acetal .gc-card--recommend:hover { border-top-color: var(--good); }

/* ---------- Media block ---------- */
.gc-acetal .gc-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #fff;
}
.gc-acetal .gc-media img { width: 100%; height: auto; display: block; }

/* ---------- Process flow ---------- */
.gc-acetal .gc-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
}
.gc-acetal .gc-flow__step {
  flex: 1 1 130px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  padding: 16px 16px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gc-acetal .gc-flow__step:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.gc-acetal .gc-flow__step small { display: block; font-weight: 500; color: var(--muted); font-size: 12.5px; margin-top: 5px; }
.gc-acetal .gc-flow__arrow { align-self: center; color: var(--accent); font-weight: 800; font-size: 22px; }

/* ---------- Case studies ---------- */
.gc-acetal .gc-case {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .22s ease, transform .22s ease;
}
.gc-acetal .gc-case:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.gc-acetal .gc-case img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--bg-soft);
  transition: transform .4s ease;
}
.gc-acetal .gc-case:hover img { transform: scale(1.04); }
.gc-acetal .gc-case__body { padding: 22px 24px; }
.gc-acetal .gc-case__body h3 { margin: 0 0 12px; color: var(--navy); font-size: 18px; }
.gc-acetal .gc-case__meta { display: grid; grid-template-columns: 110px 1fr; gap: 4px 12px; font-size: 14px; margin-bottom: 12px; }
.gc-acetal .gc-case__meta dt { color: var(--muted); font-weight: 600; }
.gc-acetal .gc-case__meta dd { margin: 0; color: var(--ink); }
.gc-acetal .gc-case__challenge,
.gc-acetal .gc-case__solution { font-size: 14px; margin: 6px 0; }
.gc-acetal .gc-case__challenge b,
.gc-acetal .gc-case__solution b { color: var(--navy); }

/* ---------- FAQ ---------- */
.gc-acetal .gc-faq { display: grid; gap: 12px; }
.gc-acetal .gc-faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.gc-acetal .gc-faq details[open] { border-color: #cdd8e8; box-shadow: var(--shadow); }
.gc-acetal .gc-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 17px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.gc-acetal .gc-faq summary::-webkit-details-marker { display: none; }
.gc-acetal .gc-faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.gc-acetal .gc-faq details[open] summary::after { content: "\2212"; }
.gc-acetal .gc-faq details p { margin: 0 0 17px; color: var(--muted); line-height: 1.6; }

/* ---------- RFQ info ---------- */
.gc-acetal .gc-rfq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.gc-acetal .gc-rfq-col {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.gc-acetal .gc-rfq-col h3 { margin-top: 0; }
.gc-acetal .gc-rfq-col ul { margin: 0; padding-left: 18px; }
.gc-acetal .gc-rfq-col li { margin: 7px 0; color: var(--muted); }
.gc-acetal .gc-rfq-col li b { color: var(--ink); }

/* ---------- Topic cluster ---------- */
.gc-acetal .gc-cluster { display: flex; flex-wrap: wrap; gap: 10px; }
.gc-acetal .gc-cluster a,
.gc-acetal .gc-cluster .gc-cluster__node {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, color .18s ease;
}
.gc-acetal .gc-cluster a:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }
.gc-acetal .gc-cluster .gc-cluster__hub { background: var(--blue); color: #fff; border-color: var(--blue); }
.gc-acetal .gc-cluster .gc-cluster__hub:hover { background: var(--blue-dark); color: #fff; }

/* ---------- Callout ---------- */
.gc-acetal .gc-callout {
  background: linear-gradient(135deg, var(--navy) 0%, #16335c 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 14px 34px rgba(15, 39, 71, .18);
}
.gc-acetal .gc-callout h3 { color: #fff; margin: 0 0 7px; }
.gc-acetal .gc-callout p { margin: 0; color: #cdd8e8; max-width: 660px; line-height: 1.6; }

/* ---------- CTA banner (manufacturing-services standard) ---------- */
.gc-acetal .gc-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #14325a 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: 0 20px 46px rgba(15, 39, 71, .26);
  position: relative;
  overflow: hidden;
}
.gc-acetal .gc-cta-banner::before {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 163, 196, .22), transparent 70%);
}
.gc-acetal .gc-cta-banner__content { flex: 1 1 520px; position: relative; z-index: 1; }
.gc-acetal .gc-cta-banner__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.2;
}
.gc-acetal .gc-cta-banner__sub {
  font-size: 16px;
  color: #cdd8e8;
  margin: 0 0 14px;
  max-width: 680px;
  line-height: 1.58;
}
.gc-acetal .gc-cta-banner__files {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3ddc97;
}
.gc-acetal .gc-cta-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 22px rgba(0, 82, 204, .4);
}
.gc-acetal .gc-cta-banner__btn:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 82, 204, .46);
}
.gc-acetal .gc-cta-banner__btn::after {
  content: "\2192";
  font-size: 18px;
  line-height: 1;
}

/* ---------- Footer ---------- */
.gc-acetal .gc-footer {
  background: var(--navy);
  color: #cdd8e8;
  padding: 42px 0;
  font-size: 14px;
}
.gc-acetal .gc-footer a { color: #9fc1ff; }
.gc-acetal .gc-footer a:hover { color: #cfe0ff; }
.gc-acetal .gc-footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; }
.gc-acetal .gc-footer strong { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .gc-acetal .gc-hero { padding: 40px 0 44px; }
  .gc-acetal .gc-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .gc-acetal .gc-hero__specs { grid-template-columns: repeat(2, 1fr); max-width: 440px; }
  .gc-acetal .gc-grid--2,
  .gc-acetal .gc-grid--3,
  .gc-acetal .gc-grid--4 { grid-template-columns: 1fr; }
  .gc-acetal .gc-rfq-grid { grid-template-columns: 1fr; }
  .gc-acetal .gc-section { padding: 52px 0; }
  .gc-acetal .gc-cap-table th { width: 140px; }
}
@media (max-width: 560px) {
  .gc-acetal .gc-wrap { padding: 0 18px; }
  .gc-acetal .gc-hero__grid { padding: 0 18px; }
  .gc-acetal .gc-hero__badge { bottom: 14px; right: 14px; padding: 7px 11px; font-size: 10.5px; }
  .gc-acetal .gc-cta-banner { padding: 30px 26px; }
  .gc-acetal .gc-callout { padding: 26px 24px; }
  .gc-acetal .gc-cap-table th { width: 116px; font-size: 13px; padding: 12px 12px; }
  .gc-acetal .gc-cap-table td { padding: 12px 12px; font-size: 14px; }
}
