.recommend_reading {
  width: 100%;
  padding: 0 15px;
}
.recommend_reading .container {
  padding: 80px 0 80px 0;
}
.recommend_reading h2 {
  margin-bottom: 40px;
}
.recommend_reading_items {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.recommend_reading_item {
  width: calc(100% / 3 - 40px / 3);
  background-color: white;
  cursor: pointer;
  box-shadow: 0px 5px 80px rgba(161, 189, 225, 0.21);
}
.recommend_reading_item_img {
  width: 100%;
  position: relative;
}
.recommend_reading_item_img img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
  aspect-ratio: 3/2;
}
.recommend_reading_item_tag {
  position: absolute;
  left: 15px;
  bottom: 10px;
  opacity: 0.9;
  border-radius: 20px 0px;
  padding: 10px;
  color: white;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
  background-color: #9c7130;
}

.recommend_reading_item_content {
  padding: 15px 15px 30px 15px;
}
.recommend_reading_item_title {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #2d4744;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  transition: 0.5s color;
}
.recommend_reading_item_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recommend_reading_item_wrap span {
  height: 10px;
  width: 1px;
  background-color: #9d8d75;
  display: block;
}
.recommend_reading_item_date_author {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: #9d8d75;
  display: flex;
  gap: 2px;
}
.recommend_reading_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  font-size: calc(15px + 3 * ((100vw - 370px) / (1920 - 370)));
  line-height: 22px;
  color: #243d3a;
  margin-top: 40px;
  text-decoration: none;
}

@media (hover: hover) {
  .recommend_reading_item_tag {
    backdrop-filter: blur(300px);
  }

  .recommend_reading_item_title:hover {
    color: #967340;
  }
  .recommend_reading_btn:hover {
    text-decoration: underline;
  }
  .recommend_reading_item_tag span:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 800px) {
  .recommend_reading_items {
    gap: 20px;
  }
  .recommend_reading_item {
    width: calc(100% / 2 - 10px);
  }
  .recommend_reading_item_tag {
    left: 10px;
  }
  .recommend_reading_item_content {
    padding: 10px 10px 20px 10px;
  }
  .recommend_reading h2 {
    margin-bottom: 30px;
  }
  .recommend_reading .container {
    padding: 60px 0 80px 0;
  }
  .recommend_reading_btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .recommend_reading .container {
    padding: 40px 0 80px 0;
  }
  .recommend_reading_item {
    width: 100%;
  }
}
