/* ══════════════════════════════════════════════════════════
   Dango Badges — Frontend CSS
   modules/dango-badges/dango-badges-front.css
   ══════════════════════════════════════════════════════════ */

/* ── Contenedor badges ── */
.dango-pp-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
    margin: 14px 0 20px;
    box-sizing: border-box;
}

/* ── Badge individual ── */
.dango-pp-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 10px;
    background: #fbfcfc;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    text-align: center;
    box-sizing: border-box;
    min-height: 130px;
    height: var(--dango-badge-height, 130px);
}

/* ── Ícono ── */
.dango-pp-badge img {
    display: block;
    object-fit: contain;
    flex-shrink: 0;
}

/* ── Textos ── */
.dango-pp-badge-texts {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    flex-shrink: 0;
}

/* ── Título ── */
.dango-pp-badge-title {
    font-size: 11.5px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
}

/* ── Subtítulo ── */
.dango-pp-badge-sub {
    font-size: 11px;
    font-weight: 400;
    color: #666;
    line-height: 1.2;
    margin: 0;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .dango-pp-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}