/* ============================================================
   MCRM Support CSS — Redesign
   프로젝트 공통 CSS(변수, btn, form-control, badge 등) 사용 전제
   ============================================================ */

.support-page {
  --color-primary: var(--primary);
  --color-primary-light: var(--secondary);
  --color-primary-pale: var(--primary-dim);
  --color-surface: var(--surface);
  --color-bg: var(--bg);
  --color-hover: var(--surface2);
  --color-border: var(--border);
  --color-text: var(--text);
  --color-text-secondary: var(--text2);
  --color-text-muted: var(--text3);
  --color-badge-bg: var(--surface2);
  width: 100%;
  max-width: 1160px;
  min-width: 0;
}

.support-narrow-page {
  max-width: 860px;
}

/* ── Hero ── */
.support-hero {
  background: linear-gradient(135deg, var(--color-primary, #1a3a5c) 0%, var(--color-primary-light, #0e6ebd) 100%);
  border-radius: 12px;
  padding: 48px 40px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.support-hero::after {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.support-hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
}
.support-hero-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.support-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ── Page Head (공지/FAQ 서브페이지) ── */
.support-page-head {
  margin-bottom: 24px;
}
.support-page-head-inner h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 4px;
  letter-spacing: -0.3px;
}
.support-page-head-inner p {
  font-size: 13.5px;
  color: var(--color-text-muted, #888);
  margin: 0;
}
.support-back-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  color: var(--color-text-muted, #888);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s;
}
.support-back-nav:hover { color: var(--color-primary, #1a3a5c); }

/* ── Tabs ── */
.support-tabs {
  display: flex;
  gap: 2px;
  border-bottom: 2px solid var(--color-border, #eaecef);
  margin-bottom: 28px;
}
.support-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-muted, #888);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.support-tab:hover { color: var(--color-primary, #1a3a5c); }
.support-tab.active {
  color: var(--color-primary, #1a3a5c);
  border-bottom-color: var(--color-primary, #1a3a5c);
  font-weight: 600;
}

/* ── Entry Grid (홈 카드 3개) ── */
.support-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}
.support-entry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.support-entry-card:hover {
  border-color: var(--color-primary, #1a3a5c);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}
.support-entry-icon-wrap {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.support-entry-icon--notice { background: #e8f2ff; color: #0e6ebd; }
.support-entry-icon--faq    { background: #e8faf0; color: #1a8a4a; }
.support-entry-icon--qna    { background: #fff4e6; color: #d47a00; }
.support-entry-text {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.support-entry-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text, #222);
}
.support-entry-desc {
  font-size: 12px;
  color: var(--color-text-muted, #888);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.support-entry-arrow {
  color: var(--color-text-muted, #bbb);
  flex-shrink: 0;
}

/* ── Topic Shortcuts (모아샷 FAQ 유형 버튼 참고) ── */
.support-topic-panel {
  min-width: 0;
  margin-bottom: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  background: var(--color-surface, #fff);
}

.support-topic-head {
  padding-bottom: 14px;
}

.support-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-border, #eaecef);
  border-top: 1px solid var(--color-border, #eaecef);
}

.support-topic-card {
  display: grid;
  gap: 4px;
  min-width: 0;
  min-height: 94px;
  padding: 16px 18px;
  background: var(--color-surface, #fff);
  color: var(--color-text, #222);
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}

.support-topic-card:hover {
  background: var(--color-hover, #f8f9fb);
  color: var(--color-primary, #0e6ebd);
  opacity: 1;
}

.support-topic-no {
  color: var(--color-primary, #0e6ebd);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.support-topic-card strong {
  min-width: 0;
  color: inherit;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}

.support-topic-card span:last-child {
  min-width: 0;
  overflow: hidden;
  color: var(--color-text-muted, #888);
  font-size: 12px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Workspace (홈 2열 레이아웃) ── */
.support-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 24px;
  align-items: flex-start;
}
.support-main-stack {
  min-width: 0;
  display: flex; flex-direction: column; gap: 24px;
}

/* ── Panel (홈 패널) ── */
.support-panel {
  min-width: 0;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  overflow: hidden;
}
.support-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--color-border, #f0f0f0);
}
.support-panel-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 3px;
  color: var(--color-text, #222);
}
.support-panel-desc {
  font-size: 12.5px;
  color: var(--color-text-muted, #888);
  margin: 0;
}
.support-more-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12.5px;
  color: var(--color-primary, #0e6ebd);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.support-more-link:hover { text-decoration: underline; }

/* ── Notice Rows (홈 패널 + 목록 공용) ── */
.support-list { padding: 4px 0; }
.support-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 12px 20px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border, #f5f5f5);
  transition: background 0.1s;
}
.support-row:last-child { border-bottom: none; }
.support-row:hover { background: var(--color-hover, #f8f9fb); }
.support-row-main { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.support-row-title-line { display: flex; align-items: center; gap: 8px; min-width: 0; }
.support-row-title {
  display: block;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text, #222);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.support-summary {
  font-size: 12px;
  color: var(--color-text-muted, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.support-row-date {
  font-size: 12px;
  color: var(--color-text-muted, #aaa);
  flex-shrink: 0;
  white-space: nowrap;
}

/* ── Notice Kind Badge ── */
.notice-kind-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  background: var(--color-badge-bg, #eef2f7);
  color: var(--color-text-muted, #666);
}
.notice-kind-badge.priority {
  background: #fff0f0;
  color: #d63031;
}

/* ── Contact Panel (홈 사이드) ── */
.support-contact-panel {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  padding: 20px;
}
.support-contact-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--color-primary, #1a3a5c);
}
.support-contact-header h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--color-text, #222);
}
.support-contact-sub {
  font-size: 12.5px;
  color: var(--color-text-muted, #888);
  margin: 0 0 16px;
}
.support-contact-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 18px;
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 8px;
  overflow: hidden;
}
.support-contact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border, #f0f0f0);
  font-size: 13px;
}
.support-contact-item:last-child { border-bottom: none; }
.support-contact-label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text-muted, #888);
  font-size: 12.5px;
}
.support-contact-item strong {
  font-weight: 600;
  color: var(--color-text, #222);
  font-size: 13px;
}
.support-contact-actions {
  display: flex; flex-direction: column; gap: 8px;
}
.support-contact-actions .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%;
}

/* ── Notice Board (공지사항 목록) ── */
.notice-board {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.notice-board-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border, #f5f5f5);
  transition: background 0.1s;
}
.notice-board-row:last-child { border-bottom: none; }
.notice-board-row:hover { background: var(--color-hover, #f8f9fb); }
.notice-board-body {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.notice-board-title {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text, #222);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-board-summary {
  font-size: 12px;
  color: var(--color-text-muted, #888);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notice-board-date {
  font-size: 12px;
  color: var(--color-text-muted, #aaa);
  flex-shrink: 0;
}
.notice-board-arrow {
  color: var(--color-text-muted, #ccc);
  flex-shrink: 0;
}

/* ── Notice Detail ── */
.notice-detail-wrap {
  max-width: 760px;
}
.notice-detail-article {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.notice-detail-header {
  padding: 28px 32px 24px;
  border-bottom: none;
}
.notice-detail-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.notice-detail-date {
  font-size: 12.5px;
  color: var(--color-text-muted, #aaa);
}
.notice-detail-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text, #111);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
  line-height: 1.4;
}
.notice-detail-summary {
  font-size: 13.5px;
  color: var(--color-text-muted, #888);
  margin: 0;
}
.notice-detail-divider {
  height: 1px;
  background: var(--color-border, #eaecef);
  margin: 0 32px;
}
.notice-detail-body {
  padding: 28px 32px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--color-text, #333);
}
.notice-detail-footer {
  display: flex;
  gap: 10px;
}
.notice-detail-footer .btn {
  display: inline-flex; align-items: center; gap: 5px;
}

/* ── FAQ ── */
.faq-top-section {
  margin-bottom: 18px;
  padding: 18px;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 8px;
}
.faq-top-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.faq-top-head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text, #222);
}
.faq-top-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0e6ebd);
  background: var(--color-primary-pale, #e8f2ff);
  border-radius: 8px;
}
.faq-top-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}
.faq-top-card {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  color: var(--color-text, #222);
  background: var(--color-bg, #fafbfc);
  border: 1px solid var(--color-border, #edf0f3);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.faq-top-card:hover {
  background: var(--color-surface, #fff);
  border-color: var(--color-primary, #0e6ebd);
  transform: translateY(-1px);
}
.faq-top-card-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary, #0e6ebd);
  background: var(--color-primary-pale, #e8f2ff);
  border-radius: 50%;
}
.faq-top-card-text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}
.faq-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.faq-category-pill {
  display: inline-block;
  padding: 5px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-muted, #666);
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #ddd);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.15s;
}
.faq-category-pill:hover {
  border-color: var(--color-primary, #0e6ebd);
  color: var(--color-primary, #0e6ebd);
}
.faq-category-pill.active {
  background: var(--color-primary, #1a3a5c);
  border-color: var(--color-primary, #1a3a5c);
  color: #fff;
}
.faq-list {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px solid var(--color-border, #f0f0f0);
  scroll-margin-top: 86px;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:target {
  box-shadow: inset 3px 0 0 var(--color-primary, #0e6ebd);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 20px;
  cursor: pointer;
  list-style: none;
  transition: background 0.1s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--color-hover, #f8f9fb); }
.faq-q-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.faq-category-tag {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--color-primary-pale, #e8f2ff);
  color: var(--color-primary, #0e6ebd);
}
.faq-question-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text, #222);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted, #aaa);
  transition: transform 0.2s;
  display: flex; align-items: center;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { background: var(--color-hover, #f8f9fb); }
.faq-answer {
  padding: 14px 20px 16px 20px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--color-text-secondary, #444);
  border-top: 1px solid var(--color-border, #f0f0f0);
  background: var(--color-bg, #fafbfc);
}

/* ── Toolbar / Search ── */
.support-toolbar {
  margin-bottom: 16px;
}
.support-toolbar.qna-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
}
.qna-toolbar select.form-control {
  flex: 0 0 150px;
}
.qna-toolbar > .support-search-input {
  flex: 1 1 260px;
  padding-left: 14px !important;
}
.support-search-form {
  display: flex;
  gap: 8px;
  align-items: center;
}
.support-search-wrap {
  position: relative;
  flex: 1;
}
.support-search-icon {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-muted, #aaa);
  pointer-events: none;
}
.support-search-input {
  padding-left: 36px !important;
}

/* ── Empty State ── */
.support-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 20px;
  color: var(--color-text-muted, #bbb);
  text-align: center;
}
.support-empty-state p {
  margin: 0;
  font-size: 13.5px;
  color: var(--color-text-muted, #aaa);
}
.support-empty-state--full { padding: 56px 20px; }

/* ── QnA shared styles ── */
.support-table-wrap {
  border-radius: 10px;
  background: var(--color-surface, #fff);
}

.support-table .support-cell-id,
.support-table .support-cell-author,
.support-table .support-cell-date,
.support-table .support-cell-status {
  text-align: center;
  white-space: nowrap;
}

.support-table .support-cell-title {
  min-width: 0;
}

.notice-date,
.qna-private-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--color-badge-bg, #eef2f7);
  color: var(--color-text-muted, #666);
  font-size: 12px;
  font-weight: 700;
}

.qna-title-link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  color: var(--color-text, #222);
  font-weight: 700;
  text-overflow: ellipsis;
  vertical-align: middle;
  white-space: nowrap;
}

.qna-title-link:hover {
  color: var(--color-primary, #0e6ebd);
  opacity: 1;
}

.qna-title-meta {
  display: block;
  margin-top: 3px;
  color: var(--color-text-muted, #888);
  font-size: 12px;
}

.qna-thread-card,
.qna-answer-card,
.qna-form-card,
.qna-waiting {
  border: 1px solid var(--color-border, #eaecef);
  border-radius: 10px;
  background: var(--color-surface, #fff);
}

.qna-thread-head,
.qna-answer-head,
.qna-form-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--color-border, #eaecef);
}

.qna-thread-head h1,
.qna-form-head h1 {
  margin: 0;
  color: var(--color-text, #111);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.qna-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-text-muted, #888);
  font-size: 12.5px;
}

.qna-body,
.qna-answer-body,
.qna-form-body {
  padding: 24px;
  color: var(--color-text-secondary, #444);
  font-size: 14px;
  line-height: 1.85;
}

.qna-answer-card,
.qna-waiting {
  margin-top: 16px;
}

.qna-answer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.qna-answer-title,
.qna-waiting strong {
  color: var(--color-text, #222);
  font-size: 15px;
  font-weight: 700;
}

.qna-waiting {
  padding: 28px 24px;
  color: var(--color-text-muted, #888);
  text-align: center;
}

.qna-waiting strong {
  display: block;
  margin-bottom: 4px;
}

.qna-form-head p {
  margin: 6px 0 0;
  color: var(--color-text-muted, #888);
  font-size: 13px;
}

.qna-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* ── Responsive ── */
@media (max-width: 1080px) {
  .support-workspace { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .support-entry-grid,
  .support-topic-grid { grid-template-columns: 1fr; }
  .support-contact-panel { order: 0; }
  .support-toolbar.qna-toolbar,
  .support-search-form { align-items: stretch; flex-direction: column; }
  .support-toolbar.qna-toolbar .form-control,
  .support-toolbar.qna-toolbar .btn,
  .support-search-form .btn { width: 100%; }
}
@media (max-width: 600px) {
  .support-hero { padding: 32px 20px; }
  .support-hero-title { font-size: 22px; }
  .support-panel-head { align-items: flex-start; flex-direction: column; }
  .support-row { align-items: flex-start; flex-direction: column; }
  .support-row-date { align-self: flex-start; }
  .support-topic-card { min-height: 82px; }
  .notice-detail-header, .notice-detail-body { padding-left: 20px; padding-right: 20px; }
  .notice-detail-divider { margin: 0 20px; }
  .support-tab { padding: 10px 12px; font-size: 12.5px; }
  .support-table-wrap { overflow: visible; border: 0; background: transparent; }
  .support-table-wrap > .support-table { min-width: 0; }
  .support-table,
  .support-table tbody,
  .support-table tr,
  .support-table td { display: block; width: 100%; }
  .support-table thead { display: none; }
  .support-table tbody { display: grid; gap: 10px; }
  .support-table tbody tr {
    padding: 13px 14px;
    border: 1px solid var(--color-border, #eaecef);
    border-radius: 10px;
    background: var(--color-surface, #fff);
  }
  .support-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 5px 0;
    border-bottom: 0;
    text-align: right;
  }
  .support-table td::before {
    content: attr(data-label);
    color: var(--color-text-muted, #888);
    font-size: 11px;
    font-weight: 700;
  }
  .support-table td[colspan]::before,
  .support-table .support-cell-title::before { display: none; }
  .support-table .support-cell-title { text-align: left; }
  .qna-title-link { white-space: normal; }
  .qna-thread-head,
  .qna-answer-head,
  .qna-form-head,
  .qna-body,
  .qna-answer-body,
  .qna-form-body { padding-right: 18px; padding-left: 18px; }
  .qna-form-actions { flex-direction: column; }
  .qna-form-actions .btn { width: 100%; }
}
