.hero {
    margin: 40px auto;
    border-radius: 20px;
    min-height: 550px;
    max-width: 1400px;

    .w-1100 {
        max-width: 1220px;
    }

    h1 {
        font-weight: 500;
        font-size: 52px;
        line-height: 1.2;
    }

    .text-small {
        font-size: 19px;
        color: #666;
    }

    .img-wrapper {
        border: 1px solid #0c0c0c14;
        border-radius: 20px;
        background-color: white;
        background: linear-gradient(
                150deg,
                rgba(234, 233, 252, 0.3),
                rgba(255, 255, 255, 0.1)
        );
        max-width: 50%;
        padding-top: 1.875rem;
        padding-left: 3.75rem;
        padding-right: 3.75rem;
        overflow: hidden;
        min-height: 450px;

        img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }
    }
}

h4 {
    margin: 0;
}

.icon {
    height: 24px;
    width: 24px;
    padding: 12px;
    border-radius: 4px;
    background: var(--color-violet-lighter);
    color: var(--color-violet);
    margin-bottom: 12px;
}



.card {
    padding: 32px;

    .text-smaller {
        display: -webkit-box;
        -webkit-line-clamp: 3; /* Limit to 3 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}