/* ============================================================
   common_optimized.css — N1000~N1003 전용 최적화 CSS
   (common.css에서 사용 클래스만 추출)
   ============================================================ */


/* ──────────────────────────────────────
   01. 로컬 폰트 (Spoqa Han Sans Neo)
────────────────────────────────────── */
@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 100;
  font-style: normal;
  src: url('../font/SpoqaHanSansNeo-Thin.woff2') format('woff2'),
       url('../font/SpoqaHanSansNeo-Thin.woff')  format('woff');
}
@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 300;
  font-style: normal;
  src: url('../font/SpoqaHanSansNeo-Light.woff2') format('woff2'),
       url('../font/SpoqaHanSansNeo-Light.woff')  format('woff');
}
@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 400;
  font-style: normal;
  src: url('../font/SpoqaHanSansNeo-Regular.woff2') format('woff2'),
       url('../font/SpoqaHanSansNeo-Regular.woff')  format('woff');
}
@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 500;
  font-style: normal;
  src: url('../font/SpoqaHanSansNeo-Medium.woff2') format('woff2'),
       url('../font/SpoqaHanSansNeo-Medium.woff')  format('woff');
}
@font-face {
  font-family: 'Spoqa Han Sans Neo';
  font-weight: 700;
  font-style: normal;
  src: url('../font/SpoqaHanSansNeo-Bold.woff2') format('woff2'),
       url('../font/SpoqaHanSansNeo-Bold.woff')  format('woff');
}

/* Roboto (숫자/금액) */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');


/* ──────────────────────────────────────
   02. CSS 변수
────────────────────────────────────── */
:root {
  /* 브랜드 컬러 */
  --color_primary:      #5628EE;
  --color_primary_light:#7B56EE;

  /* 텍스트 컬러 */
  --color_black:        #000000;
  --color_gray1:        #424242;
  --color_gray2:        #666666;
  --color_gray3:        #999999;

  /* 배경 / 보더 컬러 */
  --color_bg:           #ffffff;
  --color_bg_gray:      #f2f2f2;
  --color_bg_dark:      #f7f7f7;
  --color_border:       #eeeeee;
  --color_border_dark:  #dddddd;
  --color_white:        #ffffff;

  /* 상태 컬러 */
  --color_red:          #f44336;
  --color_progress:     #ff6161;
  --color_cyan:         #06BEE1;

  /* 폰트 */
  --font_kr:   'Spoqa Han Sans Neo', sans-serif;
  --font_en:   'Roboto', sans-serif;

  /* 공통 여백 */
  --page_side: 20px;

  /* 헤더 높이 */
  --header_h:  55px;

  /* ── 호환성 별칭 (자동 생성 HTML에서 사용되는 변수명) ── */
  --color-primary:       #5628EE;
  --color-primary-light: rgba(86, 40, 238, 0.12);
  --color-text:          #000000;
  --color-text-sub:      #666666;
  --color-text-gray:     #999999;
  --color-bg-sub:        #f2f2f2;
  --color-bg:            #ffffff;
  --color-line:          #eeeeee;
  --color-border:        #dddddd;
  --color-red:           #ff6161;
}


/* ──────────────────────────────────────
   03. 기본 body / screen
────────────────────────────────────── */
html *, body * { font-family: var(--font_kr); font-weight: 500; }

body {
  font-family: var(--font_kr);
  font-weight: 500;
  color: var(--color_black);
  background: var(--color_bg);
  -webkit-font-smoothing: antialiased;
}

.screen {
  width: 100%;
  min-height: 100vh;
  background: var(--color_bg);
}

.screen main {
  padding-bottom: 20px;
}


