/**
 * Css for Widget: product-intro v01
 */

.product-intro_v01 {
    padding: 80px 0;
    background-color: #fff;
}

.product-intro_v01__image-wrapper {
    padding-right: 2rem;
}

.product-intro_v01__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-intro_v01__content {
    padding-left: 1rem;
}

.product-intro_v01__overtitle {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #EE6440;
    margin-bottom: 0.75rem;
}

.product-intro_v01__title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.75rem;
    line-height: 1.1;
    color: #2B3338;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.product-intro_v01__description {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5C6D78;
    margin-bottom: 1.5rem;
}

.product-intro_v01__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-intro_v01__feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #2B3338;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-intro_v01__feature-item svg {
    color: #EE6440;
    flex-shrink: 0;
}

.product-intro_v01__cta {
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #EE6440;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.product-intro_v01__cta:hover {
    background-color: #D24825;
    color: #fff;
}

@media (max-width: 991.98px) {
    .product-intro_v01__image-wrapper {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .product-intro_v01__content {
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .product-intro_v01 {
        padding: 50px 0;
    }

    .product-intro_v01__title {
        font-size: 2rem;
    }
}
