.news-section {
  background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
  padding: 60px 20px;
}

.news-header {
  text-align: center;
  margin-bottom: 40px;
}

.news-header h2 {
  font-size: 2rem;
  color: #003f6d;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-line {
  border: none;
  border-top: 1px solid #ccc;
  width: 90%;
  max-width: 800px;
  margin: 0 auto 40px;
}

.news-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.news-card {
  display: flex;
  flex-direction: column;
  background-color: #f4fafe;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  border: 1px solid #d7e6f0;
}

.news-card.reverse {
  flex-direction: column-reverse;
}

.news-image {
  flex: 1 1 40%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

.news-content {
  flex: 1 1 60%;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #005b96;
}

.news-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.news-date {
  font-size: 0.85rem;
  color: #888;
  margin-top: 12px;
}

.news-pagination {
  position: relative;
  margin: 60px auto 0;
  width: 100%;
  max-width: 720px;
  height: 44px;
}

.news-pagination::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #d7e6f0;
}

.news-pagination .arrow {
  position: absolute;
  top: 12px;
  font-size: 32px;
  text-decoration: none;
  color: #005b96;
  transition: color 0.3s ease;
}

.news-pagination .arrow:hover {
  color: #003f6d;
}

.news-pagination .prev {
  left: 0;
}

.news-pagination .next {
  right: 0;
}

.news-pagination .prev::before {
  content: "\2190";
}

.news-pagination .next::before {
  content: "\2192";
}

@media (min-width: 768px) {
  .news-card {
    flex-direction: row;
  }
  .news-card.reverse {
    flex-direction: row-reverse;
  }
}
