/* ================================================================
   BLOG INDEX + BLOG DETAIL pages — full redesign 2026-05-09
   Brand: peach #DF7D6F + dark #150e0e
   Reuses .media-hero, .about-cta-strip, .service-prose patterns.
   ================================================================ */

/* ============ Listing page ============ */
.blog-listing {
  background: #0a0606;
  padding: 70px 0 80px;
}

/* Featured (first / latest) post — spans wider on desktop */
.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.18);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 50px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-featured:hover {
  transform: translateY(-4px);
  border-color: #DF7D6F;
  box-shadow: 0 18px 40px rgba(223,125,111,.18);
}
.blog-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.blog-featured-img picture, .blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  border-radius: 999px;
  z-index: 2;
}
.blog-featured-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8a7a6e;
  font-size: 13px;
  margin-bottom: 14px;
}
.blog-meta svg { color: #DF7D6F; font-size: 13px; }
.blog-meta-dot {
  width: 4px; height: 4px;
  background: #DF7D6F;
  border-radius: 50%;
  display: inline-block;
}
.blog-featured-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 0 0 14px;
  text-decoration: none;
}
.blog-featured a { text-decoration: none; }
.blog-featured-title:hover { color: #DF7D6F; }
.blog-featured-excerpt {
  color: #b8a89c;
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 20px;
}
.blog-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DF7D6F;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.blog-featured-cta svg { transition: transform .25s ease; font-size: 12px; }
.blog-featured:hover .blog-featured-cta svg { transform: translateX(4px); }

/* Listing grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.blog-card {
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.14);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: #DF7D6F;
  box-shadow: 0 14px 32px rgba(223,125,111,.18);
  text-decoration: none;
}
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.blog-card-img-wrap picture, .blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }
.blog-card-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-title {
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.4;
  margin: 0 0 10px;
}
.blog-card:hover .blog-card-title { color: #DF7D6F; }
.blog-card-excerpt {
  color: #b8a89c;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}
.blog-card-cta {
  color: #DF7D6F;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.blog-card-cta svg { font-size: 11px; transition: transform .25s ease; }
.blog-card:hover .blog-card-cta svg { transform: translateX(3px); }

/* Empty state */
.blog-empty {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.18);
  border-radius: 14px;
}
.blog-empty h3 { color: #fff; font-weight: 600; margin: 0 0 6px; }
.blog-empty p { color: #b8a89c; margin: 0; }


/* ================================================================
   BLOG DETAIL
   ================================================================ */

/* Article hero — image-led */
.article-hero {
  background: linear-gradient(135deg, #150e0e 0%, #1f1413 60%, #2a1814 100%);
  padding: 150px 0 60px;  /* top padding clears the ~116px absolute site header */
  border-bottom: 1px solid rgba(223,125,111,.2);
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(223,125,111,.18) 0%, transparent 70%);
  border-radius: 50%;
}
.article-hero .container-fluid { position: relative; z-index: 2; }
.article-breadcrumb {
  font-size: 13px;
  color: #b8a89c;
  margin-bottom: 18px;
}
.article-breadcrumb a { color: #DF7D6F; text-decoration: none; }
.article-breadcrumb a:hover { opacity: .75; }
.article-breadcrumb span[aria-hidden] { margin: 0 8px; opacity: .4; }

.article-eyebrow {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(223,125,111,.14);
  border: 1px solid rgba(223,125,111,.4);
  color: #DF7D6F;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 16px;
}
.article-title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  margin: 0 0 22px;
  max-width: 920px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #c8b9ad;
  font-size: 14px;
}
.article-meta-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta-author img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DF7D6F;
}
.article-meta-author a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.article-meta-author a:hover { color: #DF7D6F; }
.article-meta-author small { display: block; color: #8a7a6e; font-size: 11.5px; margin-top: 1px; }
.article-meta-divider {
  width: 4px; height: 4px;
  background: rgba(223,125,111,.5);
  border-radius: 50%;
}
.article-meta svg { color: #DF7D6F; }

/* Featured image card */
.article-feature-img {
  background: #0a0606;
  padding: 30px 0;
}
.article-feature-img-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(223,125,111,.15);
  max-width: 1100px;
  margin: 0 auto;
}
.article-feature-img-card picture, .article-feature-img-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Article body */
.article-body {
  background: #0a0606;
  padding: 30px 0 70px;
}
.article-body-grid {
  max-width: 820px;
  margin: 0 auto;
}

/* Reuse the .service-prose patterns — same formatting rules. */
.article-prose {
  color: #d6c5b8;
  font-size: 17px;
  line-height: 1.85;
}
.article-prose p { margin: 0 0 18px; }
.article-prose h2 {
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  margin: 44px 0 14px;
  position: relative;
  padding-bottom: 12px;
}
.article-prose h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 50px;
  height: 3px;
  background: #DF7D6F;
  border-radius: 2px;
}
.article-prose h3 {
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.35;
  margin: 32px 0 12px;
}
.article-prose h4 {
  color: #DF7D6F;
  font-weight: 600;
  font-size: 18px;
  margin: 26px 0 10px;
}
.article-prose strong { color: #fff; font-weight: 600; }
.article-prose em { color: #fff; }
.article-prose a {
  color: #DF7D6F;
  text-decoration: none;
  border-bottom: 1px dashed rgba(223,125,111,.5);
}
.article-prose a:hover { color: #fff; border-bottom-color: #fff; }
.article-prose ul, .article-prose ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}
.article-prose ul li {
  position: relative;
  padding: 4px 0 4px 30px;
  color: #c8b9ad;
}
.article-prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  background: rgba(223,125,111,.18);
  border: 1px solid #DF7D6F;
  border-radius: 50%;
}
.article-prose ul li::after {
  content: "";
  position: absolute;
  left: 6px; top: 19px;
  width: 7px; height: 4px;
  border-left: 2px solid #DF7D6F;
  border-bottom: 2px solid #DF7D6F;
  transform: rotate(-45deg);
}
.article-prose ol { counter-reset: prose-ol; }
.article-prose ol li {
  position: relative;
  padding: 4px 0 4px 36px;
  counter-increment: prose-ol;
  color: #c8b9ad;
}
.article-prose ol li::before {
  content: counter(prose-ol);
  position: absolute;
  left: 0; top: 6px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #DF7D6F 0%, #c8634f 100%);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.article-prose blockquote {
  margin: 24px 0;
  padding: 22px 28px;
  background: rgba(223,125,111,.06);
  border-left: 4px solid #DF7D6F;
  border-radius: 0 12px 12px 0;
  color: #d6c5b8;
  font-style: italic;
  font-size: 18px;
  line-height: 1.7;
}
.article-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
  display: block;
}
.article-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: rgba(255,255,255,.02);
  border-radius: 10px;
  overflow: hidden;
}
.article-prose th, .article-prose td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(223,125,111,.15);
  text-align: left;
}
.article-prose th { background: rgba(223,125,111,.12); color: #fff; font-weight: 600; }
.article-prose td { color: #c8b9ad; }

/* Share row */
.article-share-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(223,125,111,.15);
  border-bottom: 1px solid rgba(223,125,111,.15);
  margin: 40px 0;
}
.article-share-row p {
  color: #b8a89c;
  font-size: 14px;
  margin: 0;
}
.article-share-icons {
  display: flex;
  gap: 8px;
}
.article-share-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(223,125,111,.2);
  color: #d6c5b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .2s ease;
}
.article-share-icon:hover { color: #fff; transform: translateY(-2px); border-color: transparent; text-decoration: none; }
.article-share-icon.fb:hover { background: #1877f2; }
.article-share-icon.ig:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.article-share-icon.yt:hover { background: #ff0000; }
.article-share-icon.tw:hover { background: #000; }
.article-share-icon.wa:hover { background: #25d366; }
.article-share-icon.copy:hover { background: #DF7D6F; }

/* Author byline at end */
.article-byline-end {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(160deg, #1a0e0d 0%, #0f0807 100%);
  border: 1px solid rgba(223,125,111,.18);
  border-radius: 14px;
  margin-top: 16px;
}
.article-byline-end img {
  width: 76px; height: 76px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #DF7D6F;
  flex-shrink: 0;
}
.article-byline-end h4 {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 4px;
}
.article-byline-end .credentials {
  color: #DF7D6F;
  font-size: 12.5px;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-byline-end p {
  color: #b8a89c;
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 10px;
}
.article-byline-end a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DF7D6F;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-byline-end a:hover { color: #fff; }
.article-byline-end a svg { transition: transform .25s ease; font-size: 11px; }
.article-byline-end a:hover svg { transform: translateX(3px); }

/* Related blogs */
.related-blogs {
  background: linear-gradient(180deg, #0a0606 0%, #150e0e 100%);
  padding: 60px 0;
  border-top: 1px solid rgba(223,125,111,.12);
}
.related-blogs-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 10px;
}
.related-blogs-head h2 {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
}
.related-blogs-head h2 .peach-color { color: #DF7D6F; }
.related-blogs-head a {
  color: #DF7D6F;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.related-blogs-head a:hover { color: #fff; }
.related-blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============ Mobile ============ */
@media (max-width: 991px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { min-height: 240px; }
  .blog-featured-body { padding: 28px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-blogs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .blog-listing { padding: 50px 0 60px; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-blogs-grid { grid-template-columns: 1fr; }
  .article-hero { padding: 110px 0 40px; }
  .article-feature-img { padding: 20px 0; }
  .article-body { padding: 20px 0 50px; }
  .article-prose { font-size: 16px; }
  .article-prose h2 { font-size: 24px; margin-top: 32px; }
  .article-prose h3 { font-size: 19px; }
  .article-byline-end { flex-direction: column; align-items: flex-start; }
  .related-blogs { padding: 40px 0; }
}
