body{
  margin:0;
  background:#07111f;
  color:#fff;
  font-family:Arial,sans-serif;
}

*{
  box-sizing:border-box;
}

.news-page{
  padding:80px 16px;
  min-height:100vh;
}

.news-container{
  max-width:1180px;
  margin:0 auto;
}

.news-head{
  max-width:760px;
  margin-bottom:50px;
}

.news-head span{
  color:#f6c443;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}

.news-head h1{
  font-size:clamp(42px,6vw,72px);
  line-height:1;
  margin:16px 0;
}

.news-head p{
  color:rgba(255,255,255,.72);
  font-size:18px;
  line-height:1.6;
}

.news-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.news-card img{
  width:100%;
  height:120px;
  min-height:120px;
  max-height:120px;
  object-fit:cover;
  border-radius:14px;
  margin-bottom:10px;
  display:block;
  background:#13233b;
}

.news-card{
  background:#0c1a2d;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  padding:14px;
  transition:.25s;
  display:flex;
  flex-direction:column;
  height:100%;
}

.news-card:hover{
  transform:translateY(-4px);
  border-color:rgba(246,196,67,.35);
}

.news-date{
  color:#f6c443;
  font-size:12px;
  font-weight:900;
  margin-bottom:8px;
  text-transform:uppercase;
}

.news-card h3{
  font-size:18px;
  line-height:1.15;
  margin-bottom:10px;
}

.news-card p{
  font-size:14px;
  color:rgba(255,255,255,.72);
  line-height:1.45;
  margin-bottom:14px;
}

.news-card button,
.news-full-btn{
  width:100%;
  height:56px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#f6c443,#d99b18);
  color:#07111f;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
}

.news-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.news-modal-content{
  width:min(760px,100%);
  background:#0c1a2d;
  border:1px solid rgba(246,196,67,.25);
  border-radius:30px;
  padding:36px;
  position:relative;
}

.news-close{
  position:absolute;
  top:18px;
  right:18px;
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.news-full{
  display:none;
}

.news-full span{
  color:#f6c443;
  font-weight:900;
  text-transform:uppercase;
}

.news-full h2{
  font-size:42px;
  line-height:1.1;
  margin:16px 0;
}

.news-full p{
  color:rgba(255,255,255,.82);
  line-height:1.8;
  font-size:18px;
  margin-bottom:28px;
}

@media(max-width:768px){

  .news-page{
    padding:50px 14px;
  }

  .news-grid{
    grid-template-columns:1fr;
  }

  .news-head h1{
    font-size:40px;
  }

  .news-modal-content{
    padding:28px 20px;
  }

  .news-full h2{
    font-size:32px;
  }

}

.news-card{
  display:flex;
  flex-direction:column;
  height:100%;
}

.news-card button{
  height:44px;
  border-radius:12px;
  font-size:14px;
}

@media(max-width:1200px){
  .news-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:900px){
  .news-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .news-grid{
    grid-template-columns:1fr;
  }
}

.modal-news-img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  margin-bottom:22px;
}

.news-modal{
  display:none;
}