

/* =========================
   HEADER
========================= */
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
}

.divider {
  width: 70px;
  height: 3px;
  background: var(--accent-red);
  margin: 10px auto 30px;
  border-radius: 5px;
}

/* =========================
   CARD
========================= */
.news-card {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   TABLE
========================= */
.news-table {
  width: 100%;
  border-collapse: collapse;
}

/* HEADER */
.news-table thead {
  background: var(--primary-blue);
  color: #fff;
}

.news-table th {
  padding: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* BODY */
.news-table td {
  padding: 14px;
  font-size: 14px;
  color: #444;
}

/* ROW */
.news-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: 0.3s;
}

/* STRIPED */
.news-table tbody tr:nth-child(even) {
  background: #f9fafc;
}

/* HOVER */
.news-table tbody tr:hover {
  background: #eef2ff;
  transform: scale(1.01);
}

/* =========================
   COLUMN COLORS
========================= */
.news-table td:first-child {
  font-weight: 600;
  color: var(--primary-blue);
}

.news-table td:nth-child(2) {
  color: var(--accent-red);
  font-weight: 500;
}

/* =========================
   BUTTON
========================= */
.btn-view {
  padding: 6px 14px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view:hover {
  background: var(--accent-red);
  color: #fff;
}
.table-responsive {
  width: 100%;
  overflow-x: auto !important;
  display: block;
}

/* Prevent table from shrinking */
.news-table {
  width: 100%;
  min-width: 900px; /* ðŸ”¥ KEY FIX */
  border-collapse: collapse;
}

/* Optional: smooth scroll */
.table-responsive {
  -webkit-overflow-scrolling: touch;
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .section-header h2 {
    font-size: 24px;
  }

  .news-card {
    padding: 15px;
  }

  .news-table th,
  .news-table td {
    font-size: 12px;
    padding: 10px;
  }

}