/* ============================================================
   UtilityGet — Global Stylesheet
   Brand color: Sky Blue (#0ea5e9)
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg:            #ffffff;
  --bg-secondary:  #f8fafc;
  --bg-tertiary:   #f1f5f9;
  --text:          #0f172a;
  --text-secondary:#475569;
  --text-muted:    #94a3b8;
  --border:        #e2e8f0;
  --border-hover:  #cbd5e1;
  --accent:        #0ea5e9;
  --accent-hover:  #0284c7;
  --accent-light:  #e0f2fe;
  --accent-dark:   #0369a1;
  --success:       #22c55e;
  --warning:       #f59e0b;
  --danger:        #ef4444;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:     0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg:     0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);
  --shadow-hover:  0 20px 25px rgba(0,0,0,0.10), 0 8px 10px rgba(0,0,0,0.05);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --font:          -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono:     ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  --max-w:         1280px;
  --header-h:      64px;
  --transition:    0.2s ease;
}

[data-theme="dark"] {
  --bg:            #0f172a;
  --bg-secondary:  #1e293b;
  --bg-tertiary:   #334155;
  --text:          #f1f5f9;
  --text-secondary:#94a3b8;
  --text-muted:    #64748b;
  --border:        #1e293b;
  --border-hover:  #334155;
  --accent:        #38bdf8;
  --accent-hover:  #7dd3fc;
  --accent-light:  #0c4a6e;
  --accent-dark:   #bae6fd;
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.4);
  --shadow-md:     0 4px 6px rgba(0,0,0,0.4);
  --shadow-lg:     0 10px 15px rgba(0,0,0,0.4);
  --shadow-hover:  0 20px 25px rgba(0,0,0,0.5);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: background var(--transition), color var(--transition);
}

img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font); }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  color: var(--text);
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { color: var(--text-secondary); }

main { flex: 1; }

/* ---------- Layout Utilities ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--transition), border-color var(--transition);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo:hover { color: var(--text); }

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}

.logo-text span { color: var(--accent); }

/* Nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
}

@media (min-width: 768px) { .site-nav { display: flex; } }

.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-link:hover, .nav-link.active {
  background: var(--bg-secondary);
  color: var(--text);
}

/* Header actions */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Theme toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.theme-toggle:hover {
  background: var(--bg-secondary);
  color: var(--text);
  border-color: var(--border-hover);
}

/* Hamburger */
.hamburger {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .hamburger { display: none; } }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 99;
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  transition: background var(--transition);
  min-height: 44px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.mobile-nav a:hover { background: var(--bg-secondary); color: var(--text); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 4rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand .logo { font-size: 1.1rem; }
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.375rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform 0.15s, box-shadow var(--transition);
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14,165,233,0.35);
}

.btn-secondary {
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
  color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent-light);
  color: var(--accent-hover);
}

.btn-lg { padding: 0.875rem 1.75rem; font-size: 1rem; min-height: 52px; border-radius: var(--radius-md); }
.btn-sm { padding: 0.375rem 0.875rem; font-size: 0.875rem; min-height: 36px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-hover);
}

/* ---------- Tool Card ---------- */
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  color: var(--text);
}

.tool-card-icon {
  font-size: 2rem;
  line-height: 1;
}

.tool-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.tool-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.tool-card-arrow {
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: auto;
}

/* ---------- Forms ---------- */
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
select,
textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.9375rem;
  line-height: 1.5;
  min-height: 44px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}

textarea { min-height: 140px; resize: vertical; font-family: var(--font-mono); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-privacy {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

[data-theme="dark"] .badge-privacy {
  background: #14532d;
  color: #86efac;
  border-color: #166534;
}

.badge-new {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 1rem 0;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

.breadcrumb a:hover { color: var(--accent); }

.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text); font-weight: 500; }

/* ---------- Ad Slots ---------- */
.ad-slot {
  background: var(--bg-secondary);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  overflow: hidden;
}

.ad-slot-leaderboard { min-height: 90px; width: 100%; margin: 1.5rem 0; }
.ad-slot-sidebar { min-height: 250px; width: 100%; }
.ad-slot-in-content { min-height: 100px; width: 100%; margin: 2rem 0; }
.ad-slot-below-results { min-height: 90px; width: 100%; margin: 1.5rem 0; }

/* ---------- Hero (Homepage) ---------- */
.hero {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg) 60%);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.3rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.hero h1 { margin-bottom: 1rem; }

