/* couture-care-hub.css — page-specific styles only.
   Tokens/reset/base + shared buttons live in base.css;
   site chrome lives in header.css / footer.css. */

:root { --muted: #64748b; }
body { line-height: 1.65; }

/* ============================================================
   couture-care-hub.css — Stylesheet for the Couture Care blog hub page
   Alex's Dry Cleaning Valet · alexdryclean.net/couture-care/
   Edit this file directly — push-adv syncs it to the server.
   ============================================================ */

/* ── Header ─────────────────────────────────────────────────── */

/* ── Mobile header ───────────────────────────────────────────── */
@media (max-width: 640px) {
  

  

  

  

  

  

  

  

  

  .hero-carousel {
    height: 145px;
    margin-top: var(--hero-pt-lg);
  }
}

/* ── Layout ──────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 10px;
}

/* ── Hero carousel ───────────────────────────────────────────── */
.hero-carousel {
  position: relative;
  width: 100%;
  margin: var(--hero-pt-lg) 0 2.5rem;
  height: 180px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background: #f0f0ec;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.75s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  /* ← adjust to taste */
  display: block;
}

/* ── Section intro ───────────────────────────────────────────── */
.section-intro {
  max-width: 720px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

/* ── Article cards ───────────────────────────────────────────── */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  transition: all 0.2s;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center 10%;
  /* ← adjust to taste */
  display: block;
}

.article-card-content {
  padding: 1.15rem 1.3rem;
}

.article-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--navy-dark);
}

.article-card .meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* ── Bottom CTA ──────────────────────────────────────────────── */
.bottom-cta {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  margin: 0.3rem;
}

.btn-primary {
  background: var(--navy-dark);
  color: white;
}

.btn-outline {
  border: 1.5px solid var(--navy-dark);
  color: var(--navy-dark);
}

/* ── Footer ──────────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.85rem;
}
