@charset "UTF-8";

/**
 * 기본 스타일 (Reset + Common)
 * 브라우저 기본 스타일 초기화와 공통 스타일, CSS 변수를 포함합니다.
 */

/* ========================================
   CSS Reset - 브라우저 기본 스타일 초기화
======================================== */

/* 모든 요소의 기본 마진, 패딩, 박스 사이징 초기화 */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5 시맨틱 요소들을 블록 레벨로 설정 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* 기본 폰트 및 라인 높이 설정 - iOS Safari fixed 위치 문제 해결을 위한 설정 추가 */
html {
  font-size: 16px;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: 100%; /* iOS fixed 위치 기준점 설정 */
  overflow-x: hidden; /* 가로 스크롤 방지 */
}

/* 기본 폰트 패밀리 및 색상 설정 - iOS Safari fixed 위치 문제 해결 */
body {
  font-family: var(--font-default);
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  background-color: #ffffff; /* 기본 바탕색 흰색 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%; /* iOS fixed 요소 기준점 설정 */
  min-height: 100vh; /* dvh 미지원 브라우저 fallback */
  min-height: 100dvh; /* iOS Safari 주소창 높이 변화 대응 */
  position: relative; /* fixed 요소의 기준점 명확히 설정 */
  overflow-x: hidden; /* 가로 스크롤 방지 */
  -ms-overflow-style: none; /* IE/Edge 스크롤바 숨김 (필요시) */
  overscroll-behavior: none; /* iOS 바운스 스크롤 방지 */
  -webkit-overscroll-behavior: none; /* 크로스 브라우징: webkit */
  -webkit-overflow-scrolling: auto; /* iOS 기본 스크롤 동작 사용 (터치 관성 스크롤 비활성화로 fixed 안정화) */
}

/* 제목 요소들의 기본 스타일 초기화 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/* 문단 요소 기본 스타일 */
p {
  margin: 0;
}

/* ========================================
   타이포그래피 기본 설정 (h3, h4, p)
   - 요구사항: PC h3/h4/p = 28/24/20, 모바일 = 24/20/16
   - 제목 계열(h1~h6) 폰트웨이트 600
   - h4 하단 여백 44px → 20px
======================================== */

/* 제목 공통 폰트 두께 설정 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: var(--text-primary);
}

/* PC 기본 크기 (기본 스타일) */
h3 {
  font-size: 28px; /* 변경사항: h3 PC 기본 28px */
}
h4 {
  font-size: 24px; /* 변경사항: h4 PC 기본 24px */
  line-height: 1.5;
}
p {
  font-size: 20px; /* 변경사항: 본문 PC 기본 20px */
}

/* 모바일(640px 이하) 크기 조정 */
@media (max-width: 640px) {
  h3 {
    font-size: 24px; /* 변경사항: h3 모바일 24px */
  }
  h4 {
    font-size: 20px; /* 변경사항: h4 모바일 20px */
  }
  p {
    font-size: 16px; /* 변경사항: 본문 모바일 16px */
  }
}

/* 링크 기본 스타일 */
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  outline: 0;
}

/* 변경사항: 모바일에서 버튼과 링크 탭 하이라이트 제거 */
* {
  -webkit-tap-highlight-color: transparent;
}

/* 이미지 기본 스타일 */
img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

/* 목록 기본 스타일 초기화 */
ul,
ol {
  list-style: none;
}

/* 테이블 기본 스타일 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 폼 요소들 기본 스타일 초기화 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}

/* 버튼 기본 스타일 */
button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* 인풋 필드 기본 스타일 */
input,
textarea {
  outline: none;
  border: none;
  background: transparent;
}

input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  outline-offset: -2px;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* 선택 요소 기본 스타일 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 텍스트 영역 기본 스타일 */
textarea {
  resize: vertical;
  overflow: auto;
}

/* 인용문 기본 스타일 */
blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* 수평선 기본 스타일 */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
}

