/* ── BLOG STYLES ── */
/* Inherits variables from viluma-kine.css: --creme, --gold, --brun, --brun-dark, --white */

/* ── BLOG HERO ── */
.blog-hero {
  padding: 140px 48px 64px;
  background: var(--creme);
  text-align: center;
}
.blog-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--brun-dark);
  line-height: 1.15;
  margin: 16px 0;
}
.blog-hero h1 em {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  margin-top: 4px;
}
.blog-hero .desc {
  font-size: 16px;
  color: #8a6a50;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── BREADCRUMB ── */
.blog-article-header .breadcrumb,
.blog-hero .breadcrumb {
  font-size: 13px;
  color: #8a6a50;
  letter-spacing: 0.03em;
}
.blog-article-header .breadcrumb a,
.blog-hero .breadcrumb a {
  color: var(--brun);
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-article-header .breadcrumb a:hover,
.blog-hero .breadcrumb a:hover {
  opacity: 0.6;
}

/* ── BLOG LISTING ── */
.blog-listing {
  padding: 48px 48px 80px;
  background: var(--white);
}
.blog-listing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── BLOG CARDS ── */
.blog-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.blog-card {
  background: var(--creme);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--brun-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(74, 36, 2, 0.08);
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}
.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brun-dark);
  line-height: 1.3;
  margin: 8px 0;
}
.blog-card-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--brun-dark);
  line-height: 1.3;
  margin: 8px 0;
}
.blog-card-body p {
  font-size: 14px;
  color: #8a6a50;
  line-height: 1.6;
  flex: 1;
}
.blog-card-date {
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 12px;
}

/* ── BLOG TAG ── */
.blog-tag {
  display: inline-block;
  background: var(--brun);
  color: var(--creme);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
}
.blog-tag-outline {
  background: transparent;
  color: var(--brun);
  border: 1px solid var(--gold);
}

/* ── FEATURED CARD ── */
.blog-featured {
  margin-bottom: 16px;
}
.blog-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
}
.blog-card-featured .blog-card-img {
  aspect-ratio: auto;
  min-height: 320px;
  border-radius: 20px 0 0 20px;
}
.blog-card-featured .blog-card-body {
  padding: 40px;
  justify-content: center;
}

/* ── ARTICLE PAGE ── */
.blog-article-header {
  padding: 140px 48px 48px;
  background: var(--creme);
  text-align: center;
}
.blog-article-header-inner {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--brun-dark);
  line-height: 1.2;
  margin: 16px 0;
}
.blog-article-categories {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.blog-article-meta {
  font-size: 14px;
  color: #8a6a50;
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.blog-article-author {
  font-weight: 600;
  color: var(--brun);
}
.blog-article-date {
  color: var(--gold);
}

/* ── ARTICLE COVER ── */
.blog-article-cover {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 48px;
}
.blog-article-cover img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ── ARTICLE BODY ── */
.blog-article-body {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 48px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--brun-dark);
}
.blog-article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brun-dark);
  margin: 48px 0 16px;
}
.blog-article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--brun-dark);
  margin: 36px 0 12px;
}
.blog-article-body p {
  margin-bottom: 20px;
}
.blog-article-body ul,
.blog-article-body ol {
  margin: 16px 0 24px 24px;
}
.blog-article-body li {
  margin-bottom: 8px;
}
.blog-article-body blockquote {
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: #8a6a50;
}
.blog-article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}
.blog-article-body a {
  color: var(--brun);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.blog-article-body a:hover {
  opacity: 0.7;
}

/* ── ARTICLE TAGS ── */
.blog-article-tags {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 0 48px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ── RELATED ARTICLES ── */
.blog-related {
  background: var(--white);
  padding: 64px 48px;
}
.blog-related-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.blog-related h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--brun-dark);
  margin-bottom: 8px;
}

/* ── BLOG CTA ── */
.blog-cta {
  text-align: center;
  padding: 64px 48px;
  background: var(--brun-dark);
}
.blog-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--creme);
  margin-bottom: 24px;
}
.blog-cta .cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.blog-cta .cta-dark {
  display: inline-block;
  background: var(--gold);
  color: var(--brun-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s, transform 0.2s;
}
.blog-cta .cta-dark:hover {
  background: #c9a96f;
  transform: translateY(-1px);
}
.blog-cta .cta-phone {
  color: var(--creme);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.blog-cta .cta-phone:hover {
  opacity: 0.7;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .blog-hero {
    padding: 120px 24px 48px;
  }
  .blog-hero h1 {
    font-size: 32px;
  }
  .blog-hero h1 em {
    font-size: 22px;
  }
  .blog-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .blog-listing {
    padding: 32px 24px 56px;
  }
  .blog-card-featured {
    grid-template-columns: 1fr;
  }
  .blog-card-featured .blog-card-img {
    min-height: 200px;
    border-radius: 16px 16px 0 0;
  }
  .blog-card-featured .blog-card-body {
    padding: 24px;
  }
  .blog-article-header {
    padding: 120px 24px 32px;
  }
  .blog-article-header h1 {
    font-size: 28px;
  }
  .blog-article-cover {
    padding: 0 24px;
  }
  .blog-article-body {
    padding: 0 24px;
    font-size: 16px;
  }
  .blog-article-tags {
    padding: 0 24px;
  }
  .blog-related {
    padding: 48px 24px;
  }
  .blog-cta {
    padding: 48px 24px;
  }
  .blog-cta h2 {
    font-size: 22px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
