@charset "UTF-8";
/*=============================
// 메인 페이지
==============================*/
/*  헤드라인 - overlay */
.post-img-content-stack.overlay .post-img > a:first-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
}
.post-img-content-stack.overlay .post-img img {
  min-height: 650px;
}
.post-img-content-stack.overlay .post-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  transition: all 0.5s ease;
  transform: translateY(0);
  padding: 25px;
  color: #fdfdfd;
}
.post-img-content-stack.overlay .post-content a {
  color: #fdfdfd;
}
.post-img-content-stack.overlay .post-content .post-title {
  font-size: var(--byme-view-title-font-size);
  margin-bottom: 10px;
}
.post-img-content-stack.overlay .post-content .post-title a {
  background-size: 0 2px;
}
.post-img-content-stack.overlay .post-content .post-title:hover {
  color: #fff;
}
.post-img-content-stack.overlay .post-content .post-title:hover a {
  background-size: 100% 2px;
}
.post-img-content-stack.overlay .post-content .post-title .post-info {
  color: #f0f0f0;
}

@media (max-width: 767px) {
  .post-img-content-stack.overlay .post-img img {
    min-height: 450px;
  }
  .post-img-content-stack.overlay .post-content {
    position: relative;
    color: #222;
  }
  .post-img-content-stack.overlay .post-content a {
    color: #222;
  }
  .post-img-content-stack.overlay .post-content .post-title:hover {
    color: #000;
  }
  .post-img-content-stack.overlay .post-content .post-title .post-info {
    color: #ddd;
  }
}
@media (max-width: 479px) {
  .post-img-content-stack.overlay .post-img img {
    max-height: 500px;
  }
  .post-img-content-stack.overlay .post-title {
    font-size: 1.75em;
  }
}
/*메인뉴스*/
.post-basic.main-news-list {
  border-bottom: 0;
}
.post-basic.main-news-list .post-img {
  width: 160px;
  height: auto;
  max-height: 200px;
  min-height: 90px;
  border: 0;
}
.post-basic.main-news-list .post-img > a:first-of-type img {
  height: auto;
  max-height: 130px;
  min-height: 110px;
}
.post-basic.main-news-list .post-content .post-title {
  font-size: 1.2em;
}

/*인기뉴스*/
.post-basic.hit-news-list {
  padding: 15px 0;
  gap: 20px;
}
.post-basic.hit-news-list .post-img {
  width: 60px;
  height: auto;
  max-height: 60px;
  min-height: 60px;
  border: 0;
}
.post-basic.hit-news-list .post-img > a:first-of-type img {
  height: auto;
  max-height: 60px;
  min-height: 60px;
}
.post-basic.hit-news-list .post-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  align-items: flex-start;
  justify-content: center;
}
.post-basic.hit-news-list .post-content .post-title {
  font-size: 1.1em;
  margin-bottom: 0;
}

@media (max-width: 479px) {
  .post-basic.hit-news-list {
    padding: 7px 0;
    min-height: 70px;
  }
}