/**
 * Bullet Points Layout Styles
 * Minimal base styles - customize as needed
 */

.ga26-bullet-points {
    width: 100%;
    padding: 5%;
}

.ga26-bullet-points__headline {
    font-family: 'Grack', sans-serif !important;
    margin: 0 0 20px 0;
    text-align: center;
    font-weight: 500;
    text-transform: uppercase;
}

.ga26-bullet-points__list {
    font-family: 'Noto Serif', serif;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 15px;
    padding: 3%;
    font-size: 20px;
    line-height: 1.6em;
    letter-spacing: -.5px;
    font-weight: 600;
}

/* Dynamic colors based on menu selection */
.ga26-flexible-content[data-menu-color="blue"] .ga26-bullet-points__headline {
    color: #00aeef;
}

.ga26-flexible-content[data-menu-color="green"] .ga26-bullet-points__headline {
    color: #20bdbe;
}

.ga26-flexible-content[data-menu-color="yellow"] .ga26-bullet-points__headline {
    color: #fcaf17;
}

.ga26-flexible-content[data-menu-color="red"] .ga26-bullet-points__headline {
    color: #f15922;
}

.ga26-flexible-content[data-menu-color="purple"] .ga26-bullet-points__headline {
    color: #c6168d;
}

.ga26-flexible-content[data-menu-color="black"] .ga26-bullet-points__headline {
    color: #d0d0d0;
}

.ga26-flexible-content[data-menu-color="blue"] .ga26-bullet-points__list {
    color: #1761ae;
}

.ga26-flexible-content[data-menu-color="green"] .ga26-bullet-points__list {
    color: #006b6b;
}

.ga26-flexible-content[data-menu-color="yellow"] .ga26-bullet-points__list {
    color: #dd5828;
}

.ga26-flexible-content[data-menu-color="red"] .ga26-bullet-points__list {
    color: #a92b31;
}

.ga26-flexible-content[data-menu-color="purple"] .ga26-bullet-points__list {
    color: #5c2e91;
}

.ga26-flexible-content[data-menu-color="black"] .ga26-bullet-points__list {
    color: #000;
}

.ga26-flexible-content[data-menu-color="blue"] .ga26-bullet-points__item {
    border-left: 20px solid #0060af;
    border-right: 3px solid #0060af;
    border-top: 3px solid #0060af;
    border-bottom: 3px solid #0060af;
}

.ga26-flexible-content[data-menu-color="green"] .ga26-bullet-points__item {
    border-left: 20px solid #006b6b;
    border-right: 3px solid #006b6b;
    border-top: 3px solid #006b6b;
    border-bottom: 3px solid #006b6b;
}

.ga26-flexible-content[data-menu-color="yellow"] .ga26-bullet-points__item {
    border-left: 20px solid #dd5828;
    border-right: 3px solid #dd5828;
    border-top: 3px solid #dd5828;
    border-bottom: 3px solid #dd5828;
}

.ga26-flexible-content[data-menu-color="red"] .ga26-bullet-points__item {
    border-left: 20px solid #a92b31;
    border-right: 3px solid #a92b31;
    border-top: 3px solid #a92b31;
    border-bottom: 3px solid #a92b31;
}

.ga26-flexible-content[data-menu-color="purple"] .ga26-bullet-points__item {
    border-left: 20px solid #5d2f90;
    border-right: 3px solid #5d2f90;
    border-top: 3px solid #5d2f90;
    border-bottom: 3px solid #5d2f90;
}

.ga26-flexible-content[data-menu-color="black"] .ga26-bullet-points__item {
    border-left: 20px solid #000000;
    border-right: 3px solid #000000;
    border-top: 3px solid #000000;
    border-bottom: 3px solid #000000;
}

.ga26-bullet-points__item {
    display: block;
    background-color: transparent;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.ga26-bullet-points__separator {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .ga26-bullet-points {
        padding: 10%;
    }

    .ga26-bullet-points__list {
        padding: 0%;
        font-size: 16px;
    }
}