body.blog .page-header {
  max-width: 768px;
  padding: 200px var(--gutter) 0;
}
body.blog .page-header .header-title {
  font-size: 4rem;
  font-weight: 500;
  margin-bottom: 20px;
}
body.blog .page-header .header-text {
  font-size: 1.25rem;
}

body.blog .blog-grid {
  padding: 0 var(--gutter);
  margin: 90px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1440px;
}
.blog-grid .blog-card {
  border: 4px solid var(--orange);
  border-radius: 24px;
  padding: 18px 18px 30px;
  color: currentColor;
  text-decoration: none;
}
.blog-card .card-image {
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.blog-card .card-image img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}
.blog-card .card-content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}
.blog-card .card-title {
  font-size: 18px;
  font-weight: 500;
  flex: 1 1 auto;
}
.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.news {
  padding-bottom: 96px;
}

.box-news-wrapper {
  display: grid;
  gap: 76px;
}
.inner-box {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 37px;
}
.inner-box img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.box-news {
  background-color: var(--beige);
  border-radius: 15px;
}
.inner-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.inner-text h4 {
  font-size: 16px;
}
.inner-text p {
  font-size: 14px;
  font-weight: 300;
}
.button-wrapper {
  width: fit-content;
}
.button-wrapper a {
  text-decoration: none;
  color: var(--black);
}
.news-button {
  padding: 12px 32px;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 10px;
  border: 1px solid currentColor;
  color: var(--black);
  display: flex;
  align-items: center;
  font-size: 12px;
  gap: 12px;
  font-family: "Gantari";
  cursor: pointer;
  transition: all 300ms;
}
.news-button:hover {
  background-color: var(--black);
  color: white;
  border-color: var(--black);
}
.news-button:hover svg path {
  stroke: white;
}

.news-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 60px;
}
.news-wrapper .intro-wrapper p {
  padding-bottom: 0;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .news-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .news-wrapper .right-col {
    display: flex;
    justify-content: end;
  }
  body.blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inner-box img {
    width: 100%;
    height: 100%;
  }
  .inner-text p {
    font-size: 16px;
  }
  .inner-text h4 {
    font-size: 18px;
  }
  .box-news-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
  }
  .news-button {
    font-size: 14px;
    gap: 14px;
  }
}
@media (min-width: 920px) {
  body.blog .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-card .card-title {
    font-size: 20px;
    flex: 0 1 50%;
  }
  .inner-box {
    display: flex;
    flex-direction: row;
    padding: 24px;
    gap: 37px;
  }
  .inner-box img {
    width: 150px;
    height: 150px;
  }
  .inner-text h4 {
    font-size: 20px;
  }
  .inner-text p {
    font-size: 16px;
  }
  .inner-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
  }
  .news-button {
    font-size: 16px;
    gap: 16px;
  }
}
@media (min-width: 1280px) {
}
@media (min-width: 1536px) {
}
