/* =====================================================================
   odata.ng  --  theme.css
   OPay-inspired green palette  +  light/dark via [data-theme] on <html>
   ===================================================================== */

:root {
  /* Brand */
  --primary:        #00B074;   /* OPay green */
  --primary-hot:    #009963;
  --primary-soft:   #E6F7F0;
  --primary-ink:    #ffffff;   /* text on primary bg */
  --accent:        #1A1A1A;

  /* Surfaces */
  --bg:            #F7F9F8;
  --surface:       #ffffff;
  --surface-2:     #F1F4F2;
  --surface-3:     #E8EDEA;

  /* Text */
  --ink:           #0F1B14;
  --muted:         #5B6B62;
  --faint:         #8A968F;

  /* Lines */
  --rule:          #E2E8E4;
  --rule-strong:   #C9D2CD;

  /* Status */
  --ok:            #00B074;
  --ok-soft:       #E6F7F0;
  --warn:          #F5A623;
  --warn-soft:     #FFF3DC;
  --err:           #E5484D;
  --err-soft:      #FDECEC;
  --info:          #0EA5E9;
  --info-soft:     #E0F4FE;

  /* Shape */
  --radius-sm:     8px;
  --radius:        14px;
  --radius-lg:     20px;
  --shadow-sm:     0 1px 2px rgba(13,30,21,.06), 0 1px 1px rgba(13,30,21,.04);
  --shadow:        0 8px 24px rgba(13,30,21,.08);
  --shadow-lg:     0 24px 60px rgba(13,30,21,.14);

  /* Misc */
  --container:     1180px;
  --header-h:      66px;
  --sidebar-w:     250px;
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

[data-theme="dark"] {
  --bg:            #0B1410;
  --surface:       #111B16;
  --surface-2:     #16231C;
  --surface-3:     #1C2C24;

  --ink:           #E8EFEB;
  --muted:         #9AAEA3;
  --faint:         #6F8278;

  --rule:          #1F2D26;
  --rule-strong:   #2A3A32;

  --primary-soft:  #112A1F;
  --ok-soft:       #112A1F;
  --warn-soft:     #2A2114;
  --err-soft:      #2A1414;
  --info-soft:     #102330;

  --shadow-sm:     0 1px 2px rgba(0,0,0,.4);
  --shadow:        0 8px 24px rgba(0,0,0,.5);
  --shadow-lg:     0 24px 60px rgba(0,0,0,.6);
}

/* --------------------------------------------------------------------- */
/* Reset                                                                  */
/* --------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-hot); }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--rule); margin: 20px 0; }
.kbd, code, pre {
  font-family: var(--font-mono);
  font-size: 13px;
}

/* --------------------------------------------------------------------- */
/* Layout helpers                                                         */
/* --------------------------------------------------------------------- */
.wrap, .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.row { display: flex; gap: 16px; align-items: center; }
.row.between { justify-content: space-between; }
.row.wrap { flex-wrap: wrap; }
.grid { display: grid; gap: 16px; }
.hide-sm { } /* set in media */
.spacer { flex: 1; }
.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}
.mb-0{margin-bottom:0}.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}

/* --------------------------------------------------------------------- */
/* Header (public)                                                        */
/* --------------------------------------------------------------------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--rule);
}
header.site .bar {
  height: var(--header-h);
  display: flex; align-items: center; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.2px;
  color: var(--ink);
}
.brand .dot {
  width: 26px; height: 26px; border-radius: 7px;
  background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-ink); font-weight: 800; font-size: 14px;
}
.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px;
  color: var(--ink); font-weight: 500;
}
.nav-links a:hover { background: var(--surface-2); }
.nav-links a.active { background: var(--primary-soft); color: var(--primary-hot); }

/* --------------------------------------------------------------------- */
/* Buttons                                                                */
/* --------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 42px; padding: 0 16px;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--rule); border-radius: 10px;
  font-weight: 600; font-size: 14px;
  transition: transform .05s ease, background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--surface-3); }
.btn:active { transform: translateY(1px); }
.btn.primary {
  background: var(--primary); border-color: var(--primary); color: var(--primary-ink);
}
.btn.primary:hover { background: var(--primary-hot); border-color: var(--primary-hot); }
.btn.ghost { background: transparent; }
.btn.ghost:hover { background: var(--surface-2); }
.btn.sm { height: 34px; padding: 0 12px; font-size: 13px; }
.btn.lg { height: 50px; padding: 0 22px; font-size: 15px; border-radius: 12px; }
.btn.block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* --------------------------------------------------------------------- */
/* Cards / surfaces                                                       */
/* --------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}
.card.flush { padding: 0; }
.card-title { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.card-sub { color: var(--muted); font-size: 13px; margin: 0 0 16px; }
.card-foot {
  padding: 14px 20px; border-top: 1px solid var(--rule);
  display: flex; justify-content: flex-end; gap: 8px;
}

/* --------------------------------------------------------------------- */
/* Forms                                                                  */
/* --------------------------------------------------------------------- */
.field { display: block; margin-bottom: 14px; }
.field > label, .label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 6px;
}
.input, .select, .textarea {
  display: block; width: 100%;
  height: 44px; padding: 0 14px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--rule-strong); border-radius: 10px;
  font: inherit; font-size: 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.textarea { height: auto; padding: 12px 14px; min-height: 100px; }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.field .hint { color: var(--muted); font-size: 12px; margin-top: 4px; }
