/* ================================================
   МАМА ВДОМА — Головні стилі теми
   ================================================ */

/* ── 1. ЗМІННІ ── */
:root {
  --cream:            #fdf6ee;
  --warm-white:       #fffcf7;
  --terracotta:       #c8603a;
  --terracotta-light: #e8825c;
  --sage:             #7a9e7e;
  --sage-light:       #a8c5aa;
  --dusty-rose:       #d4847a;
  --gold:             #c9a84c;
  --dark:             #2c2416;
  --medium:           #5a4a38;
  --light-text:       #8a7a68;
  --border:           #ede0d0;
  --container:        1200px;
  --radius-card:      20px;
  --radius-pill:      30px;
}

/* ── 2. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

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

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--terracotta-light); }

ul { list-style: none; }

/* ── 3. CONTAINER ── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 32px;
}

/* ── 4. TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 4vw, 38px); }
h2 { font-size: clamp(22px, 3vw, 30px); }
h3 { font-size: clamp(16px, 2vw, 20px); }

em { color: var(--terracotta); font-style: italic; }

p { color: var(--medium); line-height: 1.75; }

/* ── 5. ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-d1 { animation-delay: .1s; }
.fade-up-d2 { animation-delay: .2s; }
.fade-up-d3 { animation-delay: .3s; }
.fade-up-d4 { animation-delay: .4s; }

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.site-header {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--dark);
}

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

.logo-icon {
  width: 40px; height: 40px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.logo-text span { color: var(--terracotta); }

/* Custom logo image */
.custom-logo { height: 40px; width: auto; }

/* Primary nav */
.primary-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.primary-nav a {
  color: var(--medium);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: var(--terracotta);
  color: #fff;
}

/* Search toggle */
.header-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--light-text);
  cursor: pointer;
  transition: border-color .2s;
  white-space: nowrap;
  font-family: 'Nunito', sans-serif;
}
.header-search-btn:hover { border-color: var(--terracotta); }

/* Burger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.hero-section {
  padding-block: 48px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 520px;
}

/* Main big card */
.hero-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #c5b09a;
  cursor: pointer;
}

.hero-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-main:hover img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,.85) 0%, rgba(30,18,8,.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}

.hero-tag {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 14px;
  width: fit-content;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Side cards */
.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #c5b09a;
  cursor: pointer;
}

.hero-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.hero-card:hover img { transform: scale(1.06); }

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,18,8,.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.hero-card-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.hero-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  line-height: 1.3;
}

/* ════════════════════════════════════════════
   CATEGORY PILLS
   ════════════════════════════════════════════ */
.categories-section { padding-top: 48px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--medium);
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.pill:hover {
  border-color: var(--terracotta);
  color: var(--terracotta);
  background: #fff8f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200,96,58,.12);
}
.pill-emoji { font-size: 16px; }
.pill-count { font-size: 11px; color: var(--light-text); }

/* ════════════════════════════════════════════
   SECTION HEADERS
   ════════════════════════════════════════════ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--dark);
}

.see-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap .2s;
}
.see-all:hover { gap: 8px; color: var(--terracotta); }

/* ════════════════════════════════════════════
   MAIN CONTENT LAYOUT
   ════════════════════════════════════════════ */
.content-sidebar-wrap {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

/* ════════════════════════════════════════════
   POST CARDS GRID
   ════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Standard card */
.post-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44,36,22,.12);
}

.post-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #c5b09a;
}
.post-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.post-card:hover .post-card-image img { transform: scale(1.07); }

.post-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.post-card-body { padding: 18px 20px 20px; }

.post-card-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--sage);
  margin-bottom: 8px;
  display: block;
}

.post-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark);
  margin-bottom: 12px;
  display: block;
}
.post-card-title:hover { color: var(--terracotta); }

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--light-text);
}

.post-time { display: flex; align-items: center; gap: 4px; }

/* Featured wide card */
.post-card.post-card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.post-card--wide .post-card-image { aspect-ratio: auto; }
.post-card--wide .post-card-body {
  padding: 28px 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card--wide .post-card-title { font-size: 22px; margin-bottom: 16px; }

.post-excerpt {
  font-size: 13px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read more button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terracotta);
  color: #fff;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 700;
  transition: background .2s, gap .2s;
  width: fit-content;
}
.btn-primary:hover {
  background: var(--terracotta-light);
  color: #fff;
  gap: 12px;
}

/* ════════════════════════════════════════════
   SIDEBAR
   ════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 28px; }

.widget {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
}

.widget-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 18px;
}

/* Newsletter widget */
.widget--newsletter {
  background: linear-gradient(135deg, var(--terracotta) 0%, #a84c2c 100%);
  border: none;
  text-align: center;
  padding: 32px 24px;
}
.widget--newsletter .newsletter-icon { font-size: 40px; margin-bottom: 12px; }
.widget--newsletter .widget-title { color: #fff; }
.widget--newsletter p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 20px; }

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: none;
  font-size: 14px;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 10px;
  outline: none;
}
.newsletter-form button {
  width: 100%;
  padding: 12px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: #3d3020; }

/* Popular posts widget */
.popular-list { display: flex; flex-direction: column; gap: 16px; }

.popular-item {
  display: flex;
  gap: 14px;
  transition: transform .2s;
}
.popular-item:hover { transform: translateX(4px); }

.popular-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--border);
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.popular-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--sage);
  margin-bottom: 4px;
  display: block;
}
.popular-title {
  font-size: 14px; font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
}
.popular-title:hover { color: var(--terracotta); }

