/* Ingredient Section */
.blogs_sec {
  width: 100%;
  position: relative;
  padding-top: 8rem;

  background-image: url(../img/index/mobbackground.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;

  overflow: hidden;

  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 71px 1fr;
  min-height: calc(100vh - 371px);
  padding-left: 36px;
}
.categories-title-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100vw;
}
.categories-title {
  color: #a2a2a2;
  font-size: 24px;
}
.category-main {
  margin-bottom: 49px;
}
.category-name {
  font-size: 22px;
  line-height: 1.4;
  color: #b9823b;
  margin-bottom: 11px;
}
.category-name-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 90vw;
}
.blog-arrow {
  width: 36px;
  margin-right: 37px;
  transform: translateY(-4px);
}

.blog-intro {
  --blog-img: url('/img/index/cat.jpg');
  width: 281px;
  height: 185px;
  background-size: cover;
  border-radius: 22px;
  margin-right: 25px;
  background-color: transparent;
  background-image: var(--blog-img);
  background-blend-mode: multiply;
  display: block;
}
.blog-intro:hover {
  background-color: rgba(183, 137, 85, 0.59);
}
.blog-intro:hover .blog-title {
  color: #ffffff;
}
.blog-title-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.blog-title {
  padding: 24px 29px;

  font-size: 18px;
  color: transparent;
}
@media (min-width: 768px) {
  .blogs_sec {
    padding-top: 12rem;
    background-image: url(../img/index/webbackground.png);
    display: grid;
    grid-template-columns: 31% 69%;
    grid-template-rows: auto;
    min-height: calc(100vh - 371px);
    padding-left: 0;
  }
  .categories-title-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .categories-title {
    font-size: 33px;
  }
  .category-main {
    margin-bottom: 105px;
  }
  .category-name {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 13px;
  }

  .category-name-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .blog-arrow {
    width: 70px;
    margin-right: 40px;
    transform: translateY(-16px);
  }

  .blog-intro {
    width: 315px;
    height: 247px;
    border-radius: 22px;
    margin-right: 28px;
  }
  .blog-intro:hover {
    background-color: rgba(183, 137, 85, 0.59);
  }
  .blog-intro:hover .blog-title {
    color: #ffffff;
  }
  .blog-title-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
  .blog-title {
    padding: 27px 32px;

    font-size: 16px;
  }
}

@media (min-width: 1536px) {
  .categories-title {
    font-size: 50px;
  }
  .category-name {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .blog-arrow {
    margin-right: 60px;
  }
  .blog-intro {
    width: 473px;
    height: 372px;
    margin-right: 42px;
  }
  .blog-title {
    padding: 41px 48px;

    font-size: 25px;
  }
}

.categories-wrapper {
  margin-bottom: 136px;
  z-index: 10;
}