/* ──────────────────────────────────────
   04. 헤더 (sticky 고정)
────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--color_bg);
}

/* 뒤로가기형 헤더 (상세 페이지) */
.header_detail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header_h);
  padding: 0 var(--page_side);
  position: relative;
}
.header_detail .header_back {
  position: absolute;
  left: var(--page_side);
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_detail .header_back img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.header_detail .header_title {
  font-size: 17px;
  font-weight: 500;
  color: var(--color_black);
  line-height: 25px;
  white-space: nowrap;
}

/* 타이틀형 헤더 (메인 페이지 — MY자산 등) */
.nav_bar,
.header_my {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: var(--color_bg);
}
.header_top,
.nav_bar_row {
  height: var(--header_h);
  padding: 0 var(--page_side);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_top_title,
.nav_bar_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color_black);
}
.header_top_icons,
.nav_bar_icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header_top_icons button,
.nav_bar_icons li,
.nav_bar_icons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header_top_icons button img,
.nav_bar_icons img { width: 24px; height: 24px; object-fit: contain; }

/* 메인 탭바 (자산/소비/생활) */
.tab_bar_my {
  display: flex;
  align-items: stretch;
  gap: 6px;
  height: 40px;
  padding: 0 var(--page_side);
  border-bottom: 1px solid var(--color_border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab_bar_my::-webkit-scrollbar { display: none; }
.tab_item_my {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color_gray2);
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  gap: 0;
}
.tab_item_my > span:first-child { line-height: 37px; }
.tab_item_my .tab_underline { display: block; height: 3px; width: 100%; background: transparent; border-radius: 2px 2px 0 0; }
.tab_item_my.is_active { color: var(--color_primary); font-weight: 700; }
.tab_item_my.is_active .tab_underline { background: var(--color_primary); }

/* tab_underline (단독 사용 유지) */
.tab_underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 1.5px 1.5px 0 0;
  background: transparent;
}


/* ──────────────────────────────────────
   05. 버튼
────────────────────────────────────── */
.btn_close {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.btn_full { width: 100%; }

.btn_primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: var(--color_primary);
  color: var(--color_bg);
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.btn_primary:active {
  opacity: 0.85;
}

/* 배너 화살표 */
.notice_banner_arrow img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}


/* ──────────────────────────────────────
   06. 컬러 유틸리티
────────────────────────────────────── */
.color_primary { color: var(--color_primary); }


/* ──────────────────────────────────────
   07. 간격 유틸리티
────────────────────────────────────── */
.gap_12 { gap: 12px; }


/* ──────────────────────────────────────
   08. 아이콘 유틸리티
────────────────────────────────────── */
.ic_ask { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; cursor: pointer; }


/* ──────────────────────────────────────
   20. N1003 전용 컴포넌트
────────────────────────────────────── */

