/* ============================================================
   Momsaathi — Your Partner in Parenting
   Static HTML + CSS landing page (fully responsive)
   ============================================================ */

/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: #2b1d2a;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* ---------- IMAGE PLACEHOLDERS ----------
   Every <img> waiting for a real brand asset uses a tiny transparent
   SVG as its src + a [data-placeholder="..."] label.
   The transparent SVG lets a soft pink gradient + camera icon show
   through, so layout never breaks.
   TO REPLACE: just change src="..." on the <img> tag to your image URL
   (or upload to WP Media Library and use that URL).
---------------------------------------- */
img[data-placeholder] {
  background-color: #fde6ef;
  background-image:
    linear-gradient(135deg, rgba(255,229,236,.85) 0%, rgba(253,230,239,.85) 100%),
    url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24' fill='none' stroke='%23ec4f8e' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M23 19a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h4l2-3h6l2 3h4a2 2 0 0 1 2 2z'/%3E%3Ccircle cx='12' cy='13' r='4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, 36px 36px;
  min-height: 60px;
  min-width: 60px;
  border-radius: inherit;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- DESIGN TOKENS ---------- */
:root {
  --pink: #ec4f8e;
  --pink-dark: #d83e7d;
  --pink-soft: #fde6ef;
  --pink-bg: #fff5f5;
  --pink-bg-2: #fdeef0;
  --cream: #fff8f5;
  --text: #2b1d2a;
  --muted: #7a6a78;
  --line: #f2dfe6;
  --shadow-sm: 0 6px 20px rgba(236,79,142,.08);
  --shadow: 0 12px 40px rgba(236,79,142,.10);
  --radius: 18px;
  --radius-lg: 26px;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Fraunces', 'Plus Jakarta Sans', serif;
  color: var(--text);
  margin: 0;
  font-weight: 700;
  letter-spacing: -.01em;
}

/*h1 { 
font-size: clamp(2.2rem, 4.5vw, 3.6rem); 
line-height: 1.1; }

h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }*/
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin: 0; color: var(--muted); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn i { font-size: .8rem; }
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 25px rgba(236,79,142,.35);
}
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-1px); }
.btn-outline {
  background: #fff;
  color: var(--pink);
  border: 1.5px solid var(--pink);
}
.btn-outline:hover { background: var(--pink-soft); }
.btn-sm { padding: 10px 18px; font-size: .85rem; }

.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}
.link-btn:hover { background: var(--pink-soft); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: linear-gradient(180deg, #fff 0%, var(--pink-bg) 100%);
  padding: 18px 0;
  border-bottom: 1px solid rgba(236,79,142,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.logo-text i { font-size: .8rem; color: var(--pink); }
.logo-tag { font-size: .65rem; color: var(--muted); margin-top: 2px; }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: .92rem;
  color: var(--text);
  font-weight: 500;
  transition: color .15s ease;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--pink); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.search-box {
  position: relative;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px 10px 38px;
  border: 1px solid var(--line);
  width: 280px;
  box-shadow: var(--shadow-sm);
}
.search-box i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pink);
  font-size: .85rem;
}
.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: .85rem;
  background: transparent;
  color: var(--text);
}
.search-box input::placeholder { color: #b5a5b1; }

.avatar-btn img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  object-fit: cover;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(180deg, var(--pink-bg) 0%, #fff 100%);
  padding: 50px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge i { color: var(--pink); font-size: .8rem; }

.hero h1 .accent {
  color: var(--pink);
  position: relative;
  display: inline-block;
}
.hero h1 .accent .underline {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 14px;
}

.hero-sub {
  margin-top: 22px;
  margin-bottom: 32px;
  font-size: 1.02rem;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .9rem;
  color: var(--muted);
}
.social-proof strong { color: var(--text); }
.avatar-stack { display: inline-flex; }
.avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 500px;
}
.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50% / 40%;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin-left: auto;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 60%);
  z-index: -1;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}

/* floating cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 12px 18px 12px 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  font-size: .82rem;
  min-width: 175px;
}
.float-card small { color: var(--muted); display: block; font-size: .72rem; }
.float-card strong { font-size: .92rem; }
.float-card .ic {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}
.ic.pink   { background: #ffe1ea; color: var(--pink); }
.ic.purple { background: #ece1ff; color: #8c63d6; }
.ic.green  { background: #e0f6e3; color: #48b85c; }
.ic.orange { background: #fff0d6; color: #f0a020; }

.card-1 { top: 4%;   left: -8%; }
.card-2 { top: 36%;  left: -14%; }
.card-3 { top: 14%;  right: -10%; }
.card-4 { bottom: 14%; right: -6%; }

/* ============================================================
   CATEGORIES STRIP
   ============================================================ */
