.uca-news-grid,
.uca-news-grid * { box-sizing: border-box; }

.uca-news-grid {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  font-family: "Inter", Arial, sans-serif;
}

.uca-news-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d9e2ec;
  border-radius: 12px;
}

.uca-news-card__image-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f4f9fc;
}

.uca-news-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.uca-news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.uca-news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 10px;
  margin-bottom: 12px;
  color: #647482;
  font-size: 12px;
}

.uca-news-card__badge {
  padding: 4px 8px;
  color: #006fb8;
  background: #edf6fb;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
}

.uca-news-card__source::before {
  content: "•";
  margin-right: 10px;
  color: #b5d1e3;
}

.uca-news-card__title {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
}

.uca-news-card__title a {
  color: #006fb8;
  text-decoration: none;
}

.uca-news-card__title a:hover,
.uca-news-card__title a:focus {
  color: #008a8a;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.uca-news-card__excerpt {
  margin: 0 0 18px;
  color: #405261;
  font-size: 15px;
  line-height: 1.65;
}

.uca-news-card__link {
  margin-top: auto;
  color: #008a8a;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.uca-news-card--no-image {
  border-top: 4px solid #0293d2;
}

.uca-news-empty {
  color: #405261;
  font-family: "Inter", Arial, sans-serif;
}

.uca-news-pagination {
  width: 100%;
  max-width: 1140px;
  margin: 28px auto 0;
}

.uca-news-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
}

.uca-news-pagination a,
.uca-news-pagination span {
  min-width: 40px;
  min-height: 40px;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e2ec;
  border-radius: 8px;
  color: #006fb8;
  background: #fff;
  text-decoration: none;
}

.uca-news-pagination .current {
  color: #fff;
  background: #006fb8;
  border-color: #006fb8;
}

@media (max-width: 767px) {
  .uca-news-grid { grid-template-columns: 1fr; gap: 16px; }
  .uca-news-card__body { padding: 20px; }
  .uca-news-card__title { font-size: 19px; }
}
