@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("./font/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --text-main: #f3f3f3;
  --text-muted: rgba(255, 255, 255, 0.72);
  --block-bg: rgba(0, 0, 0, 0.9);
  --panel-stroke: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--text-main);
}

body {
  position: relative;
  background: #000;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.50), rgba(0, 0, 0, 0.50)),
    url("./pc/img_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.full-width-block {
  width: 100%;
  background: var(--block-bg);
}

.inner {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
}

.header {
  padding: 36px 0 36px;
}

.logo {
  margin: 0;
  line-height: 0;
}

.logo-header-img {
  width: 180px;
  height: auto;
  display: block;
}

.tagline {
  margin: 5px 0 0;
  font-size: 12px;
  letter-spacing: 0.005em;
  line-height: 1.3;
  color:#808080;
}

.site-wrap {
  width: min(1240px, 100% - 48px);
  margin: 0 auto;
  flex: 1 0 auto;
}

.content {
  border-radius: 28px;
  background: #000000d7;
  padding: 40px 56px;
  margin: 60px 0;
}

.intro {
  max-width: 790px;
}

.intro p {
  margin: 0 0 24px;
  color:#b6b6b6;
  font-size: 18px;
  line-height: 1.35;
  font-weight:200;
}

.intro strong {
  font-weight: 600;
}

.badge-row {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.icon-link {
  width: 70px;
  height: 70px;
  display: block;
  position: relative;
}

.icon-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.22s ease;
}

.icon-hover {
  opacity: 0;
}

.icon-link:hover .icon-hover,
.icon-link:focus-visible .icon-hover {
  opacity: 1;
}

.icon-link:hover .icon-default,
.icon-link:focus-visible .icon-default {
  opacity: 0;
}

.icon-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 2px;
}

.footer {
  padding: 28px 0 30px;
}

.footer h2 {
  margin: 0 0 10px;
  line-height: 0;
}

.logo-footer-img {
  width: 165px;
  height: auto;
  display: block;
}

.footer p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 300;
  color: #999999;
}

.copyright{
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .inner,
  .site-wrap {
    width: min(960px, 100% - 28px);
  }

  .content-panel {
    border-radius: 20px;
    padding: 30px 22px 24px;
  }

  .intro {
    max-width: none;
  }

  .badge-row {
    justify-content: center;
  }
}
  .footer-break {
    display: none;
  }

@media (max-width: 640px) {
  .inner,
  .site-wrap { }

  .header {
    padding: 20px 24px;
  }

  .logo-header-img {
    width: 120px;
  }

  .tagline {
    margin-top: 5px;
    font-size: 8px;
    color:#808080;
  }

  .site-wrap {
    height: 100%;
  }

  .content {
    padding: 30px 16px;
    margin: 24px 0px;
  }

  .intro p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.3;
  }

  .badge-row {
    margin-top: 2px;
    justify-content: center;
    gap: 12px;
  }

  .icon-link {
    width: 46px;
    height: 46px;
  }

  .footer {
    padding: 36px 16px;
    margin-top: 36px;
  }

  .footer h2 {
    margin-bottom: 8px;
  }
  .copyright{
    margin-top: 16px;
  }
  .logo-footer-img {
    width: 120px;
  }

  .footer p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.35;
    color:#808080;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 640px) {
  .footer-break {
    display: block;
  }
}
