/* wb-bingo.css — 빙고 (test-workbook 원본) */

/* ── 빙고 그리드 ── */
.bingo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    background: var(--wb-primary);
    gap: 3px;
    padding: 3px;
    border-radius: 12px;
    overflow: hidden;
}

/* ── 빙고 셀 ── */
.bingo-cell {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
}

.bingo-cell img {
    width: 100%;
    flex: 1;
    object-fit: contain;
    min-height: 0;
}

.cell-label {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    text-align: center;
    flex-shrink: 0;
}

/* ── 글자 빙고 전용 ── */
.cell-word {
    font-size: 30px;
    font-weight: 900;
    color: #333;
    text-align: center;
    word-break: keep-all;
    line-height: 1.3;
}
