/* ============================================================
   SafeSpace — Consolidated Stylesheet (Optimized)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap");

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  --accent: #c47d4f;
  --accent-deep: #a8633a;
  --accent-light: rgba(196, 125, 79, 0.12);
  --accent-glow: rgba(196, 125, 79, 0.35);
  --bg: #fbf7f3;
  --bg2: #f4ede4;
  --bg3: #ede3d8;
  --text-dark: #2c2016;
  --text-mid: #6b5744;
  --text-soft: #a08878;
  --white: #ffffff;
  --border: rgba(196, 125, 79, 0.2);
  --shadow-sm: 0 2px 12px rgba(44, 32, 22, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 32, 22, 0.1);
  --shadow-lg: 0 20px 60px rgba(44, 32, 22, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  font-family: "DM Sans", sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

h1,
h2,
h3 {
  font-family: "Lora", serif;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes ssFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes ssPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--accent-glow);
  }
  70% {
    box-shadow: 0 0 0 8px transparent;
  }
}

@keyframes ssOrb1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 30px) scale(1.05);
  }
}

@keyframes ssOrb2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -40px) scale(0.97);
  }
}

@keyframes ssOrb3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -25px) scale(1.03);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Alias for components that use ssFadeUp */
@keyframes ssFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation helper classes */
.ss-fade-up {
  animation: fadeUp 0.7s ease both;
}

.ss-fade-in {
  animation: fadeIn 0.5s ease both;
}

.ss-d1 {
  animation-delay: 0.1s;
}
.ss-d2 {
  animation-delay: 0.2s;
}
.ss-d3 {
  animation-delay: 0.3s;
}
.ss-d4 {
  animation-delay: 0.4s;
}

.pl-spin {
  animation: spin 0.7s linear infinite;
}

/* ── Orb background ─────────────────────────────────────────── */
.ss-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ss-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--c) 0%, transparent 70%);
}

.ss-orb-1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -10%;
  --c: rgba(232, 197, 170, 0.3);
  animation: ssOrb1 20s ease-in-out infinite;
}

.ss-orb-2 {
  width: 480px;
  height: 480px;
  top: 35%;
  right: -8%;
  --c: rgba(180, 210, 190, 0.25);
  animation: ssOrb2 24s ease-in-out infinite;
}

.ss-orb-3 {
  width: 380px;
  height: 380px;
  bottom: 8%;
  left: 22%;
  --c: rgba(200, 185, 220, 0.2);
  animation: ssOrb3 28s ease-in-out infinite;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes drift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(40px, 30px) scale(1.05);
  }
}
@keyframes drift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, -40px) scale(0.97);
  }
}
@keyframes drift3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -25px) scale(1.03);
  }
}

@keyframes floatHeart {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

/* ── Page wrapper ───────────────────────────────────────────── */
.ss-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: var(--bg);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* ── Shared card ────────────────────────────────────────────── */
.ss-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ── Input ──────────────────────────────────────────────────── */
.ss-input {
  width: 100%;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.ss-input::placeholder {
  color: var(--text-soft);
}

.ss-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

/* ── Buttons ────────────────────────────────────────────────── */
.ss-btn-primary,
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px var(--accent-glow);
  transition: all 0.2s;
  text-decoration: none;
}

.ss-btn-primary:hover,
.cta-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--accent-glow);
}

.ss-btn-primary:disabled,
.cta-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.ss-btn-ghost,
.cta-ghost,
.pl-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: transparent;
  color: var(--text-mid);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.ss-btn-ghost:hover,
.cta-ghost:hover,
.pl-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

/* ── Typography ─────────────────────────────────────────────── */
.ss-logo-text {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--text-dark);
}

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

.ss-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}

/* ── Error / status boxes ───────────────────────────────────── */
.ss-error {
  padding: 12px 16px;
  background: rgba(196, 79, 79, 0.08);
  border: 1px solid rgba(196, 79, 79, 0.25);
  border-radius: var(--radius);
  font-size: 14px;
  color: #b94040;
}

.status-message {
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
}

.status-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.status-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ── Nav ────────────────────────────────────────────────────── */
.ss-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 48px);
  background: rgba(251, 247, 243, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}
