/* wb-matching.css — 연결하기 (test-workbook 원본) */

/* ── 매칭 영역 ── */
.match-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 8px 0;
}

/* ── 한 줄 (왼쪽 + 오른쪽) ── */
.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ── 각 아이템 (이미지 + 점) ── */
.match-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-item.right {
    flex-direction: row-reverse;
}

.match-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    display: block;
}

/* ── 2차 빈 슬롯 (match-img 오른쪽) — 실선 테두리 + 흰 배경 (실제보다 조금 작게) ── */
.match-img.blank {
    width: 110px;
    height: 110px;
    border: 2px solid #d0c8c0;
    border-radius: 12px;
    background: white;
}

.match-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    flex-shrink: 0;
}

/* ── 글자 연결 전용 ── */
.match-word {
    font-size: 36px;
    font-weight: 900;
    color: #333;
    letter-spacing: 3px;
    min-width: 140px;
    text-align: center;
}