/* 코드 요소 기본 스타일 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* 작은 텍스트 기본 스타일 */
small {
  font-size: 80%;
}

/* 위첨자, 아래첨자 기본 스타일 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 숨김 텍스트 (스크린 리더 전용) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 포커스 아웃라인 제거 (접근성을 위해 주의해서 사용) */
*:focus {
  outline: none;
}

/* 접근성을 위한 포커스 표시 (키보드 사용자용) */
/* 변경사항: 마우스/키보드 사용 시에만 포커스 표시, 터치 디바이스에서는 제거 */
@media (hover: hover) and (pointer: fine) {
  *:focus-visible {
    outline: 1px solid var(--primary-color);
    outline-offset: 1px;
  }
}
@media (hover: none) and (pointer: coarse) {
  *:focus-visible {
    outline: none;
  }
}

/* 미디어 요소들의 기본 스타일 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/* SVG 기본 스타일 */
svg {
  overflow: hidden;
}

/* 필드셋 기본 스타일 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/* 범례 기본 스타일 */
legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

/* 프로그레스 바 기본 스타일 */
progress {
  vertical-align: baseline;
}

/* 템플릿 요소 숨김 */
template {
  display: none;
}

/* 숨김 속성 */
[hidden] {
  display: none;
}

/* ========================================
   CSS 커스텀 속성 (변수) 정의
======================================== */

