.sol-benefits {
    padding-top: 3.5rem;
    width: min(100% + 0.5rem, 71rem);
    margin-inline: auto;
}

.sol-benefits__header {
    margin: 0 auto 1.75rem;
    max-width: 47.5rem;
    text-align: center;
}

.sol-benefits__title {
    margin: 0;
    color: #18212f;
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    line-height: 1.22;
    font-weight: 800;
}

.sol-benefits__description {
    margin: 0.875rem 0 0;
    color: #596579;
    font-size: clamp(0.875rem, 1.35vw, 0.95rem);
    line-height: 1.7;
}

.sol-benefits__list {
    display: grid;
    gap: 1.125rem;
}

.sol-benefit-card {
    display: grid;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 1.375rem;
    background: #effaf4;
    border: 1px solid #d7f1e4;
}

.sol-benefit-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sol-benefit-card__title {
    margin: 0;
    color: #0f5c45;
    font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
    line-height: 1.4;
    font-weight: 800;
}

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

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

.sol-benefit-card__bullet::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #1dc48b 0%, #0d9d6c 100%);
    box-shadow: 0 0 0 4px rgba(29, 196, 139, 0.14);
}

.sol-benefit-card__button {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    min-height: 2.625rem;
    padding: 0 1.125rem;
    border-radius: 999px;
    border: 1px solid #0f5c45;
    color: #0f5c45;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.3vw, 0.9375rem);
    font-weight: 700;
}

.sol-benefit-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-benefit-card__image {
    width: min(100%, 21.25rem);
    height: auto;
    display: block;
}

/* hightlight text */
.highlight-text {
   color: #1AAF84;
}

/* <= 61.99em (~991.84px): Tablet + Mobile */
@media (max-width: 61.99em) {
    .sol-benefits {
        width: 100%;
    }

    .sol-benefit-card {
        gap: 1rem;
        padding: 1.25rem 1rem 1.5rem;
    }

    /* ad just img tablet here */
    .sol-benefit-card__media {
        order: -1;
        padding: 0.25rem 0.75rem 0;
    }

    .sol-benefit-card__image {
       width: 100%; /*min(100%, 30rem) */
    }

    .sol-benefit-card__content {
        gap: 0.875rem;
    }

    .sol-benefit-card__title {
        text-align: center;
    }

}

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

    .sol-benefit-card__media {
        padding-inline: 0.5rem;
    }

    .sol-benefit-card__button {
        align-self: center;
    }
}

/* >= 62em (~992px): Desktop */
@media (min-width: 62em) {
    .sol-benefits {
        padding-top: 4.5rem;
        width: min(100% + 1rem, 71rem);
    }

    .sol-benefit-card {
        grid-template-columns: minmax(0, 1.05fr) minmax(15rem, 21.25rem);
        align-items: center;
        padding: 1.75rem 2rem;
    }
}

/* >= 75em (~1200px): Large Desktop */
@media (min-width: 75em) {
    .sol-benefits {
        width: min(100% + 1.5rem, 71rem);
    }

    .sol-benefits__header {
        margin-bottom: 2.25rem;
    }
}
