/* ===== Blog Landing Page ===== */
/* All selectors namespaced under .blp- to avoid conflicts with site.css / blog-pages.css */

/* ---- Hero ---- */
.blp-hero {
  background: #4A1717;
  padding: 8rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, #EBE6DA, transparent);
  pointer-events: none;
}

.blp-hero-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blp-hero-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #BB8737;
  margin-bottom: 1rem;
}

.blp-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #F7EDE0;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  line-height: 1.15;
}

.blp-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #E5D8C4;
  line-height: 1.75;
  margin: 0;
  opacity: 0.92;
}

/* ---- Cards Section ---- */
.blp-section {
  background: #EBE6DA;
  padding: 3.5rem 2rem 5rem;
}

.blp-list {
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

/* ---- Card ---- */
.blp-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  background: #F7EDE0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(62, 31, 18, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  min-height: 280px;
}

.blp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(62, 31, 18, 0.13);
}

/* Card Image */
.blp-card-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.blp-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.blp-card:hover .blp-card-img img {
  transform: scale(1.05);
}

/* Card Body */
.blp-card-body {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blp-tag {
  display: inline-block;
  background: #4A1717;
  color: #F7EDE0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3em 0.85em;
  border-radius: 20px;
  margin-bottom: 0.85rem;
  width: fit-content;
  line-height: 1.6;
}

.blp-card-body h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: #3E1F12;
  margin: 0 0 0.55rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.blp-card-body h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blp-card-body h2 a:hover {
  color: #BB8737;
}

.blp-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  color: #6E4E3D;
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.blp-meta span + span::before {
  content: '\00B7';
  margin: 0 0.45em;
  opacity: 0.5;
}

.blp-card-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  color: #6E4E3D;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blp-read {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #BB8737;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, letter-spacing 0.25s ease;
  margin-top: auto;
}

.blp-read::after {
  content: ' \2192';
  display: inline;
  transition: margin-left 0.25s ease;
  margin-left: 0;
}

.blp-read:hover {
  color: #4A1717;
}

.blp-read:hover::after {
  margin-left: 4px;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .blp-card {
    grid-template-columns: 300px 1fr;
    min-height: 260px;
  }

  .blp-card-img {
    min-height: 260px;
  }
}

@media (max-width: 700px) {
  .blp-hero {
    padding: 7rem 1.5rem 2.5rem;
  }

  .blp-hero::after {
    height: 50px;
  }

  .blp-section {
    padding: 2.5rem 1.25rem 3.5rem;
  }

  .blp-list {
    gap: 1.75rem;
  }

  .blp-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .blp-card-img {
    min-height: 210px;
    max-height: 240px;
  }

  .blp-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
  }

  .blp-card-body h2 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blp-hero {
    padding: 6.5rem 1rem 2rem;
  }

  .blp-hero p {
    font-size: 0.93rem;
  }

  .blp-section {
    padding: 2rem 1rem 3rem;
  }

  .blp-card-img {
    min-height: 185px;
    max-height: 210px;
  }

  .blp-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .blp-card-body p {
    font-size: 0.88rem;
  }
}
