.content-block > .container {
    height: auto;
    max-width: 1400px;
}
.news-block.content-block {
    display: flex;
    justify-content: center;
    align-items: center;
}
.block-title {
    color: var(--main-color-black, #3E3E3E);
    font-size: 2.25rem;
    font-style: normal;
    width: 100%;
    height: fit-content;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 3rem;
    padding-top: 2rem;
}
.content-tt {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
    align-items: stretch;
}
.news-block .center {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.center > .news {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.news {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((100% - 4rem) / 3), 1fr));
    width: 100%;
    transition: all 1s ease-in-out;
    gap: 2rem;
    flex-wrap: wrap;
    flex: 1;
}

.news > .news-item{
    border-radius: 0.5rem;
    background: var(--secondary-color-light-grey, #F6F6F6);
    min-height: 40rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transition: opacity 0.5s ease-in-out;
  }

  .news > .news-item > .content-tt > .title {
    color: var(--main-color-black, #3E3E3E);
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0 2.25rem 0;
}

.news > .news-item > .content-tt > .text {
    color: var(--main-color-black, #3E3E3E);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 2.25rem 0;
}

.news > .news-item a {
    padding: 0 2.25rem 1rem;
    color: var(--main-color-light-green, #7BAF21);
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.news-item > .image > img {
    max-width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 0.5rem 0.5rem 0 0;
}

.news > .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    top: var(--swiper-pagination-top, auto) !important;
    bottom: var(--swiper-pagination-bottom, 8px) !important;
}

@media only screen and (max-width: 1440px) {
    .content-block > .container{
      padding: 0;
      margin: 0 1rem 0;
      width: calc(100% - 2rem);
    }
}

@media only screen and (max-width: 1367px) {
    .image {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }
}