:root {
  /* 폰트 패밀리 변수 */
  /* 주 폰트: Pretendard Variable, 대체 폰트: Noto Sans KR */
  --font-default: "Pretendard Variable", "Pretendard", "Noto Sans KR",
    sans-serif;

  /* 컬러 팔레트 */
  --primary-color: #0047bb; /* Facebook Blue 메인 컬러 */
  --secondary-color: #daa520; /* 골드 컬러 */
  --accent-color: #f42736; /* 빨간색 강조 컬러 */

  /* [변경내용] 디자인 시스템의 그레이 스케일 값을 업데이트 */
  --GRAY_01: #f5f5f5;
  --GRAY_02: #dcdcdc;
  --GRAY_03: #cccccc;
  --GRAY_04: #bcbcbc;
  --black: #000000;
  --black-11: #111111;

  /* 폰트 사이즈 (클램프 사이즈) */
  --clamp-size-16: clamp(12px, calc(0.5vw + 5px), 16px);
  --clamp-size-18: clamp(14px, calc(0.6vw + 6px), 18px);
  --clamp-size-20: clamp(16px, calc(0.7vw + 7px), 20px);
  --clamp-size-24: clamp(20px, calc(0.8vw + 8px), 24px);
  --clamp-size-32: clamp(24px, calc(1vw + 10px), 32px);
  --clamp-size-40: clamp(28px, calc(1.2vw + 10px), 40px);
  --clamp-size-48: clamp(32px, calc(1.3vw + 12px), 48px);
  --clamp-size-56: clamp(28px, calc(1.5vw + 12px), 56px);
  --clamp-size-64: clamp(48px, calc(2vw + 20px), 64px);
  --clamp-size-100: clamp(60px, calc(4vw + 20px), 100px);

  /* 텍스트 컬러 */
  --text-primary: #000000; /* 주요 텍스트 */
  --text-secondary: #747474; /* 보조 텍스트 */
  --text-muted: #bcbcbc; /* 흐린 텍스트 */
  --text-white: #ffffff; /* 흰색 텍스트 */
  --text-highlight: #0047bb; /* 하이라이트 텍스트 */

  /* 보더 컬러 */
  --border-light: #e5e5e5;
  --border-medium: #cdcdcd;
  --border-dark: #666;

  /* 컨테이너 최대 너비 */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1560px;

  /* 헤더/컨텐츠 좌우 패딩 (반응형) */
  --content-padding-x: calc(100vw / 1920 * 200);

  /* 브레이크포인트 */
  --breakpoint-sm: 640px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --breakpoint-2xl: 1560px;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ========================================
   반응형 폰트 사이즈 (미디어 쿼리) 브레이크포인트 별로 설정
======================================== */

/* 변경사항: PC 기준 기본값 재정의 (본문/소제목/중제목 3개만) */
:root {
  --font-size-small: 18px;
  --font-size-base: 20px; /* p */
  --font-size-large: 24px; /* h4 */
  --font-size-xl: 28px; /* h3 */
  --font-size-2xl: 36px; /* h2 */
}

/* 1024px 이하 - 태블릿 가로 */
@media (max-width: 1024px) {
  :root {
    --font-size-small: 16px;
    --font-size-base: 20px;
    --font-size-large: 24px;
    --font-size-xl: 28px;
    --font-size-2xl: 32px;
  }
}

/* 768px 이하 - 태블릿 세로 (필요 변수만 반응형 적용) */
@media (max-width: 768px) {
  :root {
    /* 변경사항: 본문/소제목/중제목만 단계적 축소 */
    --font-size-small: 16px;
    --font-size-base: 18px; /* PC 20 → 18 */
    --font-size-large: 22px; /* PC 24 → 22 */
    --font-size-xl: 26px; /* PC 28 → 26 */
    --font-size-2xl: 28px;
  }
}

/* 640px 이하 - 모바일 가로 (필요 변수만 반응형 적용) */
@media (max-width: 640px) {
  :root {
    /* 변경사항: 모바일 목표값 적용 (본문/소제목/중제목) */
    --font-size-small: 14px;
    --font-size-base: 16px; /* PC 20 → 16 */
    --font-size-large: 20px; /* PC 24 → 20 */
    --font-size-xl: 24px; /* PC 28 → 24 */
    --font-size-2xl: 28px;
  }
}

/* 480px 이하 - 모바일 세로 (필요 변수만 반응형 적용) */
@media (max-width: 480px) {
  :root {
    /* 변경사항: 모바일 목표값 유지 */
    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-large: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
  }
}

/* ========================================
   기본 유틸리티 클래스
======================================== */

/* 텍스트 정렬 */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* 테이블 셀 정렬 */
td.left {
  text-align: left !important;
}
td.center {
  text-align: center !important;
}
td.right {
  text-align: right !important;
}

/* 폰트 크기 */
.text-xs {
  font-size: 12px;
}
.text-sm {
  font-size: 14px;
}
.text-base {
  font-size: 16px; /* 16 */
}
.text-lg {
  font-size: 18px; /* 18 */
}
.text-xl {
  font-size: 20px; /* 20 */
}
.text-2xl {
  font-size: 24px; /* 24 */
}
.text-3xl {
  font-size: 28px; /* 28 */
}
.text-4xl {
  font-size: 32px; /* 32 */
}
.text-5xl {
  font-size: 36px; /* 36 */
}
.text-6xl {
  font-size: 48px;
}
.text-7xl {
  font-size: 60px;
}

/* 폰트 두께 */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

/* 폰트 weight 유틸리티 클래스 */
.font-weight-400 {
  font-weight: 400;
}
.font-weight-500 {
  font-weight: 500;
}
.font-weight-600 {
  font-weight: 600;
}
.font-weight-700 {
  font-weight: 700;
}

/* 폰트 패밀리 유틸리티 클래스 */
.font-default {
  font-family: var(--font-default);
}

/* 다국어 폰트 설정 */
/* 중국어 (Simplified Chinese) */
.zh,
[lang="zh"],
[lang="zh-CN"],
[lang="zh-Hans"] {
  font-family: "Noto Sans SC", sans-serif;
}

/* 몽골어 */
.mn,
[lang="mn"],
[lang="mn-MN"] {
  font-family: "Noto Sans Mongolian", sans-serif;
}

/* 텍스트 색상 */
.text-primary {
  color: var(--text-primary);
}
.text-secondary {
  color: var(--text-secondary);
}
.text-muted {
  color: var(--text-muted);
}
.text-white {
  color: var(--text-white);
}
.text-highlight {
  color: var(--text-highlight);
}
.text-cancel {
  color: var(--accent-color);
}
/* 색상 */
.color-primary {
  color: var(--primary-color);
}
.color-secondary {
  color: var(--secondary-color);
}
.color-accent {
  color: var(--accent-color);
}

/* 디스플레이 */
.block {
  display: block;
}
.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}

