.hero-title__images-grid {
    padding: 80px 0;
}

.hero-title__images-grid .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    margin-bottom: 32px;
}

.hero-title__images-grid .content .small-title {
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: .4;
    text-transform: uppercase;
}

.hero-title__images-grid .content .big-title,
.hero-title__images-grid .content .big-title * {
    font-size: 72px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 0;
}

.hero-title__images-grid .content .big-title {
    margin-bottom: 56px;
}

.hero-title__images-grid .button-link {
    position: relative;
    right: 0;
    bottom: 0;
}

.content-grid .item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 24px;
    max-height: 602px;
}

.content-grid .item:nth-child(6n+1) {
    grid-column: 1 / 2;
    grid-row: 1 / span 5;
}

.content-grid .item:nth-child(6n+2) {
    grid-column: 1 / 2;
    grid-row: 6 / span 3;
}

.content-grid .item:nth-child(6n+3) {
    grid-column: 2 / 3;
    grid-row: 1 / span 3;
}

.content-grid .item:nth-child(6n+4) {
    grid-column: 2 / 3;
    grid-row: 4 / span 5;
}

.content-grid .item:nth-child(6n+5) {
    grid-column: 3 / 4;
    grid-row: 1 / span 4;
}

.content-grid .item:nth-child(6n+6) {
    grid-column: 3 / 4;
    grid-row: 5 / span 4;
}

.text-item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 56px;
    background-color: #D0DFF2;
}

.featured-item {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 120px;
    background-color: #1E252F;
    color: white;
    justify-content: space-between;
}

.featured-item .heading {
    font-family: 'Instrument Serif', serif;
    font-size: 40px;
    line-height: .8;
    font-weight: 400;
    font-style: italic;
}

.featured-links {
    display: flex;
    justify-content: space-between;
}

.text-item .heading {
    font-family: 'Instrument Serif', serif;
    font-size: 88px;
    line-height: .8;
    font-weight: 400;
    font-style: italic;
}

.text-item .text {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

.content-grid .image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:968px) {
    .hero-title__images-grid {
        padding: 106px 0 40px;
    }

    .hero-title__images-grid .content .small-title {
        display: none;
    }

    .hero-title__images-grid .content .big-title,
    .hero-title__images-grid .content .big-title * {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .hero-title__images-grid .button-link {
        position: relative;
    }

    .content-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
        max-height: fit-content;
    }

    .content-grid .item {
        flex: 0 0 calc(50% - 6px);
    }

    .content-grid .item:nth-child(5),
    .content-grid .item:nth-child(6) {
        flex: 0 0 100%;
    }

    .text-item {
        padding: 24px 16px 16px;
    }

    .text-item .heading {
        font-size: 48px;
    }

    .text-item .text {
        font-size: 16px;
    }

    .featured-item {
        padding: 24px 16px 16px;
        gap: 60px;
    }

    .featured-links {
        gap: 42px;
    }

    .featured-links img {
        width: auto;
        max-width: 33%;
        min-width: 50px;
    }
}