@charset "UTF-8";
/*=================================================
      블로그 최신글 (네이버 블로그 RSS)
=================================================*/
#sec_blog {
  background-color: #fff;
}
#sec_blog .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#sec_blog .blog-list li {
  width: calc(25% - 15px);
}
@media screen and (max-width: 991.98px) {
  #sec_blog .blog-list li {
    width: calc(50% - 10px);
  }
}
#sec_blog .blog-list a {
  display: block;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
#sec_blog .blog-list a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(44, 85, 165, 0.12);
}
#sec_blog .blog-list .thumb {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  background-color: #eef2f8;
  overflow: hidden;
}
#sec_blog .blog-list .thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sec_blog .blog-list .thumb.no-img:after {
  content: "풀아치덴탈테크놀로지";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  color: #b3cde0;
}
#sec_blog .blog-list .text {
  padding: 18px 20px 22px;
}
#sec_blog .blog-list .tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8em;
  color: #222;
}
@media screen and (max-width: 991.98px) {
  #sec_blog .blog-list .tit {
    font-size: 16px;
  }
}
#sec_blog .blog-list .desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #6f6f6f;
}
#sec_blog .blog-list .date {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #bababa;
}
#sec_blog .blog-more {
  margin-top: 40px;
  text-align: center;
}
#sec_blog .blog-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 36px;
  border-radius: 50px;
  background-color: #2c55a5;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  transition: background-color 0.2s ease;
}
#sec_blog .blog-more a:hover {
  background-color: #1f3f7d;
}
@media screen and (max-width: 991.98px) {
  #sec_blog .blog-more {
    margin-top: 25px;
  }
  #sec_blog .blog-more a {
    min-width: 180px;
    padding: 13px 28px;
    font-size: 15px;
  }
}
#sec_blog .blog-error {
  padding: 40px 0;
  text-align: center;
  font-size: 15px;
  color: #a3a3a3;
  line-height: 1.6;
}

/* 모바일: 제작 기록 카드 2열 */
@media screen and (max-width: 543.98px) {
  #sec_blog .blog-list {
    gap: 12px;
  }
  #sec_blog .blog-list li {
    width: calc(50% - 6px);
  }
  #sec_blog .blog-list .text {
    padding: 12px 12px 14px;
  }
  #sec_blog .blog-list .tit {
    font-size: 14px;
    min-height: 2.8em;
  }
  #sec_blog .blog-list .desc {
    -webkit-line-clamp: 1;
    margin-top: 6px;
    font-size: 12px;
  }
  #sec_blog .blog-list .date {
    margin-top: 8px;
    font-size: 11px;
  }
}
