.news-subheader {
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 31, 56, 0.92) 0%,
    rgba(0, 31, 56, 0.75) 45%,
    rgba(0, 31, 56, 0.4) 100%
  );
  z-index: 1;
}

.media-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5c542; /* Alleem yellow */
  margin-bottom: 14px;
  font-weight: 600;
}

.news-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.news-subtitle {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 24px;
}

.crumb {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.crumb li {
  color: rgba(255, 255, 255, 0.7);
}

.crumb li a {
  color: #ffffff;
  text-decoration: none;
}

.crumb li.active {
  color: #f5c542;
}

/* Responsive */
@media (max-width: 768px) {
  .news-title {
    font-size: 38px;
  }

  .news-subtitle {
    font-size: 15px;
  }

  .news-subheader {
    min-height: 340px;
  }
}
.news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
}

.news-card h4 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 52px;
}

.news-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* max 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 72px;
}

.news-card .post-image {
  height: 200px;
}

.news-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-meta {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #777;
}

.news-meta i {
  margin-right: 5px;
  color: #f5c542;
}

/* Tags */
.news-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #001f38;
  background: #f5c542;
  border-radius: 3px;
  z-index: 2;
}

.news-tag.press {
  background: #f5c542;
}
.news-tag.partnership {
  background: #8fd3f4;
}
.news-tag.agenda {
  background: #a3e635;
}
.news-tag.policy {
  background: #fca5a5;
}
.news-tag.innovation {
  background: #c084fc;
}
.news-tag.registration {
  background: #fde68a;
}
@media (max-width: 992px) {
  .news-card .post-image {
    height: 180px;
  }
}
@media (max-width: 576px) {
  .news-card {
    padding: 16px;
  }

  .news-card .post-image {
    height: 160px;
  }
}
.we-subscribe {
  padding: 100px 0;
  background: linear-gradient(180deg, #0b4f7d 0%, #0a6fa1 100%);
  color: #fff;
}

.we-subscribe .container {
  max-width: 760px;
}

/* Icon */
.subscribe-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
}

/* Heading */
.we-subscribe h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
}

/* Subtext */
.we-subscribe p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 34px;
}

/* Form */
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.subscribe-form input {
  width: 320px;
  max-width: 100%;
  height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.subscribe-form input:focus {
  outline: none;
  border-color: #f5c542;
  background: rgba(255, 255, 255, 0.2);
}

/* Button */
.subscribe-form button {
  height: 46px;
  padding: 0 26px;
  border-radius: 10px;
  border: none;
  background: #fff;
  color: #0b4f7d;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.subscribe-form button:hover {
  background: #f5c542;
  color: #001f38;
}