/* 플렉스 */
.flex-row {
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}
.flex-col {
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}
.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}
.items-start {
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}
.items-center {
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}
.items-end {
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}
.justify-start {
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}
.justify-center {
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}
.justify-end {
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}
.justify-between {
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}
.justify-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

/* 위치 */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

/* 오버플로우 */
.overflow-hidden {
  overflow: hidden;
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}

/* 애니메이션 */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fade-in {
  -webkit-animation: fadeIn 0.5s ease-in-out;
  animation: fadeIn 0.5s ease-in-out;
}
.fade-in-up {
  -webkit-animation: fadeInUp 0.6s ease-out;
  animation: fadeInUp 0.6s ease-out;
}
.slide-in-right {
  -webkit-animation: slideInRight 0.4s ease-out;
  animation: slideInRight 0.4s ease-out;
}

/* 스크롤바 스타일링 (Webkit 기반 브라우저) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--GRAY_02);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb {
  background: var(--GRAY_03);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--GRAY_04);
}

/* 프린트 스타일 */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .skip-links,
  .btn,
  nav {
    display: none !important;
  }
}

/* ========================================
   유틸리티 클래스 (Utility Classes)
======================================== */

/* 마진 유틸리티 */
.m-0 {
  margin: 0 !important;
}
.m-8 {
  margin: 8px !important;
}
.m-16 {
  margin: 16px !important;
}
.m-20 {
  margin: 20px !important;
}
.m-24 {
  margin: 24px !important;
}
.m-32 {
  margin: 32px !important;
}
.m-40 {
  margin: 40px !important;
}
.m-48 {
  margin: 48px !important;
}
.m-64 {
  margin: 64px !important;
}
.m-80 {
  margin: 80px !important;
}

