.newsListSection {
    padding-bottom: 80px;
    padding-top: 43px;
}
.newsListSection__header .section-title{
    letter-spacing: -0.08em;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
}
body .main-page .newsListSection__header .section-title{
    margin-bottom: 0;
    margin-top: 0;
}
.news-btn {
    width: fit-content;
    margin: -5px auto 30px;
}
.newsListSection__container {
    position: relative;
}
.newsListSectionCard{
    display: flex;
    flex-direction: column;
    position: relative;
}
.newsListSectionCard:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 1px solid transparent;
    border-image: linear-gradient(180deg, #ffffff01, #ffffff14);
    border-image-slice: 1;
    transition: border .3s ease-in-out;
}
.newsListSectionCard__header{
    display: flex;
    position: relative;
}
.newsListSectionCard__header .GA-PS-btn{
    top: 10px;
    right: 10px;
    position: absolute;
    opacity: 0;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s linear;
    padding: 4px 55px 4px 15px;
}
.newsListSectionCard__img{
    width: 100%;
    aspect-ratio: 16/9;
}
.newsListSectionCard__img img{
    width: 100%;
    object-fit: cover;
    cursor: pointer;
}
.newsListSectionCard__content{
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 25px 20px 25px 20px;
    height: 100%;
    position: relative;
    cursor: auto;
}
.newsListSectionCard__date{
    font-weight: 400;
    font-size: 16px;
    color: #808080;
    letter-spacing: -0.034em;
    margin-top: 20px;
    flex: 1 1 auto;
}
.newsListSectionCard__title{
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.034em;
    margin-bottom: 5px;
    color: var(--light-color);
    transition: .3s ease-in-out;
    cursor: pointer;
}
.newsListSectionCard__text{
    font-weight: 400;
    font-size: 14px;
}
@media (hover: hover) {
    .newsListSectionCard:hover:before {
        border: 1px solid #00adef66;
    }
    .newsListSectionCard:hover .newsListSectionCard__header .GA-PS-btn{
        opacity: 1;
    }
    .newsListSectionCard__title:hover {
        color: var(--accent-color);
    }
}
@media (min-width: 1400px) {
    .newsListSection__header {
        margin-bottom: 70px;
    }
}
@media (max-width: 1400px) {
    .newsListSection__header {
        margin-bottom: 30px;
    }
}
@media (max-width: 900px) {
    .newsListSection__header h2.section-title {
        font-size: 32px;
        margin: 0;
    }
}