@media screen and (min-width: 768px) {
  .blog-cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
  }
}
.blog-cards-wrapper .blog-card {
  cursor: pointer;
  margin-bottom: 45px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .blog-cards-wrapper .blog-card {
    width: 45%;
  }
}
@media screen and (min-width: 1200px) {
  .blog-cards-wrapper .blog-card {
    width: 30%;
  }
}
.blog-cards-wrapper .blog-card--img-container {
  width: 100%;
  height: 270px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .blog-cards-wrapper .blog-card--img-container {
    height: 350px;
  }
}
.blog-cards-wrapper .blog-card--img-container img {
  transition: all 0.3s ease-in-out;
}
.blog-cards-wrapper .blog-card--title {
  font-size: 20px;
  color: #4b6043;
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 81px;
}
.blog-cards-wrapper .blog-card--btn-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.blog-cards-wrapper .blog-card--btn {
  margin-top: 20px;
  margin-right: 10px;
  text-align: right;
  display: inline-block;
  color: #a68a64;
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  padding: 5px;
  overflow: hidden;
}
.blog-cards-wrapper .blog-card--btn::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5px;
  background-color: #a68a64;
  transition: all 0.3s ease-in-out;
  position: absolute;
  bottom: 2px;
  left: 0;
  transform: translateX(-100%);
  transition: 0.4s ease-in-out;
}
.blog-cards-wrapper .blog-card:hover .blog-card--img-container img {
  transform: scale(1.05);
}
.blog-cards-wrapper .blog-card:hover .blog-card--btn::before {
  transform: translateX(0);
}
.blog-cards-wrapper .blog-card--category {
  margin-bottom: 5px;
  color: #a68a64;
  text-transform: uppercase;
  font-size: 10px;
}
.blog-cards-wrapper .blog-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.hero {
  padding: 30px 40px 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 70px;
}

@media screen and (min-width: 1200px) {
  .hero-banner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
.hero-banner-wrapper .hero-banner-img {
  width: 100%;
  height: 300px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .hero-banner-wrapper .hero-banner-img {
    width: 600px;
    height: 491px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

.hero-banner-section {
  background: #f7f4ef;
  padding: 60px 0;
}

.categories-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 30px;
}
.categories-wrapper .category-container {
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.categories-wrapper .category-container .category-img-container {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 50%;
}
.categories-wrapper .category-container .category-heading {
  text-align: center;
}

.pagination-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper .pagination-number {
  font-size: 20px;
  color: #4b6043;
  cursor: pointer;
}
.pagination-wrapper .pagination-number--active {
  font-weight: bold;
}

.subpage-post-category-cards-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1400px) {
  .subpage-post-category-cards-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.subpage-post-category-cards-wrapper .post-category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
}
.subpage-post-category-cards-wrapper .post-category-card:not(:last-of-type) {
  margin-bottom: 50px;
}
@media screen and (min-width: 1400px) {
  .subpage-post-category-cards-wrapper .post-category-card {
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 45%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
  }
}
.subpage-post-category-cards-wrapper .post-category-card .post-category-img-container {
  overflow: hidden;
  height: 300px;
  width: 100%;
  max-width: 500px;
  flex-shrink: 0;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .subpage-post-category-cards-wrapper .post-category-card .post-category-img-container {
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 300px;
    width: 300px;
  }
}
.subpage-post-category-cards-wrapper .post-category-card .post-category-img-container img {
  transition: all 0.4s ease-in-out;
}
.subpage-post-category-cards-wrapper .post-category-card--text-content {
  padding-top: 30px;
}
.subpage-post-category-cards-wrapper .post-category-card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subpage-post-category-cards-wrapper .post-category-card:hover img {
  transform: scale(1.1);
}/*# sourceMappingURL=recipes.css.map */