.blog-v1-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px 60px;
}

.blog-v1-hero {
  margin: 0 auto 51px;
}

.blog-v1-hero-figure,
.blog-v1-featured-figure,
.blog-v1-recent-figure {
  margin: 0;
}

.blog-v1-hero-figure {
  overflow: hidden;
  background: #c6d2cb;
}

.blog-v1-hero-image,
.blog-v1-featured-image,
.blog-v1-recent-image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.blog-v1-featured-image,
.blog-v1-recent-image {
  height: 100%;
}

.blog-v1-hero-image {
  filter: saturate(0.75) contrast(1.05);
}

.blog-v1-featured {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: stretch;
  margin: 0 110px 0;
  height: 478px;
}

.blog-v1-featured-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.blog-v1-featured-link {
  display: block;
  position: relative;
  height: 100%;
  min-height: 420px;
  text-decoration: none;
  color: #fff;
}

.blog-v1-featured-figure {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blog-v1-featured-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 17, 20, 0.08) 0%,
    rgba(11, 17, 20, 0.28) 100%
  );
}

.blog-v1-featured-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 45px;
  z-index: 1;
  padding: 20px 46px 46px;
  background: linear-gradient(
    180deg,
    rgba(12, 17, 16, 0) 0%,
    rgba(12, 17, 16, 0.8) 100%
  );
  justify-content: end;
  display: flex;
  flex-direction: column;
}

.blog-v1-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.blog-v1-date-icon {
  width: 14px;
  height: 14px;
}

.blog-v1-featured-title {
  max-width: 374px;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 34px;
  color: #ffffff;
  margin: 7px 0;
}

.blog-v1-featured-text {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #ffffff;
}

.blog-v1-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 35px 30px 35px 57px;
  background: #f6f6f6;
  border-radius: 10px;
  margin-left: -27px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.blog-v1-recent-posts .blog-v1-recent-item {
  flex: 0 0 auto;
}

.blog-v1-recent-link {
  display: grid;
  grid-template-columns: 77px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.blog-v1-recent-figure {
  width: 77px;
  height: 77px;
  overflow: hidden;
  border-radius: 7px;
  background: #eaeaea;
}

.blog-v1-recent-content {
  display: flex;
  flex-direction: column;
}

.blog-v1-recent-title {
  margin: 0;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

.blog-v1-recent-posts .blog-v1-date {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 26px;
  color: #9a9a9a;
}

@media (max-width: 1024px) {
  .blog-v1-page {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 6px;
  }

  .blog-v1-hero {
    margin-bottom: 5px;
  }

  .blog-v1-featured {
    grid-template-columns: 1fr;
    margin: 0;
    height: auto;
  }

  .blog-v1-featured-body {
    padding: 20px 21px 23px;
  }

  .blog-v1-featured-card {
    margin-bottom: 5px;
  }

  .blog-v1-recent-posts {
    margin-left: 0;
    padding-left: 27px;
    padding-right: 27px;
    max-height: 420px;
  }

  .blog-v1-recent-link {
    grid-template-columns: 77px minmax(0, 1fr);
    gap: 13px;
  }
}
