.index-news,
.index-news * {
    box-sizing: border-box;
}

.index-section__title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #233778; 
  text-decoration: none;
  text-transform: uppercase; 
}

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

.index-news-grid {
    width: 100%;
    max-width: 1280px;

    margin: 40px auto 0;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    column-gap: 35px;
    row-gap: 40px;
}

.index-news-card {
    width: 100%;
    min-width: 0;

    background: #183f61;

    overflow: hidden;
}

.index-news-card__link {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    color: #fff;
    text-decoration: none !important;
}

.index-news-card__image {
    width: 100%;
    aspect-ratio: 390 / 255;

    overflow: hidden;

    background: #eaeaea;
}

.index-news-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.3s ease;
}

.index-news-card__content {
    display: flex;
    flex-direction: column;

    flex: 1;

    min-height: 135px;

    padding: 17px 18px 14px;
}

.index-news-card__title {
    color: #fff;

    font-family: 'Jost', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.3;
}

.index-news-card__date {
    margin-top: auto;
    padding-top: 12px;

    color: rgba(255, 255, 255, 0.55);

    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.2;
}

.index-news-card:hover .index-news-card__image img {
    transform: scale(1.035);
}

.index-news-card:hover .index-news-card__title {
    text-decoration: underline;
}

@media (min-width: 1400px) {
    .index-news-grid {
        grid-template-columns: repeat(3, 390px);
        justify-content: center;
    }

    .index-news-card {
        width: 390px;
    }

    .index-news-card__image {
        width: 390px;
        height: 255px;
        aspect-ratio: auto;
    }
}

@media (max-width: 1200px) {
    .index-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 30px;
    }
}

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

    .index-news-grid {
        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 30px;
    }

    .index-news-card__content {
        min-height: 120px;

        padding: 15px 16px 13px;
    }

    .index-news-card__title {
        font-size: 16px;
    }

    .index-news-card__date {
        font-size: 11px;
    }
}

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