/* ---------------------------------- */
/* News & Announcements page — professional redesign
------------------------------------- */
.news-section {
  background: #f7f6fb;
  padding: 60px 0 90px;
}

/* Empty state */
.news-empty {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.08);
  padding: 80px 30px;
}

.news-empty i {
  font-size: 48px;
  color: #d63031;
  opacity: 0.5;
  margin-bottom: 18px;
  display: inline-block;
}

.news-empty h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e1629;
  margin: 0 0 10px;
}

.news-empty p {
  color: #767676;
  margin: 0;
}

/* Card grid */
.news-grid {
  margin-top: 10px;
}

.news-col {
  display: flex;
  margin-bottom: 28px;
}

.news-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(20, 20, 40, 0.16);
}

.news-card-img {
  display: block;
  height: 210px;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.08);
}

.news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.news-card-date {
  font-size: 12.5px;
  font-weight: 700;
  color: #d63031;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.news-card-date i {
  margin-right: 6px;
}

.news-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1e1629;
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-body h3 a {
  color: inherit;
}

.news-card-body p {
  color: #767676;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.news-card-btn {
  margin-top: auto;
  color: #d63031;
  font-weight: 700;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.news-card-btn i {
  margin-left: 4px;
  transition: margin-left 0.2s ease;
}

.news-card-btn:hover {
  color: #b3271f;
}

.news-card-btn:hover i {
  margin-left: 8px;
}

/* Single article */
.news-article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(20, 20, 40, 0.08);
}

.news-article-img {
  height: 380px;
  overflow: hidden;
}

.news-article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article-body {
  padding: 40px;
}

.news-article-date {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #d63031;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
}

.news-article-date i {
  margin-right: 6px;
}

.news-article-body h1 {
  font-size: 30px;
  font-weight: 800;
  color: #1e1629;
  margin: 0 0 24px;
  line-height: 1.3;
}

.news-article-content {
  color: #555;
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 30px;
}

.news-article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.news-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #e8483b, #d63031);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(214, 48, 49, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-back-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(214, 48, 49, 0.38);
}

@media (max-width: 767px) {
  .news-section {
    padding: 40px 0 60px;
  }

  .news-article-img {
    height: 220px;
  }

  .news-article-body {
    padding: 26px;
  }

  .news-article-body h1 {
    font-size: 22px;
  }
}
