.index-news__main {
    position: relative;
    margin-bottom: 22px;
}

.index-news__main:before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    padding-top: 77%;
}

.index-news__main a {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.index-news__main-bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 38, 84, 0.51);
    transition: all .2s ease-in-out;
}

.index-news__main:hover .index-news__main-bg {
    background: rgba(0, 38, 84, 0.8);
}

.index-news__main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 16px;
    width: 100%;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
}

.index-news__main-date {
    font-size: 2.7rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.index-news__main-title {
    font-weight: 500;
    font-size: 2.7rem;
}

.index-news {
    margin-bottom: 80px;
}

.index-news__cols {
    display: flex;
    flex-direction: column;
}

.index-news__cols:hover {
    text-decoration: none;
}

.index-news__col-content {
    padding: 20px 30px;
    background: #183752;
}

.index-news__list {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}

.index-news__list-item {
    width: 33.333%;
    background: #183752;
}

.index-news__col-content > span {
    display: block;
}

.index-news__list-date {
    display: flex!important;
    align-items: center;
    column-gap: 10px;
    margin-top: 15px;
    color: #769AB7;
}

.index-news__list-date > span {
    display: inline-flex;
    font-weight: 600;
    font-size: 1.5rem;
    line-height: 1;
}

.index-news__list-desc {
    font-weight: 500;
    font-size: 2.3rem;
    line-height: 1.17;
    color: var(--color-white);
}

.index-news__col-img {
    position: relative;
    overflow: hidden;
}

.index-news__col-img img {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    width: 100%;
    transition: all .4s ease;
}

.index-news__col-img:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    padding-bottom: 66%;
}

.index-news__cols:hover .index-news__col-img img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .index-news__main-date {
        font-size: 2rem;
    }

    .index-news__main-title {
        font-size: 2rem;
    }

    .index-news__list {
        flex-direction: column;
        gap: 30px;
    }

    .index-news__list-item {
        width: 100%;
    }

    .index-news__list-date {
        column-gap: 4px;
    }

    .index-news__list-date > span {
        font-size: 1.4rem;
    }

    .index-news__list-date svg {
        width: 22px;
    }

    .index-news__list-desc {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .index-news__main-date {
        font-size: 1.5rem;
    }

    .index-news__main-title {
        font-size: 1.2rem;
    }

    .index-news__list-date > span {
        padding: 4px 7px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .index-news {
        margin-bottom: 30px;
    }
}
