.solution {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.solution-header {
    margin-bottom: 30px;
}
.solution-title {
    font-size: 40px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}
.solution-top-img {
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 8px;
    margin-top: 30px;
}

.adaptive-img-wrapper {
    position: relative;
    overflow: hidden;
}
.adaptive-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-content {
    p, li {
        font-family: 'Inter', sans-serif;
        line-height: 1.5;
        font-size: 18px;
    }
    p {
        padding-bottom: 20px;

        & + h2 {
            /* margin-top: 0 !important; */
        }
    }
    h2 {
        font-family: 'Inter', sans-serif;
        line-height: 1.5;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 6px;

        &:not(:first-of-type) {
            margin: 30px 0 6px;
        }
    }
    h3 {
        font-family: 'Inter', sans-serif;
        line-height: 1.5;
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 12px;
    }
    h4 {
        font-family: 'Inter', sans-serif;
        line-height: 1.5;
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 6px;
    }
    ul {
        margin-bottom: 20px;

        & + h2 {
            margin-top: 50px !important;
        }
    }
    li {
        list-style: disc;
        margin-left: 24px;
    }
}
.solution-content-img {
    width: 100%;
    margin-top: 30px;
}

.solution-aside {
    height: fit-content;
    position: sticky;
    top: 190px;
    left: 0;

    display: flex;
    flex-direction: column;
    gap: 20px;

    background-color: #e9f4ff;
    padding: 20px;
    border-radius: 8px;
}
.solution-aside-title {
    font-size: 32px;
    font-family: 'Gotham Pro', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.aside-card {
    min-height: 330px;
    background-color: white;
    padding: 10px;
    border: 1px solid #a1b9d1;
    border-radius: 8px;
}

.aside-card-img-wrapper {
    width: 100%;
    aspect-ratio: 5/4;
    border: 1px solid #a1b9d1;
    border-radius: 5px;
}

.aside-card-title {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}



.solution-equipment-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;

    padding: 60px 20px;
    background-color: #e9f4ff;

    border-radius: 8px;

    & > li {
        list-style: none;
        margin-left: 0;
    }
}
.solution-equipment {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}
.equipment-img {
    width: 100%;
    aspect-ratio: 31/24;
}


/* ADAPTIVE */
/* 768px - 960px */
@media screen and (max-width: calc(992px)) {
    .solution {
        grid-template-columns: 1fr;
    }
    .solution-aside {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .solution-aside-title {
        grid-column: span 3;
    }
}

/* 480px - 768px */
@media screen and (max-width: calc(768px)) {
    .solution-aside {
        grid-template-columns: repeat(2, 1fr);
    }
    .solution-aside-title {
        grid-column: span 2;
    }
}

@media screen and (max-width: calc(578px)) {
    .solution {
        margin-top: 140px;
    }
    .solution-title {
        font-size: 28px;
    }

    .solution-aside {
        grid-template-columns: 1fr;
    }
    .solution-aside-title {
        grid-column: unset;
    }
}