/* ============================================================
   SOCIAL-MEDIA-ADVERTISING-PAGE.CSS — Sage Titans
   Render-blocking. Pairs with sage-nav.css,
   sage-base.css + sage-site-components.css (async)
   ============================================================ */

:root {
  --sma-dark:   #020c1b;
  --sma-navy:   #0a1628;
  --sma-accent: #29abe2;
  --sma-lime:   #caef45;
  --sma-fb:     #1877f2;
  --sma-ig:     #e1306c;
  --sma-li:     #0a66c2;
  --sma-yt:     #ff0000;
  --sma-text:   rgba(255,255,255,0.82);
  --sma-muted:  rgba(255,255,255,0.55);
  --sma-r:      16px;
}

/* ══════════════════════════════════════════════════════════════
   BANNER
   ══════════════════════════════════════════════════════════════ */
.inner-p-banner {
  padding: 136px 0 80px;
  min-height: 700px !important;
  margin-top: calc(-1 * 76px);
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 75% 70%, rgba(32,114,234,0.3) 0%, transparent 45%),
    radial-gradient(circle at 20% 30%, rgba(0,200,255,0.15) 0%, transparent 40%),
    linear-gradient(135deg, #020c1b 0%, #0a1f3f 50%, #020c1b 100%);
}
.sm-ban-sec {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  padding-top: 0; flex-wrap: nowrap;
}
.sm-ban-content { flex: 1 1 auto; min-width: 0; max-width: 540px; }
.sm-ban-content h1 {
  font-size: clamp(1.9rem,3.2vw,2.75rem);
  font-weight: 700; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 16px;
}
.sm-ban-content h1 span { color: var(--sma-lime); }
.sm-ban-content > p { font-size: 17px; font-weight: 300; color: var(--sma-text); line-height: 1.75; margin-bottom: 28px; }
.sm-ban-content .raq-cta-btn {
  display: inline-flex; align-items: center;
  background: var(--sma-lime); color: #0a1628;
  font-size: 15px; font-weight: 700; padding: 13px 28px;
  border-radius: 50px; text-decoration: none; border: none;
  transition: background 0.2s, transform 0.15s; white-space: nowrap;
}
.sm-ban-content .raq-cta-btn:hover { background: #b8e020; transform: translateY(-2px); text-decoration: none; color: #0a1628; }
/* Stats badges below CTA */
.sm-ban-content ul { display: flex; gap: 16px; margin-top: 28px; list-style: none; padding: 0; flex-wrap: wrap; }
.sm-ban-content ul li img { display: block; }

/* ══════════════════════════════════════════════════════════════
   SOCIAL ADS PERFORMANCE WIDGET — white card
   Shows multi-platform live campaign data
   ══════════════════════════════════════════════════════════════ */
.sma-widget {
  flex: 1 1 460px; min-width: 300px; max-width: 520px;
  background: #ffffff; border-radius: 20px; padding: 0 0 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 8px 24px rgba(0,0,0,0.25);
  font-family: 'Sora', sans-serif;
}
/* Header */
.sma-w-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; background: #f4f5f7; border-bottom: 1px solid #e8eaed;
}
.sma-w-platform-dots { display: flex; gap: 6px; }
.sma-w-dot { width: 11px; height: 11px; border-radius: 50%; display: block; flex-shrink: 0; }
.sma-w-dot--fb { background: #1877f2; }
.sma-w-dot--ig { background: #e1306c; }
.sma-w-dot--li { background: #0a66c2; }
.sma-w-dot--yt { background: #ff0000; }
.sma-w-title { flex: 1; font-size: 12px; font-weight: 600; color: #1e293b; letter-spacing: 0.03em; }
.sma-w-live {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: #14532d;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.sma-live-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: #16a34a;
  display: block; animation: sma-pulse 1.6s ease-in-out infinite;
}
@keyframes sma-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.35; transform:scale(0.65); }
}
/* Platform tabs */
.sma-w-platforms {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid #f1f5f9;
}
.sma-w-platform {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 10px 6px; cursor: default;
  border-right: 1px solid #f1f5f9; position: relative;
}
.sma-w-platform:last-child { border-right: none; }
.sma-w-platform--active::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 2px; border-radius: 2px;
}
.sma-w-platform--fb.sma-w-platform--active::after { background: #1877f2; }
.sma-w-platform--ig.sma-w-platform--active::after { background: #e1306c; }
.sma-w-platform--li.sma-w-platform--active::after { background: #0a66c2; }
.sma-w-platform--yt.sma-w-platform--active::after { background: #ff0000; }
.sma-w-platform-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.sma-w-platform--fb .sma-w-platform-icon { background: #e8f0fe; color: #1877f2; font-weight: 800; font-size: 13px; }
.sma-w-platform--ig .sma-w-platform-icon { background: #fce4ec; color: #e1306c; font-weight: 800; font-size: 11px; }
.sma-w-platform--li .sma-w-platform-icon { background: #e1eef7; color: #0a66c2; font-weight: 800; font-size: 11px; }
.sma-w-platform--yt .sma-w-platform-icon { background: #ffebee; color: #ff0000; font-weight: 800; font-size: 11px; }
.sma-w-platform-name { font-size: 9px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: 0.06em; }
/* Headline metric */
.sma-w-headline {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 10px; border-bottom: 1px solid #f1f5f9;
}
.sma-w-headline-block { display: flex; flex-direction: column; gap: 2px; }
.sma-w-headline-val { font-size: 26px; font-weight: 800; color: #0a1628; line-height: 1; }
.sma-w-headline-lbl { font-size: 9px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.07em; }
.sma-w-headline-badge {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700; color: #14532d;
  background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: 50px; padding: 4px 10px;
}
/* 4 mini metrics */
.sma-w-metrics {
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 10px 18px 12px; gap: 0;
  border-bottom: 1px solid #f1f5f9;
}
.sma-w-metric { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 4px 2px; }
.sma-w-metric-val { font-size: 14px; font-weight: 800; color: #0a1628; line-height: 1; }
.sma-w-metric-val--blue { color: #0369a1; }
.sma-w-metric-val--green { color: #14532d; }
.sma-w-metric-val--red { color: #991b1b; }
.sma-w-metric-lbl { font-size: 8px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }
/* Platform performance bars */
.sma-w-section-label { font-size: 9.5px; font-weight: 800; color: #475569; letter-spacing: 0.13em; text-transform: uppercase; padding: 10px 18px 7px; }
.sma-w-platform-bars { padding: 0 18px; display: flex; flex-direction: column; gap: 8px; }
.sma-w-pbar-row { display: flex; align-items: center; gap: 10px; }
.sma-w-pbar-name { font-size: 11px; font-weight: 600; color: #374151; width: 76px; flex-shrink: 0; display: flex; align-items: center; gap: 5px; }
.sma-w-pbar-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sma-w-pbar-dot--fb { background: #1877f2; }
.sma-w-pbar-dot--ig { background: #e1306c; }
.sma-w-pbar-dot--li { background: #0a66c2; }
.sma-w-pbar-dot--yt { background: #ff0000; }
.sma-w-pbar-track { flex: 1; height: 6px; background: #e8edf3; border-radius: 99px; overflow: hidden; }
.sma-w-pbar-fill { height: 100%; border-radius: 99px; }
.sma-w-pbar-fill--fb { background: linear-gradient(90deg, #1877f2, #4fa3f7); }
.sma-w-pbar-fill--ig { background: linear-gradient(90deg, #e1306c, #f77737); }
.sma-w-pbar-fill--li { background: linear-gradient(90deg, #0a66c2, #3b9ede); }
.sma-w-pbar-fill--yt { background: linear-gradient(90deg, #ff0000, #ff6b35); }
.sma-w-pbar-score { font-size: 11px; font-weight: 700; color: #374151; width: 34px; text-align: right; flex-shrink: 0; }
/* Bottom stats */
.sma-w-footer {
  display: flex; justify-content: space-between;
  margin: 12px 18px 0; padding: 12px 16px;
  background: #f8fafc; border-radius: 12px; border: 1px solid #e2e8f0; gap: 8px;
}
.sma-w-stat { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.sma-w-stat-val { font-size: 14px; font-weight: 800; color: #0a1628; line-height: 1; }
.sma-w-stat-val--lime { color: #3f6212; }
.sma-w-stat-lbl { font-size: 8.5px; font-weight: 700; color: #475569; text-transform: uppercase; letter-spacing: 0.05em; text-align: center; }

/* ── BANNER RESPONSIVE ────────────────────────────────── */
@media (max-width: 1100px) { .sm-ban-sec { gap: 28px; } .sma-widget { min-width: 260px; } }
@media (max-width: 900px) {
  .inner-p-banner { padding: 110px 0 60px; min-height: auto !important; }
  .inner-p-banner .sm-ban-sec { flex-direction: column !important; align-items: stretch !important; gap: 28px !important; }
  .inner-p-banner .sm-ban-content { flex: 0 0 auto !important; max-width: 100% !important; width: 100% !important; }
  .sma-widget { max-width: 100% !important; width: 100% !important; flex: 0 0 auto !important; display: block !important; min-width: 0 !important; }
}
@media (max-width: 380px) {
  .inner-p-banner { padding: 86px 0 44px; }
  .sma-widget { display: none !important; }
  .inner-p-banner .sm-ban-content { width: 100% !important; max-width: 100% !important; }
}

/* ══════════════════════════════════════════════════════════════
   PROOF STRIP
   ══════════════════════════════════════════════════════════════ */
.proof-strip { border-top: 1px solid #eaeaea; padding: 32px 0; }
.proof-container { max-width: 1300px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; }
.proof-item { display: flex; align-items: flex-start; gap: 14px; }
.proof-icon { width: 36px; height: 36px; border-radius: 8px; background: #eef6fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #29abe2; }
.proof-item strong { display: block; font-size: 14px; font-weight: 700; color: #0a1628; margin-bottom: 4px; }
.proof-item p { font-size: 13px; color: #516070; line-height: 1.55; margin: 0; }
@media (max-width: 1024px) { .proof-container { grid-template-columns: repeat(2,1fr); gap: 24px; } }
@media (max-width: 600px)  { .proof-container { grid-template-columns: 1fr; } }

/* ══════════════════════════════════════════════════════════════
   PAID MEDIA — redesigned platform cards
   ══════════════════════════════════════════════════════════════ */
.paid-media-sec { background: #f8fafc; padding: 80px 0; }
.paid-media-head { text-align: center; margin-bottom: 52px; }
.paid-media-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 14px; }
.paid-media-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 65%; margin: 0 auto; }
.p-media-card-sec { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.p-media-card-sec + .p-media-card-sec { margin-top: 20px; }
.p-media-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid #e4ecf2;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.p-media-card:hover { box-shadow: 0 16px 48px rgba(41,171,226,0.12); transform: translateY(-5px); border-color: #29abe2; }
.p-media-card-img-wrap { width: 100%; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.p-media-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; display: block; }
.p-media-card:hover .p-media-card-img-wrap img { transform: scale(1.05); }
.p-media-card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.p-media-card-platform {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 50px; margin-bottom: 10px; align-self: flex-start;
}
.p-media-card-platform--ig { background: #fce4ec; color: #b5174f; }
.p-media-card-platform--fb { background: #e8f0fe; color: #1257b8; }
.p-media-card-platform--li { background: #e1eef7; color: #07508e; }
.p-media-card-platform--yt { background: #ffebee; color: #b71c1c; }
.p-media-card-platform--lead { background: #f0fdf4; color: #14532d; }
.p-media-card-platform--ecom { background: #fef3c7; color: #92400e; }
.p-media-card-platform--app { background: #f5f3ff; color: #5b21b6; }
.p-media-card-platform--vid { background: #fff7ed; color: #9a3412; }
.p-media-card-body h3 { font-size: 15px; font-weight: 700; color: #0a1628; margin: 0 0 8px; line-height: 1.3; }
.p-media-card-body p { font-size: 13px; font-weight: 300; color: #516070; line-height: 1.65; margin: 0; flex: 1; }
.paid-m-cta-btn { text-align: center; margin-top: 44px; }

/* ══════════════════════════════════════════════════════════════
   CLIENTS SECTION
   ══════════════════════════════════════════════════════════════ */
.clients-section { padding: 64px 0; background: #fff; }
.clients-inner { display: flex; align-items: flex-start; gap: 56px; max-width: 1350px; margin: 0 auto; padding: 0 15px; }
.clients-content { max-width: 380px; flex-shrink: 0; }
.clients-content h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; color: #0a1628; margin-bottom: 12px; line-height: 1.3; }
.clients-subtext { font-size: 14px; color: #516070; line-height: 1.7; margin-bottom: 28px; font-weight: 300; }
.clients-metrics { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 28px; }
.clients-metrics div { background: #f8fafc; border: 1px solid #e4ecf2; border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 3px; }
.clients-metrics strong { font-size: 20px; font-weight: 800; color: #29abe2; }
.clients-metrics span { font-size: 12px; color: #516070; }
.clients-cta { display: inline-flex; align-items: center; background: var(--sma-lime); color: #0a1628; font-size: 14px; font-weight: 700; padding: 11px 24px; border-radius: 50px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.clients-cta:hover { background: #b8e020; transform: translateY(-2px); text-decoration: none; color: #0a1628; }
.clients-grid { flex: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.client-card { background: #fff; border: 1px solid #e4ecf2; border-radius: 12px; display: flex; align-items: center; justify-content: center; padding: 18px 14px; transition: box-shadow 0.2s, border-color 0.2s; }
.client-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); border-color: #29abe2; }
.client-card img { max-width: 100%; height: 44px; object-fit: contain; filter: none; opacity: 1; transition: transform 0.2s; }
.client-card:hover img { transform: scale(1.05); }
@media (max-width: 1024px) { .clients-inner { flex-wrap: wrap; } .clients-content { max-width: 100%; } .clients-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 600px)  { .clients-grid { grid-template-columns: repeat(2,1fr); } }

/* ══════════════════════════════════════════════════════════════
   HOW WE HELP YOU SCALE — redesigned 2×2 cards (replaces image)
   ══════════════════════════════════════════════════════════════ */
.y-scale-sec { padding: 80px 0 0; }
.y-scale-head { text-align: center; margin-bottom: 52px; }
.y-scale-head h2 { font-size: clamp(1.6rem,2.8vw,2.2rem); font-weight: 700; color: #0a1628; margin-bottom: 14px; }
.y-scale-head p { font-size: 16px; font-weight: 300; color: #516070; line-height: 1.75; width: 65%; margin: 0 auto; }
.sma-scale-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.sma-scale-card {
  background: #fff; border: 1px solid #e4ecf2; border-radius: 20px;
  padding: 36px 32px; display: flex; align-items: flex-start; gap: 22px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.sma-scale-card:hover { box-shadow: 0 20px 56px rgba(41,171,226,0.12); transform: translateY(-5px); border-color: #29abe2; }
.sma-scale-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.25s;
}
.sma-scale-card:nth-child(1)::before { background: linear-gradient(90deg, #1877f2, #e1306c); }
.sma-scale-card:nth-child(2)::before { background: linear-gradient(90deg, #0a66c2, #29abe2); }
.sma-scale-card:nth-child(3)::before { background: linear-gradient(90deg, #caef45, #34a853); }
.sma-scale-card:nth-child(4)::before { background: linear-gradient(90deg, #ff0000, #fbbc04); }
.sma-scale-card:hover::before { opacity: 1; }
.sma-scale-icon {
  width: 64px; height: 64px; border-radius: 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s;
}
.sma-scale-card:hover .sma-scale-icon { transform: scale(1.08); }
.sma-scale-card:nth-child(1) .sma-scale-icon { background: #eef6fd; }
.sma-scale-card:nth-child(2) .sma-scale-icon { background: #e8f5e9; }
.sma-scale-card:nth-child(3) .sma-scale-icon { background: #f9fbe7; }
.sma-scale-card:nth-child(4) .sma-scale-icon { background: #fce4ec; }
.sma-scale-icon svg { width: 34px; height: 34px; }
.sma-scale-body { flex: 1; min-width: 0; }
.sma-scale-body h3 { font-size: 18px; font-weight: 700; color: #0a1628; margin: 0 0 10px; line-height: 1.3; }
.sma-scale-body p { font-size: 14px; font-weight: 300; color: #516070; line-height: 1.7; margin: 0; }
.y-scale-cta { text-align: center; margin: 48px 0 80px; }

/* ══════════════════════════════════════════════════════════════
   TRUST / BUDGET SECTION
   ══════════════════════════════════════════════════════════════ */
.m-budget-sec { background: #f8fafc; padding: 80px 0; }
.expert-pic-sec { display: flex; align-items: center; gap: 64px; }
.expert-pic-sec > img { max-width: 420px; border-radius: var(--sma-r); flex-shrink: 0; box-shadow: 0 20px 60px rgba(0,0,0,0.1); object-fit: cover; }
.m-budget-content { flex: 1; min-width: 0; }
.m-budget-content h2 { font-size: clamp(1.5rem,2.6vw,2rem); font-weight: 700; color: #0a1628; margin-bottom: 16px; line-height: 1.3; }
.m-budget-content p { font-size: 15px; font-weight: 300; color: #516070; line-height: 1.75; margin-bottom: 24px; }
.m-budget-content ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.m-budget-content ul li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: #0a1628;
  background: #fff; border: 1px solid #e4ecf2; border-radius: 50px;
  padding: 12px 20px;
}
.m-budget-content ul li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #29abe2; flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   WHY SAGE TITANS
   ══════════════════════════════════════════════════════════════ */
.grow-plan-sec {
  display: flex; align-items: center; gap: 64px;
  background: linear-gradient(135deg, #0d1b3e 0%, #1a2f6e 50%, #0d1b3e 100%);
  border-radius: 24px; padding: 56px 64px; margin-bottom: 80px;
}
.grow-plan-sec > img { max-width: 380px; border-radius: var(--sma-r); flex-shrink: 0; }
.grow-plan-sec .m-budget-content h2 { color: #fff; }
.grow-plan-sec .m-budget-content p { color: rgba(255,255,255,0.75); }
.grow-plan-sec .m-budget-content ul li { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════════ */
.faq-wrapper { padding: 0 0 80px; }
.m-shot-head { text-align: center; padding: 60px 0 28px; }
.m-shot-head h2 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 700; color: #0a1628; margin: 0; }
.faq-cta-bot { text-align: center; margin-top: 36px; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .p-media-card-sec { grid-template-columns: repeat(2,1fr); }
  .sma-scale-grid { grid-template-columns: repeat(2,1fr); }
  .clients-inner { flex-wrap: wrap; } .clients-content { max-width: 100%; } .clients-grid { grid-template-columns: repeat(3,1fr); }
  .paid-media-head p, .y-scale-head p { width: 100%; }
}
@media (max-width: 900px) {
  /* Trust/budget section — stack image above text */
  .expert-pic-sec { flex-direction: column; gap: 32px; }
  .expert-pic-sec > img { max-width: 100%; width: 100%; flex-shrink: 1; border-radius: 12px; }
  .m-budget-content { width: 100%; }
  /* Why Sage Titans dark card — stack image above text */
  .grow-plan-sec { flex-direction: column; gap: 32px; padding: 40px 28px; }
  .grow-plan-sec > img { max-width: 100%; width: 100%; border-radius: 12px; }
}
@media (max-width: 768px) {
  .p-media-card-sec { grid-template-columns: 1fr; }
  .sma-scale-grid { grid-template-columns: 1fr; }
  .paid-media-sec { padding: 48px 0; }
  .m-budget-sec { padding: 48px 0; }
  .grow-plan-sec { padding: 32px 20px; margin-bottom: 48px; }
  .y-scale-sec { padding: 48px 0 0; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER TOUCH TARGET FIX — Google PageSpeed mobile requirement
   Minimum 48×48px touch area for Privacy Policy / Code-of-Conduct
   links in .copyright-sec. Adds vertical padding without changing
   the visual appearance on desktop.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .copyright-sec ul { display: flex; flex-wrap: wrap; gap: 4px; }
  .copyright-sec ul li { display: block; }
  .copyright-sec ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 16px !important; /* overrides sage-site-components 0 20px 0 0 */
    font-size: 14px;
  }
}
