/* Isolated News page styles (hero + card) */
.container {
  margin: 30px auto;
  padding: 0 ;
}

.hero {
  background: linear-gradient(135deg, #024173 0%, #1a5490 100%);
  color: #fff;
  text-align: center;
  padding:4rem;
  position: relative;
  overflow: hidden;
  height: min-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="bd-pattern" width="26" height="26" patternUnits="userSpaceOnUse"><path d="M13,0 L26,13 L13,26 L0,13 Z" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23bd-pattern)"/></svg>');
  animation: bd-float 22s ease-in-out infinite;
  opacity: .9;
}

@keyframes bd-float {
  0%,100% {
    transform:translateY(0) rotate(0);
  }

  50% {
    transform:translateY(-14px) rotate(2deg);
  }

}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  margin-bottom: .75rem;
  background: linear-gradient(45deg, #C8A451, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.hero-lead {
  font-size: 1.1rem;
  opacity: .95;
  max-width: 1000px;
  margin: 0.5rem auto 0;
}

.fe-title {
  font-size: 2rem;
  color: #024173;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
}

.fe-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.fe-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(2,65,115,0.06);
  box-shadow: 0 18px 48px rgba(2,65,115,.1);
  position: relative;
  overflow: hidden;
}

.fe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #024173, #C8A451);
}

.fe-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .75rem;
}

.fe-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #024173, #1a5490);
  color: #fff;
  font-size: 1.3rem;
}

.fe-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #024173;
}

.fe-list {
  list-style: none;
  padding: 0;
  margin: .5rem 0 0;
}

.fe-item {
  display: flex;
  gap: .6rem;
  padding: .5rem .7rem;
  background: #f7f9fb;
  border-radius: 10px;
  margin-bottom: .45rem;
  border-left: 3px solid transparent;
}

.fe-item i {
  color: #024173;
  margin-top: .15rem;
  font-size: 1.02rem;
}

/* Minimal styles for News empty state */
.news-empty {
  display: grid;
  place-items: center;
  padding: 2.25rem 1.25rem;
  text-align: center;
  color: #444;
}

.news-empty .empty-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .7rem;
  background: #f7f9fb;
  color: #024173;
  border: 1px solid rgba(2,65,115,.08);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: .6rem;
}

.news-empty .empty-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin: .25rem auto .75rem;
  color: #fff;
  background: linear-gradient(135deg, #024173, #1a5490);
  font-size: 1.6rem;
  box-shadow: 0 10px 28px rgba(2,65,115,.18);
}

.news-empty h3 {
  font-size: 1.35rem;
  color: #024173;
  margin: .25rem 0 .25rem;
}

.news-empty p {
  max-width: 760px;
  margin: 0 auto;
}

.news-empty .actions {
  margin-top: .9rem;
  display: flex;
  gap: .6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.news-empty .btn {
  background: #C8A451;
  color: #024173;
  border: 0;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.news-empty .btn:hover {
  filter: brightness(1.05);
}

@media (min-width: 900px) {
  .news-empty {
    padding: 3rem 2rem;
  }

}
