
.cb35-repeater {
    background-color: var(--color-bg, #fff);
}

.cb35-repeater .flex-layout {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
    padding: 7rem 0;
}

/* .cb35-repeater .flex-layout:nth-child(even) {
    flex-direction: row-reverse;
} */
.cb35-repeater.media-left .flex-layout {
    flex-direction: row-reverse;
} 
.cb35-repeater .content-col {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.cb35-repeater .image-col {
    flex: 1;
    width: 100%;
    min-width: 0;
    max-width: 520px;
}

.cb35-repeater .heading {
    font-weight: 700;
    line-height: 1.12;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

.cb35-repeater .description {
    font-size: 16px;
    /* Default desktop size */
    line-height: 1.75;
    color: var(--light-green);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* Features List Styling */
.cb35-repeater .features-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
    list-style: none;
}

.cb35-repeater .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.cb35-repeater .feature-text {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.375;
}

.cb35-repeater .icon-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}
.cb35-repeater .button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;

}

.cb35-repeater .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s ease-in-out;
    height: 52px;
    padding: 0 2rem;
    font-size: 14px;
    white-space: nowrap;
    width: auto;
    text-decoration: none;
}

.cb35-repeater .primary-btn {
    box-shadow: none;
}

.cb35-repeater .btn-secondary {
    border: 1px solid #d9ded9;
    background-color: var(--color-bg, #fff);
    color: var(--color-primary);
}
.cb35-repeater .btn-secondary:hover {
    background: #f1f3f1;
}

.cb35-repeater .image-wrapper {
    aspect-ratio: 4 / 5;
    border-radius: 0.75rem;
    overflow: hidden;
}

.cb35-repeater .cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991.98px) {
    .cb35-repeater .flex-layout {
        flex-direction: column !important;
        gap: 3rem;
    }

    .cb35-repeater .image-col {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .cb35-repeater .flex-layout {
        padding: 5rem 0;
    }
}

@media (max-width: 639px) {
    .cb35-repeater .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    .cb35-repeater .btn {
        width: 100%;
    }
}