.sol-hero {
    --sol-hero-primary: #ff9c1a;
    --sol-hero-dark: #0d4f3d;
    display: grid;
    gap: 1.5rem;
    min-height: 18rem;
    padding: 1.5rem 1.25rem;
    border-radius: 1.5rem;
    background-color: #157f63;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    box-shadow: 0 22px 48px rgba(11, 61, 47, 0.16);
    text-align: center;
}

.sol-hero__content {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    justify-content: center;
    align-items: center;
}

.sol-hero__badge {
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
}

.sol-hero__title {
    margin: 0;
    max-width: 20ch;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.12;
    font-weight: 700;
}

.sol-hero__description {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.7;
}

.sol-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.25rem;
    justify-content: center;
}

.sol-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0 1.125rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-size: clamp(0.875rem, 1.4vw, 0.9375rem);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sol-hero__button:hover {
    transform: translateY(-1px);
}

.sol-hero__button--primary {
    background: var(--sol-hero-primary);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(255, 156, 26, 0.28);
}

.sol-hero__button--secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}
.sol-hero__button--secondary:hover, .sol-hero__button--primary:hover {
    color: white;
}

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

.sol-hero__image {
    width: min(100%, 28rem);
    height: auto;
    display: block;
}

/* >= 62em (~992px): Desktop */
@media (min-width: 62em) {
    .sol-hero {
        grid-template-columns: minmax(0, 38rem) minmax(21rem, 30rem);
        justify-content: center;
        align-items: center;
        min-height: 20rem;
        padding: 2rem 2.25rem 1.875rem;
        text-align: left;
    }

    .sol-hero__content {
        width: min(100%, 38rem);
        gap: 1rem;
        align-items: flex-start;
    }

    .sol-hero__title {
        font-size: clamp(2.25rem, 3.6vw, 3.25rem);
    }

    .sol-hero__badge {
        align-self: flex-start;
    }

    .sol-hero__actions {
        justify-content: flex-start;
    }
}

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

    .sol-hero__title {
        max-width: 24ch;
    }

    .sol-hero__description {
        max-width: 40rem;
    }

    .sol-hero__button {
        min-width: 11.5rem;
    }

    .sol-hero__media {
        padding-inline: 1rem;
    }

    .sol-hero__image {
        width: min(100%, 25rem);
    }
}

/* <= 47.99em (~767.84px): Mobile */
@media (max-width: 47.99em) {
    .sol-hero {
        padding: 1.5rem 1.125rem 1.75rem;
    }

    .sol-hero__actions {
        width: auto;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        gap: 0.625rem;
    }

    .sol-hero__button {
        width: auto;
        min-width: 0;
        padding: 0 1rem;
    }

    .sol-hero__title {
        max-width: 25ch;
    }
}

/* >= 75em (~1200px): Large Desktop */
@media (min-width: 75em) {
    .sol-hero {
        min-height: 21.5rem;
        grid-template-columns: minmax(0, 40rem) minmax(24rem, 31rem);
        padding: 2.125rem 2.5rem 2rem;
    }

    .sol-hero__content {
        width: min(100%, 40rem);
    }

    .sol-hero__description {
        max-width: 36rem;
    }
}
