/* ============================================================
   country-info.css — 국가 정보 카드 (게시판 상단)
   ============================================================ */

.country-info {
    background: linear-gradient(135deg, #eff6ff 0%, #f5f3ff 100%);
    border: 1px solid #c7d2fe;
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 18px;
}

.country-info-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.country-info-flag {
    font-size: 56px;
    line-height: 1;
    flex-shrink: 0;
}

.country-info-title {
    flex: 1;
    min-width: 0;
}

.country-info-name-ko {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.2;
}

.country-info-name-en {
    font-size: 14px;
    color: var(--color-muted);
    font-weight: 500;
}

/* 정보 그리드 (수도, 인구, 통화 등) */
.country-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.country-info-item {
    background: white;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #e0e7ff;
}

.country-info-label {
    display: block;
    font-size: 11px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.country-info-value {
    display: block;
    font-size: 14px;
    color: #111827;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}