.news-section {
  background-color: #ffffff;
  padding: 40px 15px 60px;
  text-align: center;
  margin-bottom: 0px;

  /* ✅ Tambahkan frame biru di seluruh section */
  border: 20px solid #003366;
  box-sizing: border-box;
}

.news-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  transform: scale(0.95); /* ✅ diperkecil sedikit tapi tetap wrap */
  transform-origin: top center;
}

.news-title {
  font-size: 1.8rem; /* ✅ dikecilkan */
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
}

/* ===== CONTAINER ===== */
.news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

/* ===== CARD ===== */
.news-card {
  flex: 1 1 260px;
  max-width: 300px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

/* ===== FRAME GAMBAR ===== */
.news-img-frame {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #fff;
}

.news-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

/* ===== TEKS ===== */
.news-card p {
  padding: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}