/* Tags cloud */
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--medium);
  transition: all .2s;
}
.tag-chip:hover {
  background: var(--terracotta);
  color: #fff;
  border-color: var(--terracotta);
}

/* ════════════════════════════════════════════
   HOROSCOPE STRIP
   ════════════════════════════════════════════ */
.horoscope-section { padding-top: 60px; }

.horoscope-strip {
  background: linear-gradient(135deg, #1e1628 0%, #2d1e3e 100%);
  border-radius: 24px;
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}

.horoscope-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 10px;
}
.horoscope-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 10px;
}
.horoscope-desc {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  max-width: 480px;
}

.horoscope-signs { display: flex; gap: 12px; }

.sign-bubble {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  text-decoration: none;
}
.sign-bubble:hover {
  background: rgba(201,168,76,.2);
  border-color: var(--gold);
}
.sign-emoji { font-size: 20px; }
.sign-name { font-size: 9px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ════════════════════════════════════════════
   TIPS / LIFESTYLE GRID
   ════════════════════════════════════════════ */
.tips-section { padding-top: 60px; }

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tip-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.tip-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(44,36,22,.1);
}

.tip-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #c5b09a;
}
.tip-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tip-card:hover .tip-card-image img { transform: scale(1.07); }

.tip-card-body { padding: 20px; flex: 1; }

.tip-card-cat {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--dusty-rose);
  margin-bottom: 8px;
  display: block;
}
.tip-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  line-height: 1.4;
  color: var(--dark);
}
.tip-card-title:hover { color: var(--terracotta); }

/* ════════════════════════════════════════════
   PARENTING BANNER
   ════════════════════════════════════════════ */
.parenting-section { padding-top: 60px; }

.parenting-banner {
  background: linear-gradient(135deg, #f0ebe3 0%, #e8ddd0 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.parenting-icon {
  width: 120px; height: 120px;
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(44,36,22,.08);
}

.parenting-eyebrow {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.parenting-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--dark);
}
.parenting-desc {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ════════════════════════════════════════════
   DECORATIVE DIVIDER
   ════════════════════════════════════════════ */
.md-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 60px;
  color: var(--border);
}
.md-divider::before,
.md-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.md-divider-icon { font-size: 18px; opacity: .6; }

/* ════════════════════════════════════════════
   SINGLE POST
   ════════════════════════════════════════════ */
.single-wrap {
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
}

.entry-header { margin-bottom: 32px; }

.entry-categories { margin-bottom: 12px; }
.entry-categories a {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--sage);
}

.entry-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.entry-meta {
  font-size: 13px;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.entry-thumbnail {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
  aspect-ratio: 16/8;
}
.entry-thumbnail img { width: 100%; height: 100%; object-fit: cover; }

.entry-content { max-width: 680px; }
.entry-content p { margin-bottom: 20px; }
.entry-content h2 { margin: 36px 0 14px; }
.entry-content h3 { margin: 28px 0 10px; }

.entry-content blockquote {
  border-left: 4px solid var(--terracotta);
  background: #fff8f5;
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--medium);
  margin: 28px 0;
}

/* ════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding-top: 48px;
}

.page-numbers {
  width: 40px; height: 40px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--medium);
  transition: all .2s;
}
.page-numbers.current,
.page-numbers:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.site-footer {
  margin-top: 80px;
  background: var(--dark);
  color: rgba(255,255,255,.65);
  padding: 56px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--terracotta-light); }

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background .2s;
}
.footer-social:hover { background: var(--terracotta); }

.footer-col-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer-links a:hover { color: var(--terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 300px; }
  .content-sidebar-wrap { grid-template-columns: 1fr 280px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding-inline: 20px; }

  /* Header */
  .primary-nav,
  .header-search-btn { display: none; }
  .menu-toggle { display: flex; }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--border);
    padding: 16px 20px;
    gap: 4px;
    z-index: 199;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }
  .hero-main { grid-row: auto; min-height: 300px; }
  .hero-card { min-height: 180px; }

  /* Layout */
  .content-sidebar-wrap { grid-template-columns: 1fr; }
  .sidebar { order: -1; }

  /* Cards */
  .posts-grid { grid-template-columns: 1fr; }
  .post-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .post-card--wide .post-card-image { aspect-ratio: 16/9; }

  /* Horoscope */
  .horoscope-strip {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .horoscope-signs { flex-wrap: wrap; }

  /* Tips */
  .tips-grid { grid-template-columns: 1fr; }

  /* Parenting */
  .parenting-banner {
    grid-template-columns: 1fr;
    padding: 28px;
    text-align: center;
  }
  .parenting-icon { margin: 0 auto; }
  .btn-primary { margin: 0 auto; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}