.sol-highlight {
    padding-top: 3.5rem;
}

.sol-highlight__card {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.5rem;
    background: #eefaf4;
    box-shadow: 0 18px 40px rgba(20, 147, 255, 0.08);
}

.sol-highlight__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: start
}

.sol-highlight__title {
    margin: 0;
    color: #184430;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.25;
    font-weight: 800;
}

.sol-highlight__list {
    display: grid;
    gap: 0.625rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sol-highlight__item {
    position: relative;
    padding-left: 1.375rem;
    color: #45556d;
    font-size: clamp(0.875rem, 1.4vw, 0.95rem);
    line-height: 1.65;
}

.sol-highlight__item::before {
    content: "";
    position: absolute;
    top: 0.62rem;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #17bf8c 0%, #0fa774 100%);
    box-shadow: 0 0 0 4px rgba(23, 191, 140, 0.14);
}

.sol-highlight__video-wrap {
    position: relative;
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
}

.sol-highlight__video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.sol-highlight__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* <= 61.99em (~991.84px): Tablet + Mobile */
@media (max-width: 61.99em) {
    .sol-highlight__card {
        gap: 1rem;
        padding: 1.25rem 1rem 1.5rem;
    }

    .sol-highlight__media {
        order: -1;
        display: flex;
        justify-content: center;
        padding: 0.25rem 0.75rem 0;
    }

    .sol-highlight__video-wrap {
        width: min(100%, 30rem);
    }

    .sol-highlight__title {
        text-align: center;
    }


}

/* <= 47.99em (~767.84px): Mobile */
@media (max-width: 47.99em) {
    .sol-highlight {
        padding-top: 3rem;
    }

    .sol-highlight__media {
        padding-inline: 0.5rem;
    }
}

/* >= 62em (~992px): Desktop */
@media (min-width: 62em) {
    .sol-highlight {
        padding-top: 4.5rem;
    }

    .sol-highlight__card {
        grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 32.5rem);
        align-items: center;
        padding: 1.75rem 2rem;
    }
}