@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&text=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz&display=swap");

:root {
  --color-primary: #f26521;
  --color-text: #000;
  --color-muted: #777;
  --color-soft: #fafafa;
  --color-line: #ddd;
  --font-ko: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --font-latin: "Poppins", var(--font-ko);
  --font-body-size: 18px;
  --font-header-menu-size: 18px;
  --header-height-desktop: 168px;
  --header-height-mobile: 76px;
  --page-max: 1920px;
  --content-max: 1720px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  color: var(--color-text);
  background: #fff;
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-latin);
  font-size: var(--font-body-size);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  object-fit: cover;
  object-position: center;
}

svg,
img[src$=".svg"],
.site-logo img,
.site-footer__logo,
.site-footer__logo-link img {
  object-fit: contain;
}

.bg-image-placeholder[data-bg-image] {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.bg-image-placeholder {
  overflow: hidden;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.bg-image-placeholder__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

.bg-image-placeholder > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
}

.bg-image-placeholder__label {
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  width: 100%;
  overflow-x: clip;
}

.content-wrap {
  width: min(var(--content-max), calc(100% - 200px));
  margin-inline: auto;
}

.desktop-only {
  display: inline-flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 1180px) {
  .content-wrap {
    width: min(100% - 64px, var(--content-max));
  }
}

@media (max-width: 720px) {
  .content-wrap {
    width: min(100% - 40px, var(--content-max));
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: inline-flex;
  }
}
