/* style/news.css */
.page-news {
  font-family: 'Noto Sans KR', sans-serif;
  color: #333333;
  background-color: #E5E5E5;
}

.page-news .hero-section {
  background: linear-gradient(135deg, #333333, #E5E5E5);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.page-news .content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.page-news .content-area article {
  flex: 1 1 300px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-news .content-area article:hover {
  transform: translateY(-10px);
}

.page-news .content-area article img {
  width: 100%;
  height: auto;
}

.page-news .content-area article h2 {
  font-size: 24px;
  margin: 20px 15px;
  color: #333333;
}

.page-news .content-area article p {
  margin: 0 15px 20px;
  line-height: 1.6;
}

.page-news .content-area article .btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  background-color: #333333;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: background-color 0.3s ease;
}

.page-news .content-area article .btn:hover {
  background-color: #1a1a1a;
}

.page-news .cta-section {
  background-color: #333333;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.page-news .cta-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.page-news .cta-section p {
  font-size: 18px;
  margin-bottom: 20px;
}

.page-news .cta-section .btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #E5E5E5;
  color: #333333;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-news .cta-section .btn:hover {
  background-color: #cccccc;
}

@media (max-width: 768px) {
  .page-news .content-area {
    flex-direction: column;
  }
}