/* text-bullet-section – c-text-bullets */

.c-text-bullets {
    padding: 5rem 1.5rem;
}

.c-text-bullets__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
}

.c-text-bullets--two-column .c-text-bullets__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.c-text-bullets--highlighted {
    background: #f0f4ff;
}

.c-text-bullets__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #2563eb;
    margin-bottom: 0.75rem;
}

.c-text-bullets__headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.875rem;
}

.c-text-bullets__body {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 2rem;
}

.c-text-bullets__actions {
    margin-top: 0;
}

.c-text-bullets__cta {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.c-text-bullets__cta:hover {
    opacity: 0.85;
}

.c-text-bullets__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.c-text-bullets__item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.75;
}

.c-text-bullets__icon {
    color: #2563eb;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1em;
}

@media (max-width: 768px) {
    .c-text-bullets--two-column .c-text-bullets__inner {
        grid-template-columns: 1fr;
    }
}
