.news-list-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 30px;
}

.news-item.image-right {
    flex-direction: row-reverse;
}

.news-image img {
    width: 100%;
    /* max-width: 400px; */
    border: 1px solid #fff;
    /* border-radius: 8px; */
    max-width: 600px;
}

.news-content {
    max-width: 500px;
    color: white;
}

.news-content h3{
    color: #ffcc00;
    text-transform: uppercase;
    font-size: 28px;
}


.news-category {
    color: #f0dc37;
    font-weight: normal;
    
    text-transform: uppercase;
    font-size: 24px;
    margin-bottom: 10px;
}

.news-category a{
    color: #f0dc37;
    text-transform: uppercase;
    font-size: 24px;
}

.news-text{
    font-size: 20px;
    font-weight: normal;
}

.news-read-more {
    color: #f5f050;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
    /* display: inline-block; */
    font-size: 22px;
    font-weight: normal;
}

.newsArrow {
    margin-left: 6px;
    background: url(../images/arrow_yellow.png) no-repeat;
    background-size: contain;
    background-position: center center;
    /* vertical-align: middle; */
    display: inline-block;
    width: 22px;
    height: 14px;
    
  }

.news-list-block .news-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-list-block .news-item {
    /* background: rgba(255, 255, 255, 0.1); */
    padding: 15px;
}

.news-list-block .news-thumb img {
    width: 100%;
    height: auto;
    /* border-radius: 6px; */
}

.news-block-title {
 
    font-weight: 700;
    font-size: 2rem;
    color: #ffe939; /* Yellow text color */
    /* display: inline-block; */
    position: relative;
    margin-bottom: 1rem;
    padding-right: 2rem;
  }
  
  /* Line extending right from the text */
  .news-block-title::after {
    content: '';
    position: absolute;
    top: 50%;
    /* left: 100%; */
    margin-left: 12px;
    height: 2px;
    width: 59%;
    background-color: rgba(255, 233, 57, 0.5);
    transform: translateY(-50%);
  }

.news-pagination a,
.news-pagination span {
    margin-right: 5px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-decoration: none;
}

  .news-pagination{
    text-align: center;
    margin: 20px 0px 20px 0px;
    font-size: 20px;
  }
  

  .siteSectionNews {  
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0px 50px 0px;
}

.siteSectionNews h1 {
    text-align: center;
    font-size: 32px;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 10px;
}

  @media (max-width: 1600px) {
    .news-content {
        max-width: 500px;
    }
    
}

@media (max-width: 1400px) {
    .news-content {
        max-width: 500px;
    }
    
}

@media (max-width: 1200px) {
    .news-content {
        max-width: 400px;
    }
    
}

@media (max-width: 1024px) {
    .news-content {
        max-width: 300px;
    }
    
}


  @media (max-width: 768px) {
    .news-item {
        gap: 0px;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .news-content {
        max-width: 550px;
        width: 90%;
    }
}