.blog-shell {
  background: var(--c-ivory);
  color: var(--c-dark);
  min-height: 100vh;
  padding-top: var(--nav-h);
}

.blog-wrap {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.blog-hero {
  background: var(--c-dark);
  color: var(--c-ivory);
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 14, 14, .94), rgba(30, 28, 26, .82)), url("../../images/salle-decoration-tables-mariage-01.jpg") center/cover;
}

.blog-hero > .blog-wrap {
  position: relative;
  z-index: 1;
}

.blog-kicker,
.blog-meta,
.blog-breadcrumb,
.blog-card-meta,
.blog-pill {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.blog-kicker {
  color: var(--c-gold);
  font-weight: var(--fw-medium);
}

.blog-hero h1,
.blog-section h2,
.blog-template h1 {
  font-family: var(--ff-display);
  font-weight: var(--fw-light);
  line-height: 1.08;
  letter-spacing: 0;
}

.blog-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
}

.blog-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--c-ivory2);
  font-size: 1.08rem;
}

.blog-hero-actions,
.blog-cta-actions,
.blog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.blog-hero-actions {
  margin-top: 34px;
}

.blog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-white);
  border: 1px solid #ded7c9;
  padding: 12px 16px;
}

.blog-search input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
  color: var(--c-dark);
  background: transparent;
}

.blog-section {
  padding: 72px 0;
}

.blog-section-soft {
  background: var(--c-ivory2);
}

.blog-section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.blog-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.blog-section-head p,
.blog-category-intro p {
  color: #625c54;
  max-width: 720px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-card,
.blog-note,
.blog-pagination,
.blog-author,
.blog-related {
  background: var(--c-white);
  border: 1px solid #ded7c9;
  border-radius: var(--radius-sm);
}

.blog-card,
.blog-note {
  padding: 24px;
}

.blog-card h3 {
  font-size: 1.55rem;
  margin: 10px 0;
}

.blog-card p,
.blog-note p {
  color: #625c54;
}

/* Premium category / article cards with photo */
.blog-cat-card {
  background: var(--c-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .16);
}

.blog-cat-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.blog-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.blog-cat-card:hover .blog-cat-img img {
  transform: scale(1.06);
}

.blog-cat-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat-body .blog-kicker {
  margin-bottom: 8px;
}

.blog-cat-body h3 {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: 1.5rem;
  margin: 0 0 10px;
}

.blog-cat-body h3 a {
  color: inherit;
}

.blog-cat-body p {
  color: #625c54;
  flex: 1;
  line-height: 1.6;
}

.blog-cat-body .blog-link {
  margin-top: 18px;
}

/* Elegant "coming soon" message, used instead of any placeholder/CMS-style empty state */
.blog-empty-elegant {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--c-white);
  border-top: 2px solid var(--c-gold);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

.blog-empty-elegant p {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: var(--fw-light);
  line-height: 1.5;
  color: var(--c-dark);
  margin-bottom: 24px;
}

.blog-empty-elegant .btn {
  margin: 0 auto;
}

.blog-card-meta {
  color: var(--c-gold-dark);
  font-weight: var(--fw-medium);
}

.blog-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.blog-pill {
  border: 1px solid rgba(201, 168, 76, .38);
  color: #7b6126;
  padding: 5px 10px;
  background: rgba(201, 168, 76, .08);
}

.blog-link {
  display: inline-flex;
  color: var(--c-gold-dark);
  font-weight: var(--fw-medium);
  margin-top: 16px;
}

.blog-cta-band {
  background: var(--c-dark);
  color: var(--c-ivory);
  padding: 64px 0;
}

.blog-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.blog-cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.blog-cta-band p {
  color: var(--c-ivory2);
  max-width: 720px;
  margin-top: 12px;
}

.blog-breadcrumb {
  color: #766f66;
  margin-bottom: 22px;
}

.blog-breadcrumb a {
  color: var(--c-gold-dark);
}

.blog-category-hero {
  background: var(--c-dark);
  color: var(--c-ivory);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.blog-category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 14, 14, .92), rgba(30, 28, 26, .8)), var(--cat-img, none) center/cover;
}

.blog-category-hero > .blog-wrap {
  position: relative;
  z-index: 1;
}

.blog-category-hero .blog-breadcrumb {
  color: #c9c2b6;
}

.blog-category-hero .blog-breadcrumb a {
  color: var(--c-gold);
}

.blog-category-intro h1 {
  font-family: var(--ff-display);
  font-weight: var(--fw-light);
  margin-top: 10px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.blog-category-intro p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--c-ivory2);
}

.blog-category-intro .btn {
  margin-top: 26px;
}

.blog-presentation {
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.blog-presentation-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
}

.blog-presentation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-presentation-text p {
  color: #625c54;
  margin-top: 16px;
  line-height: 1.7;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--c-white);
  border: 1px solid #ded7c9;
  border-radius: var(--radius-sm);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-sidebar h2 {
  font-family: var(--ff-display);
  font-weight: var(--fw-regular);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.blog-sidebar .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.blog-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  margin-top: 26px;
}

.blog-pagination a,
.blog-pagination span {
  color: #625c54;
}

.blog-template {
  background: var(--c-ivory);
  color: var(--c-dark);
  padding-top: var(--nav-h);
}

.blog-template .blog-layout {
  padding: 64px 0 80px;
}

.blog-template-article {
  min-width: 0;
}

.blog-template h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.blog-template .lead {
  color: #625c54;
  margin-top: 18px;
}

.blog-author,
.blog-related {
  padding: 22px;
  margin-top: 28px;
}

.blog-skip {
  position: absolute;
  left: -999px;
}

.blog-skip:focus {
  left: 16px;
  top: 16px;
  z-index: 2000;
  background: var(--c-gold);
  color: var(--c-dark);
  padding: 10px 14px;
}

@media (max-width: 920px) {
  .blog-toolbar,
  .blog-cta-layout,
  .blog-section-head,
  .blog-presentation,
  .blog-layout {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .blog-grid,
  .blog-grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .blog-presentation-media {
    order: -1;
  }

  .blog-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .blog-sidebar h2 {
    width: 100%;
  }

  .blog-sidebar .btn {
    flex: 1 1 220px;
  }
}

@media (max-width: 560px) {
  .blog-hero {
    padding: 72px 0 56px;
  }

  .blog-section {
    padding: 52px 0;
  }

  .blog-card,
  .blog-note,
  .blog-cat-body {
    padding: 20px;
  }

  .blog-empty-elegant {
    padding: 36px 24px;
  }

  .blog-category-hero {
    padding: 56px 0 44px;
  }

  .blog-presentation {
    padding: 52px 0;
  }

  .blog-hero-actions .btn,
  .blog-cta-actions .btn {
    width: 100%;
    justify-content: center;
    padding-inline: 18px;
    white-space: normal;
    text-align: center;
  }
}
