/******************************************************************/
/* saves-time.css                                    */
/******************************************************************/
.saves-time-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
    margin: 2rem 0;
    justify-content: flex-start;
    background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.saves-time-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.time-saving-section {
    margin-bottom: 1rem;
}

    .time-saving-section p.mediumbold {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

.time-saving-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
    counter-reset: time-counter;
}

    .time-saving-list li {
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding-left: 2.5rem;
        position: relative;
        counter-increment: time-counter;
    }

        .time-saving-list li::before {
            content: counter(time-counter);
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(135deg, var(--primary) 0%, #4fb3e1 100%);
            color: white;
            width: 1.8rem;
            height: 1.8rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.85rem;
            box-shadow: 0 2px 8px rgba(29, 151, 211, 0.3);
        }

.saves-time-image {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0rem;
}

    .saves-time-image img {
        max-width: 200px;
        width: 200px;
        height: auto;
        border-radius: 50%;
        filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
        background: transparent;
    }

@media (min-width: 992px) {

    .saves-time-container {
        align-items: flex-start;
        flex-direction: row;
        justify-content: flex-start;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .saves-time-content {
        order: 1;
        flex: 1;
        margin-right: 2rem;
    }

    .saves-time-image.desktop-only {
        order: 2;
        margin-top: 10rem;
    }
}

@media (max-width: 767px) {
    .saves-time-container {
        flex-direction: column;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        margin-top: 0px !important;
        padding: 1rem !important;
    }

    .saves-time-content {
        order: 2;
        min-width: auto;
        max-width: none;
        width: 100%;
    }

    .saves-time-image img {
        max-width: 280px;
        width: 280px;
        display: block;
        margin: 0 auto;
    }

    .time-saving-list {
        text-align: left;
        padding-left: 0;
        width: 100%;
        font-size: 0.9rem;
    }

        .time-saving-list li {
            font-size: 0.9rem;
            line-height: 1.5;
        }

    .time-saving-section {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        text-align: left;
        width: 100%;
    }
}
