/* ============================================================
   RRC 대회기록 — app.css
   네이비 베이스 + 톤다운 핑크 액센트
   ============================================================ */

:root {
  --bg:       #0a1428;
  --bg2:      #0f1a35;
  --surface:  #142042;
  --surface2: #1a2752;
  --line:     rgba(255,255,255,.07);
  --line2:    rgba(255,255,255,.12);

  --acc:      #ffffff;   /* 메인 액센트 흰색 */
  --acc2:     #e0e6f0;
  --acc-glow: rgba(255,255,255,.1);
  --acc-dark: #1a2752;

  --navy:     #1e2a52;
  --gold:     #d6b05a;

  --pink:     #e89bb5;   /* 대회 식별 핑크 (dot 전용) */

  --tx:       #eaeef5;
  --tx2:      #8492aa;
  --tx3:      #4a5570;

  --r:  16px;
  --r2: 12px;

  /* 종목별 색상 */
  --d-5k:   #5dade2;
  --d-10k:  #58d68d;
  --d-half: #f5b041;
  --d-full: #ec7063;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%; }

body {
  background: var(--bg);
  color: var(--tx);
  font-family: 'Pretendard', -apple-system, sans-serif;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
}

#root {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fade { animation: fadeIn .32s ease both; }
@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* ============================================================
   상단바
   ============================================================ */
.topbar {
  width: 100%;
  max-width: 480px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(10,20,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 8px; }
.brand b { font-size: 15px; font-weight: 800; letter-spacing: .06em; }
.brand .sub { font-size: 9px; color: var(--tx2); letter-spacing: .1em; line-height: 1; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffd700;
  box-shadow: 0 0 10px rgba(255,215,0,.6);
}

.back-link {
  font-size: 12px;
  color: var(--acc);
  text-decoration: none;
  font-weight: 600;
}

/* ============================================================
   메인
   ============================================================ */
.main {
  width: 100%;
  max-width: 480px;
  padding: 0 16px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero {
  padding: 16px 18px;
  background: linear-gradient(135deg, #1a2042 0%, #0f1830 100%);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
  margin-top: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.05);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--acc);
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.3;
}

.hero h1 span { color: var(--acc); }

.hero p {
  margin-top: 6px;
  font-size: 12px;
  color: var(--tx2);
  line-height: 1.5;
}

.ring {
  position: absolute;
  top: -30px; right: -30px;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.08);
  pointer-events: none;
}

.ring::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}

/* ============================================================
   섹션
   ============================================================ */
.section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px;
}

.section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--acc);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--tx2);
  letter-spacing: 0;
}

/* ============================================================
   대회 카드
   ============================================================ */
.race-card {
  display: block;
  padding: 16px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  text-decoration: none;
  color: inherit;
  margin-bottom: 10px;
  transition: transform .12s, border-color .12s;
}

.race-card:last-child { margin-bottom: 0; }
.race-card:active { transform: scale(.98); }
.race-card:hover { border-color: rgba(255,255,255,.25); }

.race-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

/* 대회 목록 row - 얇은 형태 */
.race-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  margin-bottom: 6px;
  transition: all .12s;
}

.race-row:last-child { margin-bottom: 0; }
.race-row:active { transform: scale(.98); }
.race-row:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--acc);
}

.race-row-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.race-row-date {
  font-size: 11px;
  color: var(--acc);
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
  font-weight: 600;
}
.race-hscroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 8px;
}

.race-mini-card {
  padding: 12px 10px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color .12s, transform .12s;
  min-width: 0;
}

.race-mini-card:active { transform: scale(.97); }
.race-mini-card:hover { border-color: rgba(255,255,255,.3); }

