.page-hero {
  background: linear-gradient(135deg, #eef6ff 0%, #ffffff 55%);
  padding: 40px 0 24px;
}

.page-hero h1 {
  color: #004b7f;
}

.section-padding {
  padding-top: 32px;
  padding-bottom: 40px;
}

.news-card {
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.news-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

.news-card .card-body {
  padding: 0.9rem 1rem 1rem;
}

.news-meta {
  font-size: 0.8rem;
  color: #6c757d;
}

.news-title {
  font-size: 1.02rem;
}

.filter-chip {
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  border: 1px solid #dee2e6;
  cursor: pointer;
  background-color: #fff;
  margin: 2px 4px 2px 0;
}

.filter-chip.active {
  background-color: var(--bs-primary);
  color: #fff;
  border-color: var(--bs-primary);
}

.floating-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1080;
}

.floating-contact .btn {
  display: block;
  margin-bottom: 8px;
}

@media (min-width: 992px) {
  .page-hero {
    min-height: 320px;
    display: flex;
    align-items: center;
  }

  .page-hero .row {
    min-height: 320px;
  }

  .content-card-inner {
    padding: 2rem;
  }
}

@media (max-width: 991.98px) {
  .page-hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .page-hero {
    padding: 30px 0 18px;
  }

  .page-hero h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .page-hero p {
    font-size: 0.9rem;
  }

  .news-card .card-img-top {
    height: 160px;
  }

  .article-meta {
    font-size: 0.88rem;
  }

  .article-body {
    font-size: 0.94rem;
  }
}