﻿.posts-archive-page .news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.posts-archive-page .news-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border: 1px solid #d8deeb;
  border-radius: 999px;
  color: #18407a;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.posts-archive-page .news-filter-pill:hover,
.posts-archive-page .news-filter-pill.is-active {
  background: #113b77;
  border-color: #113b77;
  color: #fff;
}

.posts-archive-page .news-featured-card {
  display: grid;
  grid-template-columns: minmax(220px, 45%) 1fr;
  background: #fff;
  border: 1px solid #e6e9f1;
  border-radius: 18px;
  overflow: hidden;
}

.posts-archive-page .news-featured-image img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.posts-archive-page .news-thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #dbe4f3 0%, #c7d5ec 100%);
}

.posts-archive-page .news-featured-content {
  padding: 1.5rem;
}

.posts-archive-page .news-meta-category {
  display: inline-flex;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--news-cat-bg, #eef4ff);
  color: var(--news-cat-color, #113b77);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
}

.posts-archive-page .news-featured-title,
.posts-archive-page .news-list-title {
  margin: 0 0 0.7rem;
  line-height: 1.3;
}

.posts-archive-page .news-featured-title a,
.posts-archive-page .news-list-title a {
  color: #0a1c36;
  text-decoration: none;
}

.posts-archive-page .news-featured-title a:hover,
.posts-archive-page .news-list-title a:hover {
  color: #16457f;
}

.posts-archive-page .news-featured-title {
  font-size: 1.6rem;
}

.posts-archive-page .news-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: #6b7280;
  font-size: 0.78rem;
  margin-bottom: 0.7rem;
}

.posts-archive-page .news-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.posts-archive-page .news-featured-excerpt,
.posts-archive-page .news-list-excerpt {
  color: #4b5563;
  margin-bottom: 0;
}

.posts-archive-page .news-read-more {
  margin-top: 1rem;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #18407a;
  text-decoration: none;
}

.posts-archive-page .news-list-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e6e9f1;
}

.posts-archive-page .news-list-card:last-child {
  border-bottom: 0;
}

.posts-archive-page .news-list-thumb img {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
}

.posts-archive-page .news-list-thumb .news-thumb-placeholder {
  min-height: 120px;
  border-radius: 12px;
}

.posts-archive-page .news-list-title {
  font-size: 1.08rem;
}

.posts-archive-page .news-list-excerpt {
  font-size: 0.92rem;
}

@media (max-width: 991px) {
  .posts-archive-page .news-featured-card {
    grid-template-columns: 1fr;
  }

  .posts-archive-page .news-featured-image img {
    min-height: 220px;
  }
}

@media (max-width: 575px) {
  .posts-archive-page .news-list-card {
    grid-template-columns: 1fr;
  }

  .posts-archive-page .news-list-thumb img {
    height: 190px;
  }

  .posts-archive-page .news-featured-content {
    padding: 1rem;
  }

  .posts-archive-page .news-featured-title {
    font-size: 1.25rem;
  }
}