.field .err  { color: var(--err);   font-size: 12px; margin-top: 4px; display:none; }
.field.has-err .input,
.field.has-err .select { border-color: var(--err); }
.field.has-err .err { display: block; }
.input-affix {
  display: flex; align-items: stretch;
  border: 1px solid var(--rule-strong); border-radius: 10px;
  overflow: hidden; background: var(--surface);
}
.input-affix .affix {
  display: inline-flex; align-items: center;
  padding: 0 12px; background: var(--surface-2);
  color: var(--muted); font-weight: 600; font-size: 13px;
  border-right: 1px solid var(--rule);
}
.input-affix .input { border: 0; border-radius: 0; height: 42px; }

.pw-wrap { position: relative; }
.pw-wrap .input { padding-right: 44px; }
.pw-toggle {
  position: absolute; top: 0; right: 0;
  height: 44px; width: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; padding: 0;
  color: var(--muted); cursor: pointer; font-size: 14px;
  border-radius: 8px;
}
.pw-toggle:hover { color: var(--ink); }
.pw-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: -2px; }

/* --------------------------------------------------------------------- */
/* Alerts                                                                 */
/* --------------------------------------------------------------------- */
.alert {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 14px; border-radius: 10px;
  font-size: 14px; line-height: 1.4;
  border: 1px solid transparent;
}
.alert.ok   { background: var(--ok-soft);   color: var(--ok);   border-color: color-mix(in srgb, var(--ok)   30%, transparent); }
.alert.err  { background: var(--err-soft);  color: var(--err);  border-color: color-mix(in srgb, var(--err)  30%, transparent); }
.alert.warn { background: var(--warn-soft); color: #8a5b00;     border-color: color-mix(in srgb, var(--warn) 30%, transparent); }
.alert.info { background: var(--info-soft); color: var(--info); border-color: color-mix(in srgb, var(--info) 30%, transparent); }

/* --------------------------------------------------------------------- */
/* Badges / chips                                                         */
/* --------------------------------------------------------------------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  height: 24px; padding: 0 10px;
  background: var(--surface-2); color: var(--muted);
  border-radius: 999px; font-size: 12px; font-weight: 600;
  white-space: nowrap; flex-shrink: 0;
}
.chip.ok   { background: var(--ok-soft);   color: var(--ok); }
.chip.err  { background: var(--err-soft);  color: var(--err); }
.chip.warn { background: var(--warn-soft); color: #8a5b00; }
.chip.info { background: var(--info-soft); color: var(--info); }
.chip.dot::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

.method {
  display: inline-block; padding: 3px 8px; border-radius: 6px;
  font: 700 11px/1.4 var(--font-mono); letter-spacing: .04em;
  color: #fff;
}
.method.GET    { background: #0EA5E9; }
.method.POST   { background: #00B074; }
.method.PUT    { background: #F5A623; }
.method.PATCH  { background: #8B5CF6; }
.method.DELETE { background: #E5484D; }

/* --------------------------------------------------------------------- */
/* Tables                                                                 */
/* --------------------------------------------------------------------- */
.table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 14px;
}
.table th, .table td {
  padding: 12px 14px; text-align: left;
  border-bottom: 1px solid var(--rule);
}
.table th {
  font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em;
  background: var(--surface-2);
}
.table tbody tr:hover { background: color-mix(in srgb, var(--primary-soft) 60%, transparent); }
.table tbody tr:last-child td { border-bottom: 0; }
.table.compact th, .table.compact td { padding: 9px 12px; font-size: 13px; }

