/* 긴급 연락처 위젯 — 컴팩트 모던 차분 */
.emergency-contacts-widget {
    border: none;
    box-shadow: none;
}

.ec-body {
    padding: 0.15rem 0.5rem 0.35rem;
}

.ec-row {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.28rem 0.25rem;
    border-radius: 5px;
    text-decoration: none;
    color: inherit;
    transition: background 0.12s;
}
.ec-row:hover {
    background: var(--wa-color-neutral-95, #f5f5f5);
}

.ec-ico {
    flex-shrink: 0;
    font-size: 0.65rem;
    color: var(--wa-color-neutral-50, #999);
    width: 0.75rem;
    text-align: center;
}

.ec-name {
    font-size: 0.7rem;
    color: var(--wa-color-neutral-40, #666);
    white-space: nowrap;
}

.ec-num {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--wa-color-neutral-20, #333);
    white-space: nowrap;
}

.ec-foot {
    margin-top: 0.15rem;
    padding: 0.25rem 0;
    font-size: 0.6rem;
    color: var(--wa-color-neutral-50, #999);
    text-align: center;
}
.ec-foot strong {
    color: var(--wa-color-neutral-20, #333);
    font-weight: 700;
}
.ec-24h {
    font-size: 0.5rem;
    font-weight: 600;
    color: var(--wa-color-neutral-40, #666);
    background: var(--wa-color-neutral-95, #f5f5f5);
    padding: 0.05rem 0.25rem;
    border-radius: 3px;
    vertical-align: middle;
}