.categories { padding: 0 0 50px; margin-top: -30px; position: relative; z-index: 2; }
.cat-grid {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  text-align: center;
  transition: background .15s ease, transform .15s ease;
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
}
.cat-item:hover { background: var(--pink-bg); transform: translateY(-2px); }
.cat-ic {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============================================================
   SECTION HEAD + COMMON
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head h2 i { font-size: 1rem; }
.section-head .fire { color: #f0a020; }
.section-head .cal  { color: var(--pink); }
.section-head .doc  { color: #a070e0; }
.section-head .comm { color: var(--pink); }
.section-head p { font-size: .9rem; margin-top: 4px; }

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.7rem);
  margin-bottom: 28px;
}

.tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: none;
}
.tag-pink  { background: var(--pink); color: #fff; }
.tag-rose  { background: transparent; color: var(--pink); padding-left: 0; font-weight: 700; font-size: .72rem; }
.tag-amber { background: transparent; color: #d48800; font-weight: 700; font-size: .72rem; padding-left: 0; }

/* ============================================================
   TRENDING ARTICLES
   ============================================================ */
.trending { padding: 30px 0 70px; }
.trending-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 26px;
}
.article-featured {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.article-img { position: relative; }
.article-img img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-img .tag { position: absolute; top: 16px; left: 16px; }
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.article-body h3 { font-size: 1.35rem; line-height: 1.3; }
.article-body p { font-size: .92rem; }
.article-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.author { display: inline-flex; align-items: center; gap: 10px; }
.author img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.author strong { font-size: .85rem; display: block; }
.author small { color: var(--muted); font-size: .75rem; }

.article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.article-mini {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.article-mini:hover { transform: translateY(-3px); }
.article-mini img { width: 100%; aspect-ratio: 16/10; object-fit:fill; }
.article-mini > div { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.article-mini h4 { font-size: .95rem; line-height: 1.35; }
.article-mini small { color: var(--muted); font-size: .75rem; }

/* ============================================================
   PREGNANCY TRACKER
   ============================================================ */
.tracker { padding: 30px 0; }
.tracker-inner {
  background: var(--pink-bg-2);
  border-radius: var(--radius-lg);
  padding: 36px 38px 32px;
}
.weeks-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.weeks {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  flex: 1;
}
.week-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 22px;
  position: relative;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.week-card small { color: var(--muted); font-size: .8rem; }
.week-card h3 { font-size: 1.25rem; color: var(--text); }
.week-card p { font-size: .8rem; color: var(--muted); }
.week-emoji {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 1.5rem;
}

.tracker-cta { display: flex; justify-content: center; margin-top: 26px; }

/* ============================================================
   EXPERTS + STORIES
   ============================================================ */
.experts-stories { padding: 60px 0; }
.two-col {
  display: grid;
  /*grid-template-columns: 1fr 1fr;*/
  gap: 26px;
}
.panel {
  background: var(--pink-bg-2);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
}

.experts-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}
.expert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.expert img {
  width: 78px; height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--pink-soft);
}
.expert small { font-size: .8rem; color: var(--text); font-weight: 500; }

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  margin: 0;
  position: relative;
}
.testimonial .fa-quote-left {
  color: var(--pink);
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: block;
}
.testimonial p { color: var(--text); font-size: .92rem; font-style: italic; }
.testimonial cite { display: block; margin-top: 8px; font-size: .8rem; color: var(--muted); font-style: normal; }
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: #ddd; }
.dot.active { background: var(--pink); width: 18px; border-radius: 4px; }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}
.story {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease;
}
.story:hover { transform: translateY(-3px); }
.story img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.story h4 { font-size: .85rem; padding: 10px 12px 4px; line-height: 1.3; }
.story small { color: var(--muted); font-size: .72rem; padding: 0 12px 12px; }

.stories-cta { display: flex; justify-content: center; }

/* ============================================================
   TOOLS
   ============================================================ */
.tools { padding: 30px 0 50px; }
.tools-grid{
    display:flex;
    gap:18px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.tool-card{
    flex:0 0 calc((100% - 90px) / 6);
}

@media(max-width:992px){
    .tool-card{
        flex:0 0 calc((100% - 36px) / 3);
    }
}

@media(max-width:768px){
    .tool-card{
        flex:0 0 calc((100% - 18px) / 2);
    }
}

.tools-slider-wrap{
    position:relative;
}

.tools-prev,
.tools-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;

    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fc6a6c;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    cursor:pointer;
}

