From c61ed21dd230de002a0cf2ae6070cfdcdda73cb6 Mon Sep 17 00:00:00 2001 From: dsyoon Date: Sat, 3 Jan 2026 17:12:19 +0900 Subject: [PATCH] Refine mobile CTA spacing --- css/ncue.css | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/css/ncue.css b/css/ncue.css index 5def12c..33ab389 100644 --- a/css/ncue.css +++ b/css/ncue.css @@ -343,23 +343,31 @@ section.callaction.callaction-home .row{ padding-bottom: 14px; } section.callaction.callaction-home .big-cta .cta-text{ - padding: 18px 16px 14px; + /* Use a consistent spacing rhythm instead of per-paragraph inline margins */ + padding: 22px 18px 18px; + display: flex; + flex-direction: column; + align-items: center; + gap: 12px; } section.callaction.callaction-home .big-cta .cta-text h2{ - margin: 0 0 10px; + margin: 0; font-size: 28px; line-height: 1.18; letter-spacing: -0.8px; text-align: center; + max-width: 22ch; } section.callaction.callaction-home .big-cta .cta-text p{ - margin: 10px 0 0; + margin: 0 !important; /* override inline styles in index.html */ line-height: 1.7; - text-align: left; + text-align: center; color: rgba(15, 23, 42, 0.86); + max-width: 38ch; } section.callaction.callaction-home .big-cta .cta-text p:last-of-type{ - margin-top: 14px; + margin: 6px 0 0 !important; + max-width: none; display: flex; flex-wrap: wrap; gap: 10px;