/* --------------------------------------------------------------------- */
/* Code blocks                                                            */
/* --------------------------------------------------------------------- */
pre.kbd, pre.code {
  background: var(--surface-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 14px 16px;
  overflow-x: auto;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
[data-theme="dark"] pre.kbd, [data-theme="dark"] pre.code {
  background: #0a1410;
}
.code-block { position: relative; }
.code-block .copy-btn {
  position: absolute; top: 8px; right: 8px;
  border: 1px solid var(--rule); background: var(--surface);
  color: var(--muted); border-radius: 8px;
  padding: 4px 10px; font-size: 12px; cursor: pointer;
}
.code-block .copy-btn:hover { color: var(--ink); }

/* --------------------------------------------------------------------- */
/* Dashboard shell                                                        */
/* --------------------------------------------------------------------- */
.shell {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
}
aside.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--rule);
  padding: 18px 14px;
  position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column;
}
.sidebar .brand { padding: 4px 10px 18px; }
.sidebar .nav { display: flex; flex-direction: column; gap: 2px; }
.sidebar .nav-section {
  font-size: 11px; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: .08em;
  padding: 14px 10px 6px;
}
.sidebar .nav a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  color: var(--muted); font-weight: 500; font-size: 14px;
}
.sidebar .nav a i { width: 18px; text-align: center; }
.sidebar .nav a:hover { background: var(--surface-2); color: var(--ink); }
.sidebar .nav a.active { background: var(--primary-soft); color: var(--primary-hot); }
.sidebar .userbox {
  margin-top: auto; padding: 12px; border: 1px solid var(--rule);
  border-radius: 12px; display: flex; align-items: center; gap: 10px;
}
.sidebar .userbox .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: var(--primary-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
}

main.main { padding: 24px clamp(16px, 3vw, 32px); min-width: 0; }
.page-head { margin-bottom: 18px; }
.page-head h1 { margin: 0 0 4px; font-size: 22px; font-weight: 700; }
.page-head .lead { color: var(--muted); margin: 0; font-size: 14px; }

/* mobile header (shown when sidebar is hidden) */
.mobile-bar {
  display: none;
  align-items: center; gap: 10px;
  padding: 10px 16px; margin: -24px -16px 16px;
  background: var(--surface); border-bottom: 1px solid var(--rule);
}

/* --------------------------------------------------------------------- */
/* Theme toggle                                                           */
/* --------------------------------------------------------------------- */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--rule);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.theme-toggle:hover { background: var(--surface-3); }
.theme-toggle .icon-dark  { display: inline-block; }
.theme-toggle .icon-light { display: none; }
[data-theme="dark"] .theme-toggle .icon-dark  { display: none; }
[data-theme="dark"] .theme-toggle .icon-light { display: inline-block; }

/* --------------------------------------------------------------------- */
/* Hero / landing                                                         */
/* --------------------------------------------------------------------- */
.hero {
  padding: 60px 0 70px;
  background:
    radial-gradient(1200px 400px at 80% -100px, var(--primary-soft) 0, transparent 60%),
    var(--bg);
}
.hero h1 {
  font-size: clamp(30px, 5vw, 56px); line-height: 1.08;
  letter-spacing: -.6px; margin: 0 0 16px;
  overflow-wrap: break-word;
}
.hero h1 .accent { color: var(--primary); }
.hero .lead { font-size: 17px; color: var(--muted); max-width: 540px; }
.hero .cta { display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap; }
.hero-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}
.hero-card {
  background: var(--surface); border: 1px solid var(--rule);
  border-radius: 18px; box-shadow: var(--shadow);
  padding: 20px;
  min-width: 0;
}
.hero-card .head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 12px;
  min-width: 0;
}
.hero-card .head > span:not(.chip):not(.dot):not(.spacer) {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
}
.hero-card .head .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }

.final-cta-title { margin: 0 0 8px; font-size: 28px; letter-spacing: -.4px; }
.final-cta-sub   { margin: 0 0 20px; opacity: .9; }
.final-cta-row   { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

.stripe {
  display: grid; grid-template-columns: repeat(3,1fr);
  background: var(--surface); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
}
.stripe .item { padding: 22px 20px; text-align: center; border-right: 1px solid var(--rule); }
.stripe .item:last-child { border-right: 0; }
.stripe .num { font-size: 24px; font-weight: 800; }
.stripe .lbl { color: var(--muted); font-size: 13px; }

/* --------------------------------------------------------------------- */
/* Footer                                                                 */
/* --------------------------------------------------------------------- */
footer.site {
  background: var(--surface);
  border-top: 1px solid var(--rule);
  padding: 40px 0 24px;
  margin-top: 60px;
}
footer.site .cols {
  display: grid; gap: 32px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
footer.site h5 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; }
footer.site li a { color: var(--ink); font-size: 14px; }
footer.site li a:hover { color: var(--primary); }
footer.site .legal {
  margin-top: 32px; padding-top: 18px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  color: var(--muted); font-size: 13px; gap: 12px;
}

/* --------------------------------------------------------------------- */
/* Network plan card (pricing page + landing)                             */
/* --------------------------------------------------------------------- */
.network-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(13,30,21,.04);
  transition: box-shadow .18s ease, transform .18s ease;
}
.network-card:hover {
  box-shadow: 0 6px 18px rgba(13,30,21,.07);
}
.network-card .head {
  padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-weight: 700; font-size: 15px; letter-spacing: -.1px;
}
.network-card .head::before {
  content: ''; width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--brand, var(--rule-strong));
  flex-shrink: 0;
}
.network-card .head .chip {
  margin-left: auto;
  background: var(--surface-2);
  color: var(--muted);
  font-weight: 600;
}
.network-card .head.mtn    { --brand: #FFCC00; }
.network-card .head.glo    { --brand: #00B04F; }
.network-card .head.airtel { --brand: #ED1C24; }
.network-card .head.nm     { --brand: #1A6E40; }
.network-card table { width: 100%; border-collapse: collapse; font-size: 14px; }
.network-card th, .network-card td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--rule); }
.network-card th { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.network-card tr:last-child td { border-bottom: 0; }
.network-card .unavailable { color: var(--faint); text-decoration: line-through; }

/* --------------------------------------------------------------------- */
/* Endpoint blocks (developer docs)                                       */
/* --------------------------------------------------------------------- */
.endpoint {
  border: 1px solid var(--rule); border-radius: var(--radius);
  background: var(--surface); margin-bottom: 16px; overflow: hidden;
}
.endpoint .endpoint-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 12px 16px; border-bottom: 1px solid var(--rule);
  background: var(--surface-2);
}
.endpoint .endpoint-path { font-family: var(--font-mono); font-weight: 600; }
.endpoint .endpoint-body { padding: 16px; }
.endpoint .endpoint-body p { margin: 0 0 10px; color: var(--muted); }
.endpoint .endpoint-body pre.kbd { margin: 8px 0 12px; }

/* --------------------------------------------------------------------- */
/* TOC sidebar for docs pages                                             */
/* --------------------------------------------------------------------- */
.docs-layout {
  display: grid; gap: 32px;
  grid-template-columns: 220px 1fr;
}
nav.toc {
  position: sticky; top: calc(var(--header-h) + 16px);
  align-self: start; max-height: calc(100vh - var(--header-h) - 32px);
  overflow-y: auto;
}
nav.toc h4 {
  font-size: 11px; font-weight: 700; color: var(--faint);
  text-transform: uppercase; letter-spacing: .08em;
  margin: 16px 0 6px;
}
nav.toc a {
  display: block; padding: 6px 10px;
  color: var(--muted); font-size: 13px; border-radius: 7px;
}
nav.toc a:hover { background: var(--surface-2); color: var(--ink); }
nav.toc a.active { background: var(--primary-soft); color: var(--primary-hot); }
section.doc { padding-bottom: 32px; border-bottom: 1px dashed var(--rule); margin-bottom: 32px; }
section.doc:last-child { border-bottom: 0; }
section.doc h2 {
  font-size: 22px; margin: 0 0 8px;
}
section.doc h3 { font-size: 16px; margin: 24px 0 8px; }

/* --------------------------------------------------------------------- */
/* Responsive                                                             */
/* --------------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
  .docs-layout { grid-template-columns: 1fr; }
  nav.toc { position: static; max-height: none; }
}
@media (max-width: 820px) {
  .shell { grid-template-columns: 1fr; }
  aside.sidebar {
    position: fixed; top: 0; left: 0; width: 280px;
    transform: translateX(-100%); transition: transform .22s ease;
    z-index: 60; box-shadow: var(--shadow-lg);
  }
  body.drawer-open aside.sidebar { transform: translateX(0); }
  body.drawer-open::after {
    content: ''; position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 55;
  }
  .mobile-bar { display: flex; }
  .nav-links { display: none; }
  .hide-sm { display: none !important; }
  .stripe { grid-template-columns: 1fr; }
  .stripe .item { border-right: 0; border-bottom: 1px solid var(--rule); }
}
@media (max-width: 640px) {
  .wrap, .container { padding: 0 16px; }

  .hero { padding: 40px 0 44px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); letter-spacing: -.3px; }
  .hero .lead { font-size: 15px; }
  .hero .cta { gap: 8px; margin-top: 20px; }
  .hero .cta .btn { flex: 1 1 100%; }

  .hero-card { padding: 14px; border-radius: 14px; }
  .hero-card .head { font-size: 11px; gap: 6px; }
  .hero-card pre.kbd { font-size: 12px; padding: 12px; line-height: 1.5; }

  .stripe .item { padding: 18px 16px; }
  .stripe .num { font-size: 22px; }

  .network-card { border-radius: 14px; }
  .network-card .head { padding: 14px 16px; }
  .network-card th, .network-card td { padding: 10px 14px; }

  .final-cta-title { font-size: 22px; }
  .final-cta-sub { font-size: 14px; }
  .final-cta-row { flex-direction: column; }
  .final-cta-row .btn { width: 100%; }

  footer.site .cols { grid-template-columns: 1fr; }
}