.hero-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.65;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-trust-item span:first-child { font-size: 1rem; }

/* ---------- Search ---------- */
.search-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  padding-left: 2.75rem !important;
  background: var(--bg) !important;
  border: 2px solid var(--border) !important;
  border-radius: 999px !important;
  font-size: 1rem !important;
  height: 52px;
}

.search-input:focus {
  border-color: var(--accent) !important;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

/* ---------- Tools Grid ---------- */
.tools-section { padding: 3rem 0; }

.category-block { margin-bottom: 3rem; }

.category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.category-icon { font-size: 1.5rem; }

.category-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}

.category-count {
  margin-left: auto;
  font-size: 0.8125rem;
  color: var(--text-muted);
  background: var(--bg-tertiary);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .tools-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* ---------- Tool Page Layout ---------- */
.tool-page-header { padding: 1.5rem 0 0; }

.tool-page-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

@media (min-width: 1024px) {
  .tool-page-main { grid-template-columns: 1fr 300px; }
}

.tool-area { min-width: 0; }

.tool-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

@media (max-width: 1023px) {
  .tool-sidebar { display: none; }
}

/* ---------- Tool Container ---------- */
.tool-container {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 300px;
}

.tool-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 260px;
  text-align: center;
  color: var(--text-secondary);
}

.tool-coming-soon-icon { font-size: 3rem; }
.tool-coming-soon h3 { color: var(--text); }
.tool-coming-soon p { max-width: 360px; font-size: 0.9375rem; }

/* ---------- Content Sections (How to Use, FAQ, etc.) ---------- */
.content-sections { margin-top: 3rem; display: flex; flex-direction: column; gap: 2.5rem; }

.content-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.content-section h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.content-section p, .content-section li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.content-section ol, .content-section ul {
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.content-section ol { list-style: decimal; }
.content-section ul { list-style: disc; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  background: var(--bg-secondary);
  border: none;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-tertiary); }

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer { display: block; }

/* ---------- Related Tools ---------- */
.related-tools { margin-top: 3rem; }
.related-tools h2 { margin-bottom: 1.25rem; }
.related-tools .tools-grid { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }

/* ---------- Privacy Badge ---------- */
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0.75rem 0 1.5rem;
}

[data-theme="dark"] .privacy-badge {
  background: #14532d;
  color: #86efac;
  border-color: #166534;
}

/* ---------- Copy Button ---------- */
.copy-btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 36px;
}

.copy-btn:hover {
  background: var(--bg-tertiary);
  color: var(--text);
  border-color: var(--border-hover);
}

.copy-btn.copied {
  background: #dcfce7;
  color: #166534;
  border-color: #bbf7d0;
}

[data-theme="dark"] .copy-btn.copied {
  background: #14532d;
  color: #86efac;
  border-color: #166534;
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-lg);
}

/* ---------- No-results / Empty State ---------- */
.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  display: none;
}

.no-results.visible { display: block; }
.no-results-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

/* ---------- Utility Classes ---------- */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.8125rem; }
.font-mono { font-family: var(--font-mono); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-2 { gap: 0.5rem; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.hidden { display: none !important; }

/* ---------- Skeleton Loaders ---------- */
@keyframes shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--bg-secondary) 50%, var(--bg-tertiary) 75%);
  background-size: 400px 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}

/* ---------- Responsive Tweaks ---------- */
@media (max-width: 480px) {
  .hero { padding: 2.5rem 0 2rem; }
  .tool-container { padding: 1.25rem; }
  .content-section { padding: 1.25rem; }
}
