/**
 * Css for Widget: Features List v01
 */

.features-list_v01 {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #f8f8f8;
}

.features-list_v01__title {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    line-height: 1.05;
    color: #2B3338;
    margin-bottom: 1rem;
}

.features-list_v01__subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #5C6D78;
    margin-bottom: 0;
}

/* Features Items */
.features-list_v01__items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-list_v01__item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.features-list_v01__item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(238, 100, 64, 0.1);
    border-radius: 10px;
    color: #EE6440;
}

.features-list_v01__item-content {
    flex: 1;
}

.features-list_v01__item-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #EE6440;
    margin-bottom: 0.375rem;
}

.features-list_v01__item-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #5C6D78;
    margin-bottom: 0;
}

/* Mockup */
.features-list_v01__mockup img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .features-list_v01__title {
        font-size: 2.5rem;
    }

    .features-list_v01__items {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .features-list_v01 {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .features-list_v01__title {
        font-size: 2rem;
    }

    .features-list_v01__item-icon {
        width: 40px;
        height: 40px;
    }
}