.race-mini-date {
  font-size: 10px;
  color: var(--acc);
  font-family: 'DM Mono', monospace;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: .04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.race-mini-name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.race-mini-loc {
  font-size: 10px;
  color: var(--tx2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 연도 탭 */
.year-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  overflow-x: auto;
}

.year-tab {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: var(--surface2);
  border: 1px solid var(--line2);
  color: var(--tx2);
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
  transition: all .12s;
}

.year-tab.active {
  background: var(--acc);
  color: #0a1428;
  border-color: var(--acc);
}

.race-card-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.race-name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.race-date {
  font-size: 11px;
  color: var(--tx2);
  font-family: 'DM Mono', monospace;
  flex-shrink: 0;
}

.race-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.race-loc {
  font-size: 11px;
  color: var(--tx2);
  white-space: nowrap;
}

/* 종목 배지 */
.dist-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.dist-5k   { background: rgba(93,173,226,.15);  color: var(--d-5k);  border: 1px solid rgba(93,173,226,.3);  }
.dist-10k  { background: rgba(88,214,141,.15);  color: var(--d-10k); border: 1px solid rgba(88,214,141,.3);  }
.dist-half { background: rgba(245,176,65,.15);  color: var(--d-half);border: 1px solid rgba(245,176,65,.3);  }
.dist-full { background: rgba(236,112,99,.15);  color: var(--d-full);border: 1px solid rgba(236,112,99,.3);  }

/* ============================================================
   PB 랭킹
   ============================================================ */
.pb-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  overflow-x: auto;
}

.pb-tab {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  background: var(--surface2);
  border: 1px solid var(--line2);
  color: var(--tx2);
  white-space: nowrap;
  transition: all .12s;
}

.pb-tab.active {
  background: var(--acc);
  color: #0a1428;
  border-color: var(--acc);
}

.pb-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.pb-row:last-child { border-bottom: none; }

.pb-mid {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.pb-rank {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--tx2);
  text-align: center;
}

.pb-rank.gold   { color: var(--gold); }
.pb-rank.silver { color: #c0c0c0; }
.pb-rank.bronze { color: #cd7f32; }

.pb-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--tx);
  text-decoration: none;
  flex-shrink: 0;
}

.pb-name:hover { color: var(--acc); }

.pb-race {
  font-size: 11px;
  color: var(--tx2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.pb-time {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--acc);
}

.empty {
  padding: 24px;
  text-align: center;
  color: var(--tx2);
  font-size: 13px;
  line-height: 1.7;
}

/* ============================================================
   대회 상세 (race.html)
   ============================================================ */
.race-detail {
  padding: 24px 20px;
  background: linear-gradient(135deg, #1a2042 0%, #0f1830 100%);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}

.race-detail h1 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.race-detail .meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--tx2);
}

.race-detail .meta-row .dot-mini {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--tx3);
}

/* 종목 탭 */
.dist-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.dist-tab {
  padding: 7px 12px;
  border-radius: 10px;
  cursor: pointer;
  background: var(--surface2);
  border: 1.5px solid var(--line2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .12s;
}

.dist-tab.active {
  border-color: var(--acc);
  background: var(--acc-glow);
}

.dist-tab-count {
  font-size: 11px;
  color: var(--tx2);
  font-family: 'DM Mono', monospace;
}

/* 한 줄 기록 */
.record-row-1 {
  display: grid;
  grid-template-columns: 28px auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 10px;
  margin-bottom: 6px;
}

.record-row-1:last-child { margin-bottom: 0; }

.record-pace-inline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--tx2);
  text-align: right;
  white-space: nowrap;
}

/* 기록표 */
.record-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.record-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 10px;
}

.record-rank {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--tx2);
  text-align: center;
}

.record-rank.gold   { color: var(--gold); }
.record-rank.silver { color: #c0c0c0; }
.record-rank.bronze { color: #cd7f32; }

.record-name {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--tx);
}

.record-name:hover { color: var(--acc); }

.record-pace {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--tx2);
}

.record-time {
  font-family: 'DM Mono', monospace;
  font-size: 15px;
  font-weight: 500;
  color: var(--acc);
}

/* 사진 갤러리 */
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.photo {
  aspect-ratio: 1;
  background: var(--surface2);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s;
}

.photo:active { transform: scale(.96); }
.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 사진 모달 */
.photo-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .2s;
}

.photo-modal.on { opacity: 1; }

.photo-modal img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
}

.photo-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  color: var(--tx);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
}

/* ============================================================
   개인 페이지 (member.html)
   ============================================================ */
.member-header {
  padding: 24px 20px;
  background: linear-gradient(135deg, #1a2042 0%, #0f1830 100%);
  border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.2);
  text-align: center;
}

.member-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--surface2);
  border: 2px solid var(--acc);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--acc);
  margin: 0 auto 12px;
}

.member-name {
  font-size: 22px;
  font-weight: 800;
}

.member-stat {
  font-size: 12px;
  color: var(--tx2);
  margin-top: 6px;
}

.pb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}

.pb-card {
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: var(--r2);
  padding: 10px 6px;
  min-width: 0;
  text-align: center;
}

.pb-card.has-record {
  border-color: rgba(255,255,255,.25);
}

.pb-card-dist {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.pb-card-time {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--tx);
  margin-bottom: 2px;
  white-space: nowrap;
  letter-spacing: -.02em;
}

.pb-card-time.empty { color: var(--tx3); font-size: 11px; }

.pb-card-pace {
  font-size: 9px;
  color: var(--tx2);
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 10px;
  margin-bottom: 6px;
  text-decoration: none;
  color: inherit;
}

.history-row:last-child { margin-bottom: 0; }

.history-info {
  min-width: 0;
}

.history-race {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.history-date {
  font-size: 10px;
  color: var(--tx2);
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
}

.history-pace-inline {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--tx2);
  text-align: right;
  white-space: nowrap;
}

.history-time {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--acc);
  text-align: right;
  white-space: nowrap;
}

.history-pace {
  font-size: 10px;
  color: var(--tx2);
  font-family: 'DM Mono', monospace;
  margin-top: 3px;
}

