.blog-header-1 {
  background-image: url('../images/hero/header-2.png');
  background-image: image-set(
    url('../images/hero/header-2-desktop.webp') type('image/webp'),
    url('../images/hero/header-2.png') type('image/png')
  );
  aspect-ratio: 5760 / 1247;
}

@media (max-width: 900px) {
  .blog-header-1 {
    background-image: url('../images/hero/header-2-mobile.webp');
    background-image: image-set(
      url('../images/hero/header-2-mobile.webp') type('image/webp')
    );
    aspect-ratio: auto;
    min-height: 220px;
    padding: 0;
  }
}

.blog-content-1 {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(16px, 2vw, 32px) clamp(20px, 6vw, 80px) clamp(48px, 6vw, 96px);
  font-family: "Fraunces", serif;
}

.blog-content-1__title {
  margin: 0 0 clamp(20px, 2.5vw, 36px);
  text-align: center;
  color: #613b21;
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 45px);
  line-height: 109%;
}

/* ===== Featured (card destaque horizontal) ===== */
.blog-content-1__featured {
  display: grid;
  grid-template-columns: 454fr 580fr;
  align-items: stretch;
  background: #ffe2bc;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: clamp(12px, 1.2vw, 20px);
}

.blog-content-1__featured-image {
  display: block;
  line-height: 0;
  aspect-ratio: 454 / 287;
}

.blog-content-1__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content-1__featured-body {
  padding: clamp(28px, 3vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.blog-content-1__featured-title {
  margin: 0;
  color: #613b21;
  font-weight: 500;
  font-size: 25px;
  line-height: 92.9%;
  letter-spacing: 0.01em;
}

.blog-content-1__featured-excerpt {
  margin: 0;
  color: #626262;
  font-weight: 400;
  font-size: 14px;
  line-height: 137.4%;
}

/* ===== Data (calendário) ===== */
.blog-content-1__date {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #cf8c58;
  font-weight: 700;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-content-1__date img {
  width: 24px;
  height: 24px;
  display: block;
}

/* ===== Botão VER MAIS ===== */
.blog-content-1__btn {
  align-self: flex-start;
  margin-top: 4px;
  min-width: 127px;
  height: 41px;
  padding: 0 15px;
  background: #613b21;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.blog-content-1__btn:hover { opacity: 0.88; }

/* ===== Botão "mais notícias" (pill outlined) ===== */
.blog-content-1__subtitle-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 56px);
}

.blog-content-1__subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 207px;
  height: 54px;
  padding: 0 24px;
  border: 1.5px solid #613b21;
  border-radius: 14px;
  background: transparent;
  color: #613b21;
  font-family: inherit;
  font-weight: 700;
  font-size: 15px;
  line-height: 109%;
  letter-spacing: normal;
  text-transform: uppercase;
  margin: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.blog-content-1__subtitle:hover {
  background: #613b21;
  color: #ffffff;
}

.blog-content-1__subtitle:disabled {
  opacity: 0.6;
  cursor: wait;
}

[data-blog-more-wrap][hidden] {
  display: none !important;
}

/* ===== Grid de cards ===== */
.blog-content-1__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.2vw, 20px);
}

.blog-content-1__card {
  display: flex;
  flex-direction: column;
  background: #ffe2bc;
  border-radius: 18px;
  overflow: hidden;
}

.blog-content-1__card-image {
  display: block;
  line-height: 0;
  aspect-ratio: 334 / 206;
}

.blog-content-1__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content-1__card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.blog-content-1__card-title {
  margin: 0;
  color: #613b21;
  font-weight: 500;
  font-size: 25px;
  line-height: 92.9%;
  letter-spacing: 0.01em;
}

.blog-content-1__card-excerpt {
  margin: 0;
  color: #626262;
  font-weight: 400;
  font-size: 14px;
  line-height: 137.4%;
  flex: 1;
}

@media (max-width: 900px) {
  .blog-content-1__featured { grid-template-columns: 1fr; }
  .blog-content-1__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .blog-content-1__grid { grid-template-columns: 1fr; }
  .blog-content-1__title { font-size: 32px; }
}
