.cont-side-main-hero{
  display: flex;
  position: relative;
  height: 100%;
  width: 100%;
  flex-direction: column;

}
.cont-side-main{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  position: relative;
  gap: 1rem;
  height: 100%;
}
.main-hero{
  width: 100%;
}

.brewing-archive {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* Estilos del header */
.section-header {
  /* background-image: url('../img/header.jpg'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 2rem;
  color: white;
  position: relative;
  /*text-align: center;*/
  /*margin-bottom: 3rem;*/
}

/* Overlay oscuro elegante */
.section-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.1));
  z-index: 0;
}

.section-header h1,
.section-header p {
  position: relative;
  z-index: 1;
}

.section-header h1 {
    font-size: 4rem;
    color: wheat;
    margin: 0;
    padding: 0 0 0 5rem;
}

.section-header p {
    font-size: 2rem;
    color: white;
    margin: 0;
    padding: 0 0 0 5rem;
}


/* Artículos */
.post-card {
  background: #fff;
  margin-bottom: 3rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.07);
}

.post-card__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.post-card__content {
  text-align: center;
  padding: 2rem;
}

.post-card__title {
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

.post-card__meta {
  font-size: .9rem;
  color: #777;
  margin-bottom: 1rem;
}

.post-card__excerpt {
  line-height: 1.6;
  margin-bottom: 1.6rem;
}

.post-card__btn {
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #f97316;
  border-bottom: 2px solid #f97316;
}

.post-card__btn:hover {
  color: #000;
  border-color: #000;
}

/* Paginación */
.pagination {
  text-align: center;
  margin-top: 3rem;
}

.pagination .page-numbers {
  padding: 6px 10px;
  margin: 0 4px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid #ddd;
}

.pagination .current {
  background: #000;
  color: #fff;
  border-color: #000;
}