/* 마진 탑 */
.mt-0 {
  margin-top: 0 !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.mt-32 {
  margin-top: 32px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-48 {
  margin-top: 48px !important;
}
.mt-64 {
  margin-top: 64px !important;
}
.mt-80 {
  margin-top: 80px !important;
}

/* 마진 바텀 */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-8 {
  margin-bottom: 8px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.mb-16 {
  margin-bottom: 16px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-24 {
  margin-bottom: 24px !important;
}
.mb-32 {
  margin-bottom: 32px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-48 {
  margin-bottom: 48px !important;
}
.mb-64 {
  margin-bottom: 64px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}

/* 마진 레프트 */
.ml-0 {
  margin-left: 0 !important;
}
.ml-8 {
  margin-left: 8px !important;
}
.ml-16 {
  margin-left: 16px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-24 {
  margin-left: 24px !important;
}
.ml-32 {
  margin-left: 32px !important;
}
.ml-40 {
  margin-left: 40px !important;
}

/* 마진 라이트 */
.mr-0 {
  margin-right: 0 !important;
}
.mr-8 {
  margin-right: 8px !important;
}
.mr-16 {
  margin-right: 16px !important;
}
.mr-20 {
  margin-right: 20px !important;
}
.mr-24 {
  margin-right: 24px !important;
}
.mr-32 {
  margin-right: 32px !important;
}
.mr-40 {
  margin-right: 40px !important;
}

/* 마진 가로 (좌우) */
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.mx-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.mx-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

/* 마진 세로 (상하) */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.my-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.my-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.my-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

/* 패딩 유틸리티 */
.p-0 {
  padding: 0 !important;
}
.p-8 {
  padding: 8px !important;
}
.p-16 {
  padding: 16px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-24 {
  padding: 24px !important;
}
.p-32 {
  padding: 32px !important;
}
.p-40 {
  padding: 40px !important;
}
.p-48 {
  padding: 48px !important;
}
.p-64 {
  padding: 64px !important;
}

/* 패딩 탑 */
.pt-0 {
  padding-top: 0 !important;
}
.pt-8 {
  padding-top: 8px !important;
}
.pt-16 {
  padding-top: 16px !important;
}
.pt-20 {
  padding-top: 20px !important;
}
.pt-24 {
  padding-top: 24px !important;
}
.pt-32 {
  padding-top: 32px !important;
}
.pt-40 {
  padding-top: 40px !important;
}
.pt-48 {
  padding-top: 48px !important;
}

/* 패딩 바텀 */
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-8 {
  padding-bottom: 8px !important;
}
.pb-16 {
  padding-bottom: 16px !important;
}
.pb-20 {
  padding-bottom: 20px !important;
}
.pb-24 {
  padding-bottom: 24px !important;
}
.pb-32 {
  padding-bottom: 32px !important;
}
.pb-40 {
  padding-bottom: 40px !important;
}
.pb-48 {
  padding-bottom: 48px !important;
}

/* 패딩 레프트 */
.pl-0 {
  padding-left: 0 !important;
}
.pl-8 {
  padding-left: 8px !important;
}
.pl-16 {
  padding-left: 16px !important;
}
.pl-20 {
  padding-left: 20px !important;
}
.pl-24 {
  padding-left: 24px !important;
}
.pl-32 {
  padding-left: 32px !important;
}

/* 패딩 라이트 */
.pr-0 {
  padding-right: 0 !important;
}
.pr-8 {
  padding-right: 8px !important;
}
.pr-16 {
  padding-right: 16px !important;
}
.pr-20 {
  padding-right: 20px !important;
}
.pr-24 {
  padding-right: 24px !important;
}
.pr-32 {
  padding-right: 32px !important;
}

/* 패딩 가로 (좌우) */
.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.px-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.px-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* 패딩 세로 (상하) */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.py-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.py-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.py-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

/* 여백 반응형 유틸리티 */
.mt-80-responsive {
  margin-top: 80px !important;
}
.mt-40-responsive {
  margin-top: 40px !important;
}
.mb-80-responsive {
  margin-bottom: 80px !important;
}
.mb-40-responsive {
  margin-bottom: 40px !important;
}
@media (max-width: 1280px) {
  .mt-80-responsive {
    margin-top: 64px !important;
  }
  .mb-80-responsive {
    margin-bottom: 64px !important;
  }
  .mt-40-responsive {
    margin-top: 32px !important;
  }
  .mb-40-responsive {
    margin-bottom: 32px !important;
  }
}
@media (max-width: 1024px) {
  .mt-80-responsive {
    margin-top: 48px !important;
  }
  .mb-80-responsive {
    margin-bottom: 48px !important;
  }
  .mt-40-responsive {
    margin-top: 24px !important;
  }
  .mb-40-responsive {
    margin-bottom: 24px !important;
  }
}
@media (max-width: 768px) {
  .mt-80-responsive {
    margin-top: 40px !important;
  }
  .mb-80-responsive {
    margin-bottom: 40px !important;
  }
  .mt-40-responsive {
    margin-top: 20px !important;
  }
  .mb-40-responsive {
    margin-bottom: 20px !important;
  }
}

/* PC/Mobile 표시/숨김 */
@media screen and (max-width: 768px) {
  br.pc {
    display: none;
  }
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  br.mo {
    display: none;
  }
  .mo-only {
    display: none;
  }
}

/* 이메일 링크 스타일 */
.link-underline {
  text-decoration: underline;
  cursor: pointer;
}
.link-underline:hover {
  text-decoration: underline;
  color: var(--text-highlight);
}