.tools-prev{
    left:-20px;
}

.tools-next{
    right:-20px;
}


.tool-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  color: var(--text);
  font-weight: 500;
  transition: transform .15s ease;
}
.tool-card:hover { transform: translateY(-3px); }
.tool-ic {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.tool-cta {
  background: var(--pink-bg-2);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  grid-column: span 1;
}
.tool-cta > div { flex: 1; }
.tool-cta .tcta-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.tool-cta .tcta-head i { color: var(--pink); }
.tool-cta p { font-size: .72rem; margin-bottom: 10px; }
.tool-cta img {
  width: 60px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

/* ============================================================
   SHOP
   ============================================================ */
.shop { padding: 30px 0 60px; }
.shop-grid {
  background: var(--pink-bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.shop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 500;
  font-size: .85rem;
  color: var(--text);
}
.shop-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  padding: 12px;
  transition: transform .2s ease;
}
.shop-card:hover img { transform: scale(1.04); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: linear-gradient(180deg, #ffeae0 0%, #ffd6df 100%);
  padding: 40px 0;
}
.news-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.news-left img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}
.news-mid { text-align: center; max-width: 580px; margin: 0 auto; }
.news-mid h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 8px;
}
.news-mid p { font-size: .9rem; margin-bottom: 18px; color: var(--text); }
.news-form {
  display: flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  gap: 6px;
}
.news-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 18px;
  font-size: .9rem;
  background: transparent;
}
.news-right {
  position: relative;
  text-align: center;
  min-width: 160px;
}
.news-right .hand {
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.25;
}
.news-right .env {
  color: var(--pink);
  font-size: 1.6rem;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  padding: 50px 0 20px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 28px;
}
.footer-grid h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  margin-bottom: 14px;
  color: var(--text);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { font-size: .85rem; color: var(--muted); }
.footer-grid a:hover { color: var(--pink); }
.foot-about { font-size: .85rem; margin: 14px 0 18px; max-width: 280px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  transition: background .15s ease, color .15s ease;
}
.socials a:hover { background: var(--pink); color: #fff; }

.foot-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .8rem;
  color: var(--muted);
}
.foot-bottom a { color: var(--muted); }
.foot-bottom a:hover { color: var(--pink); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: .85rem; }
  .search-box { width: 200px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .tools-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .weeks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; gap: 14px; }
  .main-nav { order: 3; flex-basis: 100%; }
  .main-nav ul { flex-wrap: wrap; justify-content: flex-start; gap: 14px; }
  .header-actions { margin-left: auto; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: auto; }
  .hero-image { max-width: 420px; margin: 0 auto; }
  .card-1, .card-2 { left: 2%; }
  .card-3, .card-4 { right: 2%; }

  .trending-grid { grid-template-columns: 1fr; }
  .article-list { grid-template-columns: 1fr 1fr; }

  /*.two-col { grid-template-columns: 1fr; }*/
  .stories-grid { grid-template-columns: 1fr 1fr; }

  .news-inner { grid-template-columns: 1fr; text-align: center; }
  .news-left, .news-right { margin: 0 auto; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }

  .header-actions .search-box { display: none; }

  h1 { font-size: 2rem; }
  .hero { padding: 30px 0 50px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }

  .cat-grid { grid-template-columns: repeat(3, 1fr); padding: 16px; gap: 10px; }
  .cat-item { font-size: .75rem; }
  .cat-ic { width: 46px; height: 46px; font-size: 1rem; }

  .article-list { grid-template-columns: 1fr; }
  .article-foot { flex-direction: column; align-items: flex-start; }

  .tracker-inner { padding: 22px 18px; }
  .weeks { grid-template-columns: 1fr 1fr; }
  .arrow { display: none; }

  .experts-row { grid-template-columns: repeat(2, 1fr); }
  .stories-grid { grid-template-columns: 1fr; }

  .tools-grid { grid-template-columns: 1fr 1fr; }
  .tool-cta { flex-direction: column; text-align: center; grid-column: span 2; }

  .shop-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .main-nav ul { gap: 10px; }
  .logo-text { font-size: 1.4rem; }
  .float-card { min-width: 145px; font-size: .75rem; padding: 8px 12px; }
  .float-card strong { font-size: .8rem; }
}
