.h1-stemap{
	font-size:20px;
	text-align:left;
}

.section-title {
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.0;
}

/* =========================================
   News Search UI
========================================= */

.news-search-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 50px;
}

.news-search-form {
  width: 100%;
  max-width: 360px;
  position: relative;
}

.news-search-input {
  width: 100%;
  height: 54px;
  border: 1px solid #dcdcdc;
  background: #fff;
  padding: 0 56px 0 18px;
  font-size: 15px;
  color: #111;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
}

.news-search-input:focus {
  border-color: #1d3557;
}

.news-search-input::placeholder {
  color: #999;
}

.news-search-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
}

.news-search-btn svg {
  width: 20px;
  height: 20px;
}

/* Mobile */
@media (max-width: 767px) {

  .news-search-wrap {
    margin-bottom: 34px;
    justify-content: center;
  }

  .news-search-form {
    max-width: 100%;
  }

  .news-search-input {
    height: 48px;
    font-size: 14px;
    padding-left: 14px;
    padding-right: 50px;
  }

  .news-search-btn {
    width: 48px;
    height: 48px;
  }
}

/* =========================================
   Recent Posts - 썸네일 + 제목만 표시
========================================= */

/* 작성자 / 카테고리 / 메타 정보 숨김 */
.blog-recent .meta,
.blog-recent .post-meta,
.blog-recent .grav-wrap,
.blog-recent .meta-category,
.blog-recent .article-content-wrap .meta {
  display: none !important;
}

/* 본문 요약 숨김 */
.blog-recent .excerpt,
.blog-recent .post-content,
.blog-recent .article-content-wrap > p {
  display: none !important;
}

/* 제목만 정리 */
.blog-recent .title,
.blog-recent .post-header .title {
  display: block !important;
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
  margin: 22px 0 0 0 !important;
  color: #222 !important;
}

/* 텍스트 영역 여백 축소 */
.blog-recent .article-content-wrap {
  padding-top: 18px !important;
  padding-bottom: 0 !important;
}

/* =========================================
   POST Thumbnail Radius Final
========================================= */

.news-post-grid .blog-recent .post-featured-img,
.news-post-grid .blog-recent .featured-image-wrap {
  border-radius: 18px !important;
  overflow: hidden !important;
}

.news-post-grid .blog-recent img {
  border-radius: 18px !important;
  transition: transform 0.4s ease !important;
}

.news-post-grid .blog-recent article:hover img {
  transform: scale(1.03);
}

.news-post-grid .blog-recent .col {
  overflow: hidden;
}

.news-post-grid .blog-recent .col img {
  border-radius: 18px !important;
  transition: transform 0.4s ease !important;
}

.news-post-grid .blog-recent .col:hover img {
  transform: scale(1.03);
}

