/* ── HOME / LISTADO DE BLOG ── */

/* HERO */
.blog-hero {
  background: linear-gradient(135deg, #d46a3a 0%, #7a2d5a 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.1);
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.08);
}

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

.blog-hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.2rem;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.1s;
}

.blog-hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}

.blog-hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.blog-hero-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
}

.blog-hero-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 2rem;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}

.blog-hero-topic {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a2d5a;
  background: white;
  border: 0.5px solid rgba(122,45,90,0.28);
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 400;
}

/* ── SECCIÓN POSTS ── */
.blog-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 3rem 100px;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  border-bottom: 0.5px solid rgba(122,45,90,0.12);
  padding-bottom: 1.5rem;
}

.blog-header-left p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a3a6a;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.blog-header-left h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #7a2d5a;
  line-height: 1.2;
}

.blog-count {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: #b090a8;
  font-weight: 300;
}

/* POST DESTACADO */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid rgba(122,45,90,0.12);
  margin-bottom: 2rem;
  background: #fbf6f1;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(122,45,90,0.1);
}

.blog-featured-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.blog-featured-img-placeholder {
  width: 100%;
  min-height: 320px;
  background: #faeae0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-content {
  padding: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8a3a6a;
  background: #f0d0e4;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  align-self: flex-start;
}

.blog-featured-content h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #7a2d5a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.blog-featured-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #7a5068;
  line-height: 1.75;
  margin-bottom: 1.8rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: #b090a8;
  font-weight: 300;
}

.blog-meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #b090a8;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #d46a3a;
  margin-top: 1.5rem;
  transition: gap 0.2s;
}

.blog-read-more:hover { gap: 0.8rem; }

/* GRID POSTS */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  border-radius: 14px;
  overflow: hidden;
  border: 0.5px solid rgba(122,45,90,0.12);
  background: #fbf6f1;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(122,45,90,0.08);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: #f0d0e4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-content h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #7a2d5a;
  line-height: 1.25;
  margin-bottom: 0.7rem;
}

.blog-card-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: #7a5068;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.2rem;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(122,45,90,0.12);
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  color: #b090a8;
  font-weight: 300;
}

.blog-card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 0.5px solid rgba(122,45,90,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.blog-card:hover .blog-card-arrow {
  background: #d46a3a;
  border-color: #d46a3a;
}

.blog-card-arrow svg {
  width: 12px; height: 12px;
  stroke: #7a5068; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.2s;
}

.blog-card:hover .blog-card-arrow svg { stroke: white; }

/* ── CTA NEWSLETTER ── */
.newsletter-section {
  background: #7a2d5a;
  padding: 80px 3rem;
  text-align: center;
}

.newsletter-inner { max-width: 560px; margin: 0 auto; }

.newsletter-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0d0e4;
  margin-bottom: 1rem;
  font-weight: 400;
}

.newsletter-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: #f7f3ee;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.newsletter-body {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.newsletter-btn {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 40px;
  background: #d46a3a;
  color: white;
  transition: all 0.25s;
}

.newsletter-btn:hover {
  background: #c05a2a;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .blog-section { padding: 60px 1.5rem 80px; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-section { padding: 60px 1.5rem; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
