/* ============================================
   Bullet Point Item Block Styles
   ============================================ */

.wp-block-amphibee-bullet-point-item {
    margin: 0;
    padding: 0;
}

.wp-block-amphibee-bullet-point-item .bullet-point-item-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

body:not(.block-editor-page):not(.block-editor-iframe__body) .wp-block-amphibee-bullet-point-item .bullet-point-icon,
.editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-icon:has(>img){
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gbg-color-light-citron);
    border-radius: var(--gbg-border-radius-lg);
    border: 1px solid var(--gbg-color-grey);
    z-index: 1;
}

.wp-block-amphibee-bullet-point-item .bullet-point-icon img {
    max-width: 100%;
    max-height: 32px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Content styles */
.wp-block-amphibee-bullet-point-item .bullet-point-content {
    flex: 1;
    min-width: 0; /* Prevent flex item from overflowing */
}

.wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block-heading {
    margin: 0 0 8px 0;
    font-weight: 500;
    line-height: 1.3;
    color: var(--gbg-color-primary);
}

.wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block-heading:not([class*="-font-size"]),
.wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block-heading:not([class*="-font-size"]) u {
    font-size: clamp(18px, 4vw, 24px) !important;
}

.wp-block-amphibee-bullet-point-item .bullet-point-content p {
    margin: 0;
    line-height: 1.5;
    color: var(--gbg-color-primary);
}

.wp-block-amphibee-bullet-point-item .bullet-point-content p:not([class*="-font-size"]) {
    font-size: 16px;
}

section.bullet-point-block.background-primary .wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block-heading,
section.bullet-point-block.background-primary .wp-block-amphibee-bullet-point-item .bullet-point-content p {
    color: var(--gbg-color-light);
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
    .wp-block-amphibee-bullet-point-item .bullet-point-icon img {
        max-height: 42px;
    }

    .wp-block-amphibee-bullet-point-item .bullet-point-item-wrapper {
        gap: 24px;
    }

    body:not(.block-editor-page):not(.block-editor-iframe__body) .wp-block-amphibee-bullet-point-item .bullet-point-icon,
    .editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-icon:has(>img){
        width: 72px;
        height: 72px;
    }

    /* Editor style */
    .editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-icon .components-placeholder {
        width: 180px;
        height: 180px;
    }

    .wp-block-amphibee-bullet-point-item .bullet-point-content p:not([class*="-font-size"]) {
        font-size: 18px;
    }
}

/* Editor specific styles */
.editor-styles-wrapper .wp-block-amphibee-bullet-point-item .wp-block {
    max-width: unset;
    margin: 0;
}

.editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-content .block-editor-block-list__layout {
    margin: 0;
}

.editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block {
    margin-bottom: 8px;
}

.editor-styles-wrapper .wp-block-amphibee-bullet-point-item .bullet-point-content .wp-block:last-child {
    margin-bottom: 0;
} 
