*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:#f3f6fb;
  color:#172033;
}

.wrap{
  width:min(1120px, 92%);
  margin:auto;
}

.news-header{
  background:linear-gradient(135deg,#0B63C6,#123A6F);
  color:#fff;
  padding:38px 0 42px;
}

.news-header h1{
  margin:18px 0 8px;
  font-size:clamp(2rem,4vw,3.2rem);
}

.news-header p{
  margin:0;
  max-width:650px;
  opacity:.9;
}

.back{
  color:#fff;
  text-decoration:none;
  font-size:.95rem;
  opacity:.9;
}

.featured{
  margin-top:-28px;
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  box-shadow:0 18px 40px rgba(18,58,111,.18);
}

.featured img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
}

.featured-content{
  padding:34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.badge{
  display:inline-block;
  width:max-content;
  background:#ffe08a;
  color:#4b3500;
  padding:7px 12px;
  border-radius:999px;
  font-weight:700;
  font-size:.82rem;
  margin-bottom:14px;
}

.featured h2{
  margin:0 0 12px;
  font-size:clamp(1.6rem,3vw,2.4rem);
  line-height:1.12;
}

.featured p{
  color:#5b6472;
  line-height:1.65;
}

.actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}

.btn{
  border:0;
  background:#0B63C6;
  color:#fff;
  text-decoration:none;
  padding:11px 17px;
  border-radius:12px;
  cursor:pointer;
  font-weight:700;
}

.btn.ghost{
  background:#eef4ff;
  color:#0B63C6;
}

.section-title{
  margin:38px 0 18px;
}

.section-title h2{
  margin:0;
  font-size:1.5rem;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  padding-bottom:50px;
}

.news-card{
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
  display:flex;
  flex-direction:column;
}

.news-card img,
.no-image{
  width:100%;
  height:190px;
  object-fit:cover;
}

.no-image{
  background:linear-gradient(135deg,#dbeafe,#bfdbfe);
  display:grid;
  place-items:center;
  color:#0B63C6;
  font-weight:900;
  font-size:1.3rem;
}

.card-body{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.category{
  color:#0B63C6;
  font-size:.8rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.news-card h3{
  margin:9px 0 8px;
  font-size:1.16rem;
  line-height:1.28;
}

.news-card p{
  color:#5b6472;
  line-height:1.55;
  font-size:.95rem;
  flex:1;
}

.card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-top:14px;
}

.card-footer a{
  color:#0B63C6;
  font-weight:800;
  text-decoration:none;
}

.listen-small{
  border:0;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#eef4ff;
  cursor:pointer;
}

.empty{
  background:#fff;
  margin-top:35px;
  padding:35px;
  border-radius:24px;
  box-shadow:0 12px 28px rgba(15,23,42,.08);
}

@media(max-width:900px){
  .featured{
    grid-template-columns:1fr;
  }

  .featured img{
    min-height:260px;
  }

  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:620px){
  .news-grid{
    grid-template-columns:1fr;
  }

  .featured-content{
    padding:24px;
  }
}