.solution-archive-page {
    background: #fff;
}

.solution-hero {
    width: 100%;
    height: 330px;
    background: #050505;
    overflow: hidden;
}

.solution-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .68;
    display: block;
}

.solution-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 15px 75px;
}

.solution-title-row {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 58px;
}

.solution-title-row h1 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin: 0;
    white-space: nowrap;
}

.solution-title-row:after {
    content: "";
    height: 1px;
    background: #bfbfbf;
    flex: 1;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 44px;
}

.solution-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #000;
    aspect-ratio: 1.22 / 1;
    text-decoration: none;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease, opacity .35s ease;
}

.solution-card:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 86px;
    background: rgba(178, 0, 12, .86);
    z-index: 1;
}

.solution-card-title {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    text-align: center;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.solution-card:hover img {
    transform: scale(1.05);
    opacity: .88;
}

@media (max-width: 991px) {
    .solution-hero {
        height: 260px;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
}

@media (max-width: 575px) {
    .solution-hero {
        height: 190px;
    }

    .solution-wrap {
        padding: 35px 15px 55px;
    }

    .solution-title-row {
        margin-bottom: 32px;
    }

    .solution-title-row h1 {
        font-size: 25px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solution-card-title {
        font-size: 19px;
    }
}
