/* ══════════ 고객지원 PAGE ══════════ */
.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.notice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    transition: background .15s;
    cursor: pointer;
}

.notice-item:first-child {
    border-top: 1px solid var(--border);
}

.notice-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.ni-badge {
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-right: 0.7rem;
    background: rgba(91, 141, 238, 0.1);
    color: #5b8dee;
    white-space: nowrap;
}

.ni-badge.update {
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
}

.ni-title {
    font-size: 0.92rem;
    color: var(--text);
    flex: 1;
}

.ni-date {
    font-size: 0.88rem;
    color: var(--muted);
    white-space: nowrap;
    margin-left: 1rem;
}

/* 문의하기 - 폼 섹션 헤더 */
.inq-form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.inq-form-header {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.inq-form-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.inq-form-desc {
    font-size: 0.85rem;
    color: var(--muted);
}

/* 문의하기 */
.inquiry-wrap {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 0.7rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
}

.form-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 0.7rem 0.9rem;
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .2s;
}

.form-input:focus {
    border-color: rgba(91, 141, 238, 0.4);
}

.form-input::placeholder {
    color: var(--muted);
}

.form-input.full {
    width: 100%;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    background: #1e293b;
    color: var(--text);
}

.inquiry-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.inq-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
}

.inq-card h4 {
    font-size: 0.92rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--border);
}

.inq-row {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.4rem 0;
    font-size: 0.94rem;
    color: var(--muted);
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.94rem;
    color: var(--muted);
}

.trust-item::before {
    content: "✓";
    color: #5b8dee;
    font-weight: 800;
}

