.news-card{
    display: flex;
    border-radius: 20px;
    gap: 20px;
    width: -webkit-fill-available;
}
.news-image{
    width: 382px;
    height: 244px;
    border-right: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-content{
    padding: 30px;
    flex: 1;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin-bottom: 25px;
}
.news-announs-event-detalis-date{
    font-size: 14px;
    color: #23569b;
    padding: 10px 0px;
    font-weight: 700;
}
.news-announs-event-detalis-title {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 20px;
}
.news-announs-event-detalis-sub-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}
.news-announs-event-detalis-sub-title{
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}
@media (max-width:1199px){
  .news-image{
    width: 300px;
    height: auto;
  }
}
@media (max-width:991px){
  .news-card{
    flex-direction: column;
  }
}
@media (max-width:767px){
  .news-image{
    width: 100%;
  }
}