/* =========================================================
   FILE: /assets/css/sections/bullet-list-cards.css
   TEMA: Gieffe Classic
   SCOPO: Stile sezione Lista servizi a box
   COPYRIGHT: 2026 by Gieffe Informatica
   VERSIONE: 1.0
   ========================================================= */

.gf-section--bullet-list-cards .gf-bullet-list-cards__header {
    max-width: 900px;
    margin: 0 0 36px;
    text-align: left;
}

.gf-section--bullet-list-cards .gf-bullet-list-cards__header h2 {
    margin: 0 0 16px;
    max-width: 880px;
    color: var(--gf-section-title-color, #0f2337);
    font-size: var(--gf-section-title-size, clamp(2rem, 4vw, 3rem));
    line-height: 1.12;
    font-weight: 900;
}

.gf-section--bullet-list-cards .gf-bullet-list-cards__header .gf-text {
    max-width: 820px;
    color: var(--gf-section-text-color, #111827);
    font-size: var(--gf-section-text-size, 1rem);
    line-height: 1.65;
}

.gf-bullet-list-cards {
    display: grid;
    grid-template-columns: repeat(var(--gf-bullet-cards-columns, 2), minmax(0, 1fr));
    gap: var(--gf-bullet-cards-gap, 20px);
    align-items: stretch;
}

.gf-bullet-list-card {
    position: relative;
    display: flex;
    gap: 18px;
    min-width: 0;
    min-height: 88px;
    padding: var(--gf-bullet-card-padding-top, 18px) var(--gf-bullet-card-padding-right, 28px) var(--gf-bullet-card-padding-bottom, 18px) var(--gf-bullet-card-padding-left, 52px);
    background: var(--gf-bullet-card-bg, #ffffff);
    border: 1px solid var(--gf-bullet-card-border-color, rgba(0, 59, 111, .14));
    border-radius: var(--gf-bullet-card-radius, 14px);
    color: inherit;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(15, 23, 42, .04);
}

.gf-bullet-list-card--link:hover,
.gf-bullet-list-card--link:focus {
    text-decoration: none;
    box-shadow: 0 16px 32px rgba(15, 23, 42, .08);
}

.gf-bullet-list-card__dot {
    position: absolute;
    top: calc(var(--gf-bullet-card-padding-top, 18px) + .35em);
    left: 18px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: var(--gf-bullet-card-dot-color, #003b6f);
    box-shadow: 0 0 0 6px rgba(0, 59, 111, .08);
}

.gf-bullet-list-card__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.gf-bullet-list-card strong {
    color: var(--gf-section-card-title-color, var(--gf-section-title-color, #0f2337));
    font-size: var(--gf-section-card-title-size, 1rem);
    line-height: 1.45;
}

.gf-bullet-list-card span span {
    color: var(--gf-section-card-text-color, var(--gf-section-text-color, #111827));
    font-size: var(--gf-section-card-text-size, 1rem);
    line-height: 1.55;
}

.gf-section--bg-dark .gf-bullet-list-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
}

.gf-section--bg-dark .gf-bullet-list-card__dot {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .12);
}

@media (max-width: 900px) {
    .gf-bullet-list-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .gf-section--bullet-list-cards .gf-bullet-list-cards__header h2 {
        font-size: var(--gf-section-title-size, 1.9rem);
    }

    .gf-bullet-list-card {
        padding-left: max(44px, var(--gf-bullet-card-padding-left, 52px));
    }
}
