.elementor-674 .elementor-element.elementor-element-d41d077{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-58cf35b *//* 기본 설정 */
.news-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #333;
}

/* 그리드 레이아웃: 화면 크기에 따라 1~3열 자동 조정 */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* 개별 카드 스타일 */
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.news-card:hover {
  transform: translateY(-10px); /* 마우스 올리면 살짝 들림 */
}

/* 이미지 영역 */
.news-image {
  position: relative;
  height: 200px;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #007bff;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* 카드 텍스트 영역 */
.news-body {
  padding: 25px;
}
.date {
  font-size: 0.85rem;
  color: #888;
}
.title {
  font-size: 1.25rem;
  margin: 10px 0;
  color: #222;
  line-height: 1.4;
}
.excerpt {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  /* 텍스트 세 줄 제한 (생략 기호) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
  font-size: 0.9rem;
}/* End custom CSS */