/* 공지 배너 */
.notice_banner_wrap { padding: 20px var(--page_side) 0; }
.notice_banner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; background: rgba(6,190,225,0.05); border-radius: 8px;
  padding: 8px 16px; border: 1px solid rgba(6,190,225,0.1); cursor: pointer; text-align: left;
  height: 44px;
}
.notice_banner_inner { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.notice_banner_label {
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: #fff;
  background: #06bee1; border-radius: 100px; padding: 1px 6px; line-height: 16px;
}
.notice_banner_text { font-size: 13px; color: var(--color_black); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 19px; }
.notice_banner_text em { color: #0092ae; font-style: normal; }
.notice_banner_arrow { width: 16px; height: 16px; flex-shrink: 0; transform: rotate(90deg); }

/* 소비 요약 카드 */
.sec_spend_summary { padding: 20px var(--page_side) 0; }
.spend_summary_card {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid #eee; box-shadow: 0 0 5px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 20px;
}
.spend_summary_title { display: flex; align-items: flex-start; gap: 12px; }
.spend_icon_wrap { width: 40px; height: 40px; flex-shrink: 0; padding: 4px 0; }
.spend_icon_wrap img { width: 100%; height: 100%; object-fit: contain; }
.spend_title_texts { display: flex; flex-direction: column; }
.spend_month_row { display: flex; align-items: center; gap: 5px; height: 26px; line-height: 30px; }
.spend_month { font-size: 21px; font-weight: 500; color: var(--color_black); }
.spend_period { font-size: 14px; font-weight: 500; color: var(--color_gray2); }
.spend_amount_row { display: flex; align-items: center; gap: 1px; }
.spend_amount_num { font-size: 25px; font-weight: 500; color: var(--color_primary); line-height: 27px; }
.spend_amount_unit { font-size: 21px; font-weight: 500; color: var(--color_black); line-height: 30px; }

/* 막대 차트 */
.chart_section { display: flex; flex-direction: column; gap: 10px; }
.chart_unit_label { font-size: 14px; font-weight: 500; color: var(--color_gray2); text-align: right; line-height: 21px; }
.chart_bars_wrap { position: relative; }
.chart_baseline { height: 1px; background: var(--color_border); width: 100%; }
.chart_baseline_top { /* 필요시 사용 */ }
.chart_baseline_bottom { /* 필요시 사용 */ }
.chart_bars { display: flex; align-items: flex-end; gap: 20px; height: 95px; }
.chart_bar_col { flex: 0 0 30px; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; }
.chart_bar_val { font-size: 13px; color: #777; font-weight: 500; line-height: 19px; }
.chart_bar_val.is_active { color: #6f3cff; }
.chart_bar_rect { width: 30px; border-radius: 8px 8px 0 0; background: #eee; margin-top: 4px; }
.chart_bar_rect.is_active { background: #6f3cff; }

/* 차트 바 높이 유틸리티 (20섹션 기준, px값) */
.bar_h_30 { height: 30px; }
.bar_h_40 { height: 40px; }
.bar_h_50 { height: 50px; }
.bar_h_60 { height: 60px; }
.bar_h_70 { height: 70px; }
.bar_h_90 { height: 90px; }

.chart_months { display: flex; gap: 20px; list-style: none; padding: 0; margin: 0; }
.chart_month_item { flex: 0 0 30px; text-align: center; font-size: 12px; font-weight: 500; color: var(--color_gray2); line-height: 18px; }
.chart_month_item.is_active { color: #6f3cff; white-space: nowrap; }

/* 알림 박스 */
.notice_info_box { background: #f2f2f2; border-radius: 8px; padding: 10px 20px; }
.notice_info_row { display: flex; align-items: center; gap: 2px; }
.notice_info_txt { font-size: 13px; font-weight: 500; color: var(--color_black); line-height: 19px; flex: 1; }
.notice_info_sub { font-size: 13px; font-weight: 500; color: var(--color_gray2); line-height: 19px; padding-left: 2px; }
.notice_emoji { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; }

/* 소비 순위 카드 */
.sec_rank { padding: 20px var(--page_side) 0; }
.rank_card {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid #eee; box-shadow: 0 0 5px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 16px; position: relative; min-height: 297px;
}
.rank_title_area { display: flex; flex-direction: column; }
.rank_title_line1 { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.rank_title_line1 .color_primary { color: var(--color_primary); }
.rank_title_line2 { display: flex; align-items: center; gap: 4px; font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.rank_title_line2 img { width: 16px; height: 16px; transform: rotate(90deg); }
.rank_3d_wrap { display: flex; justify-content: center; padding: 8px 0; position: absolute; left: 50%; transform: translateX(-50%); top: 110px; }
.rank_3d_img { width: 96px; height: 90px; object-fit: contain; }
.rank_btn {
  display: flex; align-items: center; justify-content: center; gap: 4px;
  width: 100%; height: 45px; background: var(--color_bg_gray);
  border: none; border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--color_black); cursor: pointer;
  position: absolute; bottom: 20px; left: 20px; width: calc(100% - 40px);
}
.rank_btn img { width: 12px; height: 12px; }

/* 소비자산 비교 카드 */
.sec_compare { padding: 40px var(--page_side) 0; }
.compare_card {
  background: #fff; border-radius: 8px; padding: 20px;
  border: 1px solid #ddd; box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; gap: 20px;
}
.compare_title_row { display: flex; align-items: center; gap: 4px; }
.compare_title_row img { width: 16px; height: 16px; transform: rotate(90deg); }
.compare_title { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.compare_subtitle { font-size: 15px; font-weight: 500; color: var(--color_black); }
.compare_empty      { display: flex; align-items: center; gap: 8px; padding: 10px 0; }
.compare_empty_txt  { font-size: 17px; color: var(--color_gray2); line-height: 25px; }

/* 이번 달 소비 목록 */
.sec_spend_list { padding: 40px var(--page_side) 32px; display: flex; flex-direction: column; gap: 30px; }
.spend_list_header { display: flex; align-items: center; justify-content: space-between; height: 30px; }
.spend_list_title { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.btn_collapse {
  font-size: 12px; font-weight: 500; color: var(--color_black);
  background: #f2f2f2; border: none; border-radius: 6px;
  padding: 5px 15px; cursor: pointer; line-height: 18px;
}
.spend_group { display: flex; flex-direction: column; gap: 5px; }
.spend_group.gap_12 { gap: 12px; }
.spend_group_sum { display: flex; align-items: center; justify-content: space-between; padding: 2px 0; }
.spend_group_left { display: flex; align-items: center; gap: 4px; }
.spend_group_right { display: flex; align-items: center; gap: 8px; }
.spend_group_name { font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 25px; }
.spend_group_count { font-size: 17px; font-weight: 500; color: #5831d7; line-height: 25px; }
.spend_group_total { font-size: 17px; font-weight: 500; color: var(--color_black); }
.spend_group_arrow_s { width: 12px; height: 12px; object-fit: contain; transform: rotate(90deg); }
.spend_group_toggle { width: 16px; height: 16px; object-fit: contain; }
.spend_list_card {
  background: #fff; border: 1px solid #ddd; box-shadow: 0 0 5px rgba(0,0,0,0.06);
  border-radius: 12px; padding: 20px;
  display: flex; flex-direction: column; gap: 20px;
}
.spend_item { display: flex; align-items: center; gap: 12px; height: 50px; }
.spend_item_logo { width: 30px; height: 30px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.spend_item_body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.spend_item_name { font-size: 15px; font-weight: 500; color: var(--color_gray2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 22px; }
.spend_item_amount { font-size: 20px; font-weight: 500; color: var(--color_black); font-family: var(--font_en); line-height: 25px; }


/* ──────────────────────────────────────
   21. N1000 전용 컴포넌트 (소비 메인 데이터 있음)
────────────────────────────────────── */

/* 소비 순위 카드 - 데이터 있음 상태 */
.rank_card.is_data { min-height: auto; }
.rank_data_title { display: flex; flex-direction: column; gap: 0; }
.rank_data_title_top { display: flex; align-items: center; gap: 4px; }
.rank_data_title_txt { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.rank_data_title_top img { width: 16px; height: 16px; object-fit: contain; transform: rotate(90deg); }
.rank_data_subtitle { font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 26px; }

/* 순위 그래픽 영역 */
.rank_data_graphic_wrap { display: flex; flex-direction: column; align-items: center; gap: 0; height: 180px; position: relative; width: 122px; margin: 0 auto; }
.rank_data_circle {
  width: 100px; height: 100px; border-radius: 50%;
  background: #f0efff; overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rank_data_circle img { width: 90px; height: 90px; object-fit: contain; }
.rank_data_info { position: absolute; top: 112px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; white-space: nowrap; }
.rank_data_category { font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 25px; }
.rank_data_amount_row { display: flex; align-items: center; gap: 4px; padding-left: 16px; }
.rank_data_amount { font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 25px; }
.rank_data_amount_row img { width: 12px; height: 12px; transform: rotate(90deg); }
.rank_data_diff { display: flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 500; line-height: 18px; justify-content: center; }
.rank_diff_up   { color: #f44336; }
.rank_diff_down { color: #2196f3; }

/* 순위 하위 리스트 */
.rank_data_list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 15px; width: 100%; }
.rank_data_list_item { display: flex; align-items: center; gap: 8px; height: 45px; position: relative; }
.rank_data_list_icon { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.rank_data_list_name { flex: 1; font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 25px; }
.rank_data_list_right { position: absolute; right: 0; display: flex; align-items: center; gap: 4px; }
.rank_data_list_amounts { display: flex; flex-direction: column; align-items: flex-end; }
.rank_data_list_amount { font-family: var(--font_en); font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 22px; }
.rank_data_list_diff { display: flex; align-items: center; gap: 2px; font-size: 13px; font-weight: 500; line-height: 19px; justify-content: flex-end; }
.rank_data_list_arrow { width: 12px; height: 12px; transform: rotate(90deg); }

/* 고정소비 카드 */
.sec_fixed_spend { padding: 20px var(--page_side) 0; }
.fixed_spend_card {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid #eee; box-shadow: 0 0 5px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; gap: 30px;
}
.fixed_spend_head { display: flex; flex-direction: column; }
.fixed_spend_title_row { display: flex; align-items: center; gap: 4px; }
.fixed_spend_title_txt { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.fixed_spend_title_row img { width: 16px; height: 16px; object-fit: contain; transform: rotate(90deg); }
.fixed_spend_sub_row { display: flex; align-items: center; gap: 5px; }
.fixed_spend_sub_txt { font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 26px; }
.fixed_spend_sub_txt em { color: var(--color_primary); font-style: normal; }

/* 고정소비 리스트 */
.fixed_spend_list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 20px; }
.fixed_spend_item { display: flex; align-items: center; gap: 8px; height: 45px; position: relative; }
.fixed_spend_icon { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.fixed_spend_name { flex: 1; font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 25px; }
.fixed_spend_item_right { position: absolute; right: 0; display: flex; align-items: center; gap: 4px; }
.fixed_spend_amount { font-family: var(--font_en); font-size: 17px; font-weight: 500; color: var(--color_black); line-height: 22px; }
.fixed_spend_item_arrow { width: 12px; height: 12px; transform: rotate(90deg); }

/* 비교카드 - 데이터 있음 상태 */
.compare_rank_row { display: flex; align-items: center; gap: 76px; }
.compare_rank_info { display: flex; flex-direction: column; }
.compare_rank_label { font-size: 15px; font-weight: 500; color: #777; line-height: 22px; }
.compare_rank_value { font-size: 25px; font-weight: 500; color: var(--color_primary); line-height: 37px; }
.compare_rank_icon { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }


/* ──────────────────────────────────────
   22. N1001 전용 컴포넌트
────────────────────────────────────── */

/* 카드 2줄 큰 타이틀 */
.card_big_title { display: flex; flex-direction: column; gap: 0; margin-bottom: 16px; }
.card_big_title_top { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }
.card_big_title_bottom { display: flex; align-items: center; gap: 4px; }
.card_big_title_main { font-size: 21px; font-weight: 700; color: var(--color_black); line-height: 31px; }
.card_big_title_arrow { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; transform: rotate(90deg); }

/* 카드 빈 상태 그래픽 */
.card_empty_graphic { display: flex; justify-content: center; align-items: center; padding: 16px 0; }
.card_empty_graphic_img { width: 120px; height: 120px; object-fit: contain; }

/* CTA 버튼 섹션 */
.sec_cta { padding: 20px var(--page_side) 20px; }

/* 비교 카드 순위값 행 */
.compare_title_top { font-size: 20px; font-weight: 500; color: var(--color_black); line-height: 30px; }

/* N1001 비교 카드 ?% 박스 */
.rank_unknown_box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: var(--color_bg_gray);
  border-radius: 4px; font-size: 13px; font-weight: 700; color: var(--color_black);
  margin: 0 2px; vertical-align: middle;
}


/* ──────────────────────────────────────
   23. N1002 전용 컴포넌트 (잠금 상태)
────────────────────────────────────── */

/* 잠금 섹션 */
.sec_lock { display: block; text-align: left; padding: 40px var(--page_side) 0; }
.lock_card {
  width: 100%;
  border-radius: 12px; padding: 20px;
  border: 1px solid #eee; box-shadow: 0 0 10px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center; gap: 30px;
}
.lock_content { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 40px 0; width: 100%; }
.lock_icon { width: 100px; height: 100px; object-fit: contain; margin-bottom: 0; }
.lock_txt { font-size: 16px; color: var(--color_black); line-height: 25px; text-align: center; }
