/* Bullet with Paragraph Component */
.bullet-with-paragraph .bullet-section-title {
    color: var(--color-light);
    margin-bottom: 1.5rem;
}

.bullet-with-paragraph .bullet-paragraph-column {
    min-height: 200px;
    width: 50%;
    flex: 0 0 50%;
}

.bullet-with-paragraph .bullet-paragraph-container {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.bullet-with-paragraph .bullet-paragraph-content {
    display: flex;
    align-items: center;
    min-height: 200px;
}

.bullet-with-paragraph .bullet-paragraph-content p {
    font-size: 1rem; /* 16px */
    font-size: clamp(1rem, 2.5vw, 1.125rem); /* 16px to 18px */
    line-height: 1.6;
}

.bullet-with-paragraph .bullet-points-column {
    min-height: 200px;
    width: 50%;
    flex: 0 0 50%;
}

.bullet-with-paragraph .bullet-points-container {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.bullet-with-paragraph .bullet-points-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bullet-with-paragraph .bullet-point-item {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.bullet-with-paragraph .bullet-point-item .glassmorphism-box {
    width: 32px;
    height: 32px;
}

.bullet-point-item .glassmorphism-box iconify-icon {
    font-size: 20px !important;
}

.bullet-with-paragraph .bullet-point-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.bullet-with-paragraph .bullet-point-content {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 40px;
}

.bullet-with-paragraph .bullet-point-content p {
    font-size: 1rem; /* 16px */
    font-size: clamp(1rem, 2.5vw, 1.125rem); /* 16px to 18px */
    line-height: 1.25;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .bullet-with-paragraph .bullet-paragraph-content p {
        font-size: 1.125rem; /* 18px */
    }
    
    .bullet-with-paragraph .bullet-point-content p {
        font-size: 1.125rem; /* 18px */
    }
    
    .bullet-with-paragraph .bullet-paragraph-column {
        border-right: 1px dashed var(--color-dashed-border) !important;
    }
}

@media (min-width: 992px) {
    .bullet-with-paragraph .bullet-paragraph-content p {
        font-size: 1.125rem; /* 18px */
    }
    
    .bullet-with-paragraph .bullet-point-content p {
        font-size: 1.125rem; /* 18px */
    }
}
