/* Check List 2 Block Styles */

/* Spacing Classes */
.mt-small {
    margin-top: var(--spacing-small);
}

.mt-medium {
    margin-top: var(--spacing-medium);
}

.mt-large {
    margin-top: var(--spacing-large);
}

.mb-small {
    margin-bottom: var(--spacing-small);
}

.mb-medium {
    margin-bottom: var(--spacing-medium);
}

.mb-large {
    margin-bottom: var(--spacing-large);
}

/* Main Block Styles */
.checklist2-wrapper {
    position: relative;
    width: 100%;
}

.checklist2-content {
    position: relative;
}

/* Grid Layout */
.checklist2-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    justify-content: center;
}

/* Item Wrapper */
.checklist2-item-wrapper {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 600px;
}

/* Column width based on columns per row */
.checklist2-grid[data-columns="1"] .checklist2-item-wrapper {
    width: 100%;
}

.checklist2-grid[data-columns="2"] .checklist2-item-wrapper {
    width: 50%;
}

.checklist2-grid[data-columns="3"] .checklist2-item-wrapper {
    width: 33.333%;
}

.checklist2-grid[data-columns="4"] .checklist2-item-wrapper {
    width: 25%;
}

/* Item Styles */
.checklist2-item {
    display: flex;
    align-items: flex-start;
    text-align: left;
}

/* Icon Styles */
.checklist2-icon {
    margin-right: 15px;
}

.checklist2-icon img {
    width: 25px;
    height: auto;
    display: block;
}

/* Content Styles */
.checklist2-content {
    flex: 1;
    text-align: left;
    max-width: 1200px;
    margin: auto;
}


/* Title Styles */
.checklist2-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Text Styles */
.checklist2-text {
    margin-bottom: 0;
}

/* Button Styles */
.checklist2-button {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .checklist2-wrapper {
        padding: 50px 0;
    }

    .checklist2-grid[data-columns="3"] .checklist2-item-wrapper,
    .checklist2-grid[data-columns="4"] .checklist2-item-wrapper {
        width: 50%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .checklist2-wrapper {
        padding: 40px 0;
    }

    .checklist2-grid[data-columns] .checklist2-item-wrapper {
        width: 100%;
        max-width: 450px;
    }

    .checklist2-title {
        font-size: 1.1rem;
    }
}