.pl-nav-link {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.pl-nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.pl-nav-link:hover {
  color: var(--accent);
}
.pl-nav-link:hover::after {
  width: 100%;
}
.pl-nav-link.active {
  color: var(--accent);
}
.pl-nav-link.active::after {
  width: 100%;
}
.pl-hamburger {
  display: none;
}
/* ── Section label pill (eyebrow) ───────────────────────────── */
.ss-eyebrow {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.02em;
}

.ss-eyebrow--lg {
  font-size: 15px;
  padding: 8px 18px;
}

/* ── Headings ───────────────────────────────────────────────── */
.ss-h1 {
  font-family: "Lora", serif;
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ss-h2 {
  font-family: "Lora", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.ss-h3 {
  font-family: "Lora", serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

.ss-lead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.ss-lead--lg {
  font-size: clamp(17px, 2.5vw, 19px);
}

/* ── Layout helpers ─────────────────────────────────────────── */
.ss-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.ss-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.ss-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ss-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* ── Sections ───────────────────────────────────────────────── */
.ss-section {
  position: relative;
  padding: clamp(60px, 10vw, 100px) clamp(16px, 4vw, 48px);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.ss-section--hero {
  padding-top: clamp(100px, 15vw, 140px);
  padding-bottom: clamp(80px, 12vw, 120px);
  text-align: center;
}

.ss-section--alt {
  background: var(--bg2);
}

.ss-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ss-section-inner--sm {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.ss-section-header {
  text-align: center;
  margin-bottom: 52px;
}

/* ── Stats ──────────────────────────────────────────────────── */
.ss-stat-num {
  font-family: "Lora", serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.ss-stat-label {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
}

/* ── Step cards ─────────────────────────────────────────────── */
.ss-step {
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ss-step__icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.ss-step__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}

.ss-step__title {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.ss-step__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Feature cards ──────────────────────────────────────────── */
.ss-feature {
  padding: 28px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s;
}

.ss-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ss-feature__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}

.ss-feature__title {
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.ss-feature__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── Listener cards ─────────────────────────────────────────── */
.ss-listener {
  flex: 1 1 240px;
  max-width: 260px;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s;
}

.ss-listener:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ss-listener__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin: 0 auto 16px;
  border: 3px solid rgba(255, 255, 255, 0.9);
}

.ss-listener__name {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ss-listener__specialty {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

.ss-listener__message {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* ── Testimonials ───────────────────────────────────────────── */
.ss-testimonial {
  flex: 1 1 280px;
  max-width: 340px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.ss-testimonial__quote {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.ss-testimonial__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

/* ── Blog cards ─────────────────────────────────────────────── */
.ss-post-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.3s;
  max-width: 380px;
  width: 100%;
}

.ss-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ss-post-card__cover-fallback {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.ss-post-card__body {
  padding: 24px;
}

.ss-post-card__meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.ss-post-card__category {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.ss-post-card__readtime {
  font-size: 12px;
  color: var(--text-soft);
}

.ss-post-card__title {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.ss-post-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ss-post-card__tag {
  font-size: 11px;
  color: var(--text-soft);
  background: var(--bg2);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.ss-post-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ss-post-card__author {
  font-size: 12px;
  color: var(--text-soft);
}

.ss-post-card__cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* ── Blog post detail ───────────────────────────────────────── */
.ss-post-content {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-dark);
}

.ss-post-content h2,
.ss-post-content h3 {
  font-family: "Lora", serif;
  margin-top: 32px;
  margin-bottom: 16px;
}

.ss-post-content p {
  margin-bottom: 20px;
}

.ss-post-content a {
  color: var(--accent);
  text-decoration: underline;
}

.ss-post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.ss-post-tag {
  font-size: 13px;
  color: var(--text-mid);
  background: var(--bg2);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.ss-post-cta {
  margin-top: 60px;
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: var(--radius-lg);
  color: #fff;
}

.ss-post-cta__icon {
  font-size: 56px;
  margin-bottom: 20px;
}

.ss-post-cta__title {
  font-family: "Lora", serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.ss-post-cta__sub {
  font-size: 16px;
  margin-bottom: 28px;
  opacity: 0.95;
}

.ss-post-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  background: #fff;
  color: var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.ss-post-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── Blog list page ─────────────────────────────────────────── */
.ss-blog-link {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: all 0.2s;
}

.ss-blog-link:hover {
  color: var(--accent-deep);
}

.ss-category-pill {
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
  text-transform: capitalize;
}

.ss-category-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.ss-category-pill--active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.ss-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.ss-pagination__btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.ss-pagination__btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
}

.ss-pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ss-pagination__label {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
}

.ss-blog-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  gap: 16px;
}

.ss-blog-loading__icon {
  font-size: 48px;
}

/* ── CTA banner ─────────────────────────────────────────────── */
.ss-cta-banner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) clamp(24px, 4vw, 48px);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-radius: var(--radius-lg);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.ss-cta-banner__icon {
  font-size: clamp(48px, 8vw, 72px);
  margin-bottom: 20px;
}

.ss-cta-banner__title {
  font-family: "Lora", serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.ss-cta-banner__sub {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.ss-cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── About — ValueCard / TeamCard / listener quality card ──── */
.ss-value-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(44, 32, 22, 0.06);
  flex: 1 1 240px;
}
.ss-value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.ss-value-card__title {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.ss-value-card__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
/* ── About — TeamCard ───────────────────────────────────────── */
.ss-team-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(44, 32, 22, 0.06);
  flex: 1 1 220px;
  text-align: center;
}
.ss-team-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent-light);
  border: 3px solid rgba(196, 125, 79, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 18px;
}
.ss-team-card__name {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.ss-team-card__role {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ss-team-card__bio {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── About — Timeline ───────────────────────────────────────── */
.ss-timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
}
.ss-timeline-item__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.ss-timeline-item__dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Lora", serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px var(--accent-glow);
  z-index: 1;
}
.ss-timeline-item__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: var(--border);
  margin-top: 4px;
}
.ss-timeline-item__body {
  padding-bottom: 36px;
}
.ss-timeline-item__body--last {
  padding-bottom: 0;
}
.ss-timeline-item__title {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  margin-top: 10px;
}
.ss-timeline-item__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* ── About — PressQuote ─────────────────────────────────────── */
.ss-press-quote {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 4px 20px rgba(44, 32, 22, 0.06);
  flex: 1 1 240px;
}
.ss-press-quote__mark {
  font-size: 36px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 12px;
}
.ss-press-quote__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.ss-press-quote__source {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── About — Origin quote card ──────────────────────────────── */
.ss-origin-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: 0 12px 40px rgba(44, 32, 22, 0.09);
  position: relative;
}
.ss-origin-card__mark {
  font-size: 72px;
  color: var(--accent);
  font-family: Georgia, serif;
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}
.ss-origin-card__quote {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}
.ss-origin-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.ss-origin-card__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}
.ss-origin-card__loc {
  font-size: 12px;
  color: var(--text-mid);
}

/* ── About — Mission statement block ───────────────────────── */
.ss-mission-block {
  background: linear-gradient(
    135deg,
    rgba(196, 125, 79, 0.08),
    rgba(180, 210, 190, 0.1)
  );
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 40px;
  text-align: center;
}
.ss-mission-block__text {
  font-family: "Lora", serif;
  font-size: clamp(17px, 2.5vw, 22px);
  color: var(--text-dark);
  line-height: 1.75;
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}

/* ── About — Listener quality mini-card ─────────────────────── */
.ss-quality-card {
  flex: 1 1 200px;
  text-align: center;
  padding: 28px 20px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(44, 32, 22, 0.06);
}
.ss-quality-card__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.ss-quality-card__title {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.ss-quality-card__body {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── About — What/not checklist row ─────────────────────────── */
.ss-check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}
.ss-check-row--yes {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}
.ss-check-row--no {
  background: rgba(196, 79, 79, 0.05);
  border: 1px solid rgba(196, 79, 79, 0.15);
}
.ss-check-row__icon {
  font-size: 18px;
  flex-shrink: 0;
}
.ss-check-row__label {
  font-size: 14px;
  font-weight: 500;
}
.ss-check-row--yes .ss-check-row__label {
  color: var(--text-dark);
}
.ss-check-row--no .ss-check-row__label {
  color: #b94040;
}

/* ── About — Crisis callout ─────────────────────────────────── */
.ss-crisis-callout {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(196, 79, 79, 0.05);
  border: 1px solid rgba(196, 79, 79, 0.18);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.ss-crisis-callout__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.ss-crisis-callout__title {
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #b94040;
  margin-bottom: 8px;
}
.ss-crisis-callout__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
}
/* ── Contact page ────────────────────────────────────────────── */
.ss-contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}
.ss-contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}
.ss-contact-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.ss-contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.ss-contact-card__icon {
  font-size: 48px;
  margin-bottom: 15px;
}
.ss-contact-card__title {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: "Lora", serif;
  font-size: 1rem;
  font-weight: 700;
}
.ss-contact-card__email {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
  word-break: break-all;
}
.ss-contact-card__email:hover {
  text-decoration: underline;
}
.ss-contact-card__note {
  color: var(--text-mid);
  margin-top: 10px;
  font-size: 14px;
}

.ss-contact-form {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid var(--border);
}
.ss-contact-form__title {
  font-size: 28px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-family: "Lora", serif;
}
.ss-contact-form__note {
  color: var(--text-mid);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.ss-form-group {
  margin-bottom: 25px;
}
.ss-form-group label {
  display: block;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}
.ss-form-group .required {
  color: #f44336;
}
.ss-form-group input,
.ss-form-group textarea,
.ss-form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
  color: var(--text-dark);
}
.ss-form-group input:focus,
.ss-form-group textarea:focus,
.ss-form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-light);
}
.ss-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.ss-submit-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  font-family: inherit;
}
.ss-submit-btn:hover:not(:disabled) {
  background: var(--accent-deep);
}
.ss-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ss-response-time {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: rgba(245, 240, 235, 0.8);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mid);
}
.ss-business-hours {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  color: var(--text-mid);
}
/* ── Footer ─────────────────────────────────────────────────── */
.ss-footer {
  background: var(--bg3);
  padding: clamp(40px, 8vw, 80px) clamp(24px, 4vw, 48px) clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--border);
}

.ss-footer__grid {
  max-width: 1100px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.ss-footer__col-title {
  font-family: "Lora", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.ss-footer__link {
  display: block;
  font-size: 14px;
  color: var(--text-mid);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.ss-footer__link:hover {
  color: var(--accent);
}

.ss-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ss-footer__copyright {
  font-size: 13px;
  color: var(--text-soft);
}

.ss-footer__socials {
  display: flex;
  gap: 16px;
}

.ss-footer__social-link {
  font-size: 20px;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}

.ss-footer__social-link:hover {
  color: var(--accent);
}

/* ── Crisis banner ──────────────────────────────────────────── */
.ss-crisis-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: linear-gradient(135deg, #d64545, #b93434);
  color: #fff;
  padding: 16px clamp(16px, 4vw, 48px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.ss-crisis-banner--visible {
  transform: translateY(0);
}

.ss-crisis-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ss-crisis-banner__text {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
}

.ss-crisis-banner__link {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

.ss-crisis-banner__close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}

.ss-crisis-banner__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ── Page hero ──────────────────────────────────────────────── */
.page-hero {
  padding: clamp(80px, 12vw, 120px) clamp(24px, 4vw, 48px)
    clamp(40px, 8vw, 60px);
  text-align: center;
  background: var(--bg2);
  position: relative;
}

/* ── Profile page ───────────────────────────────────────────── */
.pl-container {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 80px) clamp(20px, 4vw, 40px);
}

.pl-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.pl-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 20px;
  flex-wrap: wrap;
}

.pl-title {
  font-family: "Lora", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
}

.pl-save-btn {
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px var(--accent-glow);
  transition: all 0.2s;
}

.pl-save-btn:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.pl-save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ── Careers & Become-a-Listener pages ────────────────────────── */
.careers-page,
.become-listener-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(40px, 8vw, 60px) clamp(20px, 4vw, 40px);
}

.careers-hero {
  text-align: center;
  margin-bottom: 60px;
  padding: clamp(40px, 8vw, 60px) clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, #f5f0eb 0%, #fffdf9 100%);
  border-radius: 20px;
}

.careers-hero__icon {
  font-size: clamp(48px, 8vw, 64px);
  margin-bottom: 20px;
}

.careers-hero__title {
  font-family: "Lora", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: bold;
  color: var(--accent);
  margin: 20px 0;
}

.careers-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-mid);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.careers-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin: 60px 0;
  text-align: center;
}

.careers-stat-card {
  padding: 30px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.careers-stat-card__num {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: bold;
  color: var(--accent);
  display: block;
}

.careers-stat-card__label {
  color: var(--text-mid);
  margin-top: 10px;
  display: block;
}

.careers-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  gap: 16px;
  color: var(--text-mid);
}

.careers-spinner {
  border: 4px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

.careers-section-title {
  font-family: "Lora", serif;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 30px;
  text-align: center;
}

.careers-job-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 30px);
  margin-bottom: 25px;
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.careers-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.careers-job-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 15px;
  gap: 10px;
}

.careers-job-card__title {
  font-family: "Lora", serif;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: bold;
  color: var(--text-dark);
  margin: 0;
}

.careers-job-card__meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.careers-job-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-mid);
  font-size: 14px;
}

.careers-job-card__desc {
  color: #4a3728;
  margin-bottom: 20px;
  line-height: 1.6;
}

.job-type-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
}

.job-type-badge--full-time {
  background: #e8f5e9;
  color: #2e7d32;
}

.job-type-badge--part-time {
  background: #fff3e0;
  color: #e65100;
}

.job-type-badge--contract {
  background: #e3f2fd;
  color: #1565c0;
}

.job-type-badge--remote {
  background: #f3e5f5;
  color: #6a1b9a;
}

.careers-no-jobs {
  text-align: center;
  padding: clamp(40px, 8vw, 60px);
  background: #f5f0eb;
  border-radius: 12px;
  color: var(--text-mid);
  line-height: 1.8;
}

.careers-email-link {
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
}

.careers-email-link:hover {
  text-decoration: underline;
}

.careers-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
}

.careers-modal {
  background: white;
  border-radius: 12px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.careers-modal__header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.careers-modal__title {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.careers-modal__close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-mid);
  line-height: 1;
  padding: 0 4px;
}

.careers-modal__close:hover {
  color: var(--text-dark);
}

.careers-modal__body {
  padding: 30px;
}

.careers-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.careers-form-hint {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 5px;
  display: block;
}

.careers-checkbox-group {
  margin-bottom: 25px;
}

.careers-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
}