/* ============================================================
   어드민
   ============================================================ */
.admin {
  width: 100%;
  max-width: 480px;
  padding: 24px 16px 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.row:last-child { margin-bottom: 0; }
.row label { font-size: 12px; font-weight: 600; color: var(--tx2); }
.row-inline { display: flex; gap: 8px; align-items: center; }

.si {
  background: var(--surface2);
  border: 1.5px solid var(--line2);
  border-radius: 10px;
  color: var(--tx);
  font-family: 'Pretendard', sans-serif;
  font-size: 13px;
  padding: 9px 11px;
  outline: none;
  transition: border-color .18s;
  width: 100%;
  box-sizing: border-box;
}

.si:focus { border-color: var(--acc); }

.sb {
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 10px;
  color: var(--tx);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
  flex-shrink: 0;
}

.sb:hover { background: var(--navy); }
.sb.danger { color: #ff8a73; border-color: rgba(255,138,115,.3); }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--r2);
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .12s;
}

.btn:active { transform: scale(.97); opacity: .85; }
.btn:disabled { opacity: .4; pointer-events: none; }

.btn-acc   { background: var(--acc); color: #0a1428; }
.btn-ghost { background: var(--surface2); color: var(--tx); border: 1px solid var(--line2); }

.tnum { font-variant-numeric: tabular-nums; }

#toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface2);
  border: 1px solid var(--line2);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  z-index: 99;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  white-space: nowrap;
}

/* 어드민 카드 */
.acard {
  background: var(--surface2);
  border: 1px solid var(--line2);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}

.acard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.acard-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.rm {
  background: none;
  border: none;
  color: var(--tx3);
  cursor: pointer;
  font-size: 18px;
  padding: 2px 6px;
  border-radius: 6px;
  line-height: 1;
  flex-shrink: 0;
}

.rm:hover { color: #ff8a73; background: rgba(255,100,80,.1); }

.flabel { font-size: 11px; color: var(--tx2); margin-bottom: 4px; }

/* safe-area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .main, .admin { padding-bottom: calc(48px + env(safe-area-inset-bottom)); }
}

/* 푸터 */
.foot {
  margin-top: 20px;
  text-align: center;
}

.adminlink {
  font-size: 10px;
  color: var(--tx3);
  text-decoration: none;
  letter-spacing: .12em;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .15s;
}

.adminlink:hover { color: var(--tx2); }

/* ============================================================
   PC 반응형 (768px 이상)
   ============================================================ */

/* ============================================================
   PC 반응형 (768px 이상)
   ============================================================ */
@media (min-width: 768px) {
  /* 상단바 */
  .topbar {
    max-width: 960px !important;
    padding: 20px 32px !important;
  }
  .brand b { font-size: 17px; }
  .brand .sub { font-size: 10px; }
  .back-link { font-size: 14px; }

  /* 메인 컨테이너 */
  .main {
    max-width: 960px !important;
    padding: 0 32px 64px !important;
    gap: 20px !important;
  }

  /* 히어로 박스 */
  .hero {
    padding: 40px 48px !important;
  }
  .hero h1 { font-size: 32px !important; }
  .hero p { font-size: 15px !important; }
  .hero-badge { font-size: 13px !important; }

  /* 섹션 (대회 목록, PB 랭킹) */
  .section {
    padding: 28px 32px !important;
  }
  .section-title { font-size: 15px !important; }
  .section-title-sub { font-size: 12px !important; }

  /* 대회 리스트: 2열 */
  .races-by-year {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .race-row {
    margin-bottom: 0 !important;
  }
  .race-row-name { font-size: 15px !important; }
  .race-row-date { font-size: 12px !important; }

  /* PB 랭킹 */
  .pb-row {
    padding: 14px 0 !important;
  }
  .pb-name { font-size: 15px !important; }
  .pb-time { font-size: 15px !important; }
  .pb-race { font-size: 12px !important; }

  /* 대회 상세 페이지 */
  .race-detail {
    width: 100% !important;
    padding: 40px 48px !important;
  }
  .race-detail h1 { font-size: 30px !important; }
  .race-detail .meta-row { font-size: 14px !important; }

  /* 종목 미니 탭 */
  .dist-tabs {
    width: 100% !important;
    padding: 20px 0 !important;
  }
  .dist-tab {
    padding: 10px 18px !important;
    font-size: 13px !important;
  }

  /* 기록 리스트: 2열 */
  .rec-rows {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .rec-row {
    padding: 14px 20px !important;
    font-size: 14px !important;
  }

  /* 기록 없음 empty 상태도 넓게 */
  .main > .empty,
  .main > #recordTable {
    width: 100% !important;
  }

  /* 멤버 페이지 */
  .member-header {
    width: 100% !important;
    padding: 40px 48px !important;
  }
  .member-header h1 { font-size: 30px !important; }

  /* 푸터 */
  .foot { margin-top: 32px !important; }
}