.careers-checkbox-label input[type="checkbox"] {
  width: auto;
  accent-color: var(--accent);
}

.listener-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.listener-req-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.listener-req-card__icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.listener-req-card__title {
  font-family: "Lora", serif;
  font-size: 22px;
  font-weight: bold;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.listener-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.listener-req-list__item {
  margin: 12px 0;
  padding-left: 24px;
  position: relative;
  color: #4a3728;
  font-size: 14px;
  line-height: 1.6;
}

.listener-req-list__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.listener-alt-apply {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: #f5f0eb;
  border-radius: 12px;
  color: var(--text-mid);
  line-height: 2;
}

/* ── Responsive fixes ───────────────────────────────────────── */
@media (max-width: 768px) {
  .ss-nav {
    padding: 12px 16px;
  }

  .ss-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas button {
    width: 100%;
    max-width: 300px;
  }

  .features-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .ss-footer__grid {
    grid-template-columns: 1fr;
  }

  .ss-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .careers-form-row {
    grid-template-columns: 1fr;
  }
  .pl-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .pl-hamburger:hover {
    background: rgba(196, 125, 79, 0.1);
  }

  .pl-hamburger-line {
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.2s ease;
    display: block;
  }

  .pl-nav-links {
    display: none !important;
  }
  .nav-auth-buttons {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .ss-h1 {
    font-size: 32px;
  }

  .ss-h2 {
    font-size: 24px;
  }

  .ss-cta-banner {
    padding: 40px 20px;
  }

  .ss-post-card {
    max-width: 100%;
  }
}

/* Ensure no horizontal overflow */
* {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Fix for specific overflow-causing elements */
.ss-flex-center,
.ss-grid-2,
.ss-grid-auto {
  width: 100%;
  max-width: 100%;
}
