@charset "UTF-8";

html,
body {
  min-width: 0;
}

body.modern-inner-ready {
  margin: 0;
  overflow-x: hidden;
  background: #f5f8fb;
  color: #28323c;
  font-family: "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.65;
}

.modern-inner-ready *,
.modern-inner-ready *::before,
.modern-inner-ready *::after {
  box-sizing: border-box;
}

.modern-disabled-link {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}

.modern-closure-notice,
.modern-site-shell,
.modern-site-footer {
  width: calc(100% - 32px);
  max-width: 773px;
  margin-right: auto;
  margin-left: auto;
}

.modern-closure-notice {
  padding: 11px 12px 9px;
  color: #a40000;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.modern-site-shell {
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 54, 78, 0.12);
}

.modern-site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 173px minmax(0, 1fr);
  min-height: 47px;
  background: linear-gradient(#eefaff, #b7dff3);
  border-bottom: 1px solid #78b5d4;
}

.modern-site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 47px;
  background: rgba(255, 255, 255, 0.42);
}

.modern-site-logo img {
  display: block;
  width: 173px;
  height: 47px;
  object-fit: contain;
}

.modern-main-nav {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  min-width: 0;
}

.modern-main-nav > a {
  display: flex;
  min-width: 0;
  min-height: 47px;
  align-items: center;
  justify-content: center;
  padding: 4px 3px;
  border-left: 1px solid rgba(78, 145, 181, 0.28);
  color: #172b38;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.modern-main-nav > a:hover,
.modern-main-nav > a:focus-visible,
.modern-main-nav > a.is-active {
  color: #fff;
  background: #2183b7;
  outline: none;
}

.modern-submenu {
  position: absolute;
  top: 47px;
  right: 0;
  z-index: 30;
  display: none;
  width: 600px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px 16px;
  padding: 6px 16px;
  color: #fff;
  background: rgba(16, 80, 116, 0.94);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.modern-submenu.is-visible {
  display: flex;
}

.modern-submenu a {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.modern-submenu a:hover,
.modern-submenu a:focus-visible {
  color: #fff6a6;
  outline: none;
}

.modern-inner-hero {
  position: relative;
  display: flex;
  min-height: 148px;
  align-items: flex-end;
  overflow: hidden;
  padding: 28px 36px;
  color: #fff;
  background: #52aada url("../home/images/image-clean-bg.png") center center / cover no-repeat;
}

.modern-inner-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 75, 116, 0.78), rgba(20, 111, 162, 0.18) 68%, rgba(255, 255, 255, 0.08));
}

.modern-inner-hero__copy {
  position: relative;
  z-index: 1;
}

.modern-inner-hero__eyebrow {
  display: block;
  margin-bottom: 2px;
  color: #dff4ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modern-inner-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.18;
  text-shadow: 0 2px 8px rgba(0, 40, 70, 0.35);
}

.modern-inner-layout {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 18px 34px;
}

.modern-section-nav {
  align-self: start;
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: 5px;
  background: #fff;
}

.modern-section-nav__title {
  margin: 0;
  padding: 11px 13px;
  color: #fff;
  background: #267fae;
  font-size: 14px;
  font-weight: 750;
}

.modern-section-nav a {
  position: relative;
  display: block;
  padding: 10px 12px 10px 24px;
  border-top: 1px solid #edf2f5;
  color: #34505f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.modern-section-nav a::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8eb7cc;
  content: "";
  transform: translateY(-50%);
}

.modern-section-nav a:hover,
.modern-section-nav a:focus-visible,
.modern-section-nav a.is-active {
  color: #086a9c;
  background: #edf8fd;
  outline: none;
}

.modern-section-nav a.is-active::before {
  background: #e31c23;
}

.modern-inner-content {
  min-width: 0;
  overflow: hidden;
  padding: 0 2px;
}

.modern-inner-content__heading {
  margin: 0 0 16px;
  padding: 0 0 10px;
  border-bottom: 2px solid #1685bc;
  color: #182e3b;
  font-size: 21px;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.modern-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 18px;
}

.modern-section-tabs a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid #cddce5;
  border-radius: 4px;
  color: #46606f;
  background: #fff;
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.modern-section-tabs a:hover,
.modern-section-tabs a:focus-visible,
.modern-section-tabs a.is-active {
  border-color: #2183b7;
  color: #fff;
  background: #2183b7;
  outline: none;
}

.modern-inner-body {
  min-width: 0;
  overflow-x: auto;
  color: #34434d;
}

.modern-inner-body table {
  max-width: 100% !important;
}

.modern-inner-body img {
  max-width: 100%;
  height: auto;
}

.modern-inner-body input[type="text"],
.modern-inner-body input[type="password"],
.modern-inner-body textarea,
.modern-inner-body select {
  max-width: 100%;
  font: inherit;
}

.modern-inner-body a {
  color: #0878b1;
}

.modern-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.modern-sitemap-group {
  overflow: hidden;
  border: 1px solid #d9e5ec;
  border-radius: 7px;
  background: #fff;
}

.modern-sitemap-group--products {
  grid-column: 1 / -1;
}

.modern-sitemap-group__title {
  margin: 0;
  padding: 11px 14px;
  color: #fff;
  background: #2183b7;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.35;
}

.modern-sitemap-links,
.modern-sitemap-products {
  margin: 0;
  padding: 0;
  list-style: none;
}

.modern-sitemap-group > .modern-sitemap-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 9px 12px 12px;
}

.modern-sitemap-links a {
  display: block;
  padding: 7px 8px 7px 17px;
  position: relative;
  color: #344f60;
  text-decoration: none;
  line-height: 1.4;
}

.modern-sitemap-links a::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 13px;
  left: 5px;
  border-radius: 50%;
  background: #2183b7;
}

.modern-sitemap-links a:hover,
.modern-sitemap-links a:focus-visible,
.modern-sitemap-product__title:hover,
.modern-sitemap-product__title:focus-visible {
  color: #075f8b;
  text-decoration: underline;
  outline: none;
}

.modern-sitemap-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
}

.modern-sitemap-product {
  min-width: 0;
  padding: 10px;
  border: 1px solid #e4ebef;
  border-radius: 5px;
  background: #f8fbfd;
}

.modern-sitemap-product__title {
  display: block;
  padding: 0 6px 7px;
  border-bottom: 1px solid #dce7ed;
  color: #183c50;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.modern-sitemap-product .modern-sitemap-links {
  padding-top: 5px;
}

.modern-service-closed {
  margin: 0 0 20px;
  padding: 13px 15px;
  border: 1px solid #e8c4c4;
  border-left: 4px solid #b71c1c;
  border-radius: 4px;
  color: #7f1d1d;
  background: #fff5f5;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.modern-service-disabled {
  opacity: 0.62;
}

.modern-hidden-legacy-heading,
.modern-hidden-legacy-spacer {
  display: none !important;
}

.modern-site-footer {
  display: grid;
  grid-template-columns: 173px minmax(0, 1fr);
  align-items: center;
  min-height: 82px;
  padding: 14px 0;
  border-top: 1px solid #cbd8df;
  color: #66727a;
  background: #fff;
}

.modern-site-footer__logo {
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.modern-site-footer__logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.modern-site-footer__copy {
  padding: 0 16px;
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.archive-intro {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid #d6e3ea;
  border-radius: 8px;
  background: #f7fbfd;
}

.archive-intro h3 {
  margin: 0 0 7px;
  color: #176589;
  font-size: 17px;
}

.archive-intro p {
  margin: 0;
  color: #52616b;
}

.archive-download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.archive-download-group {
  overflow: hidden;
  border: 1px solid #dbe5ea;
  border-radius: 8px;
  background: #fff;
}

.archive-download-group h3 {
  margin: 0;
  padding: 12px 15px;
  border-bottom: 1px solid #dbe5ea;
  color: #1f607e;
  background: #eef6fa;
  font-size: 15px;
}

.archive-download-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.archive-download-list li {
  display: grid;
  gap: 2px;
  padding: 10px 15px;
  border-bottom: 1px solid #edf2f5;
}

.archive-download-list li:last-child {
  border-bottom: 0;
}

.archive-download-list a {
  color: #176f99;
  font-weight: 700;
  text-decoration: none;
}

.archive-download-list a::before {
  content: "↓";
  margin-right: 7px;
  color: #ef7b2d;
}

.archive-download-list a:hover,
.archive-download-list a:focus-visible {
  text-decoration: underline;
}

.archive-download-list span {
  padding-left: 18px;
  color: #7a858d;
  font-size: 11px;
}

.static-faq-list {
  display: grid;
  gap: 9px;
}

.static-faq-list details {
  overflow: hidden;
  border: 1px solid #dbe5ea;
  border-radius: 8px;
  background: #fff;
}

.static-faq-list summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  color: #2f4652;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.static-faq-list summary::-webkit-details-marker {
  display: none;
}

.static-faq-list summary::after {
  content: "+";
  margin-left: auto;
  color: #2b82aa;
  font-size: 20px;
  line-height: 1;
}

.static-faq-list details[open] summary::after {
  content: "−";
}

.static-faq-list summary span {
  display: inline-grid;
  flex: 0 0 27px;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: #4f9abd;
  font-size: 11px;
}

.static-faq-list details > div {
  padding: 14px 17px 16px 53px;
  border-top: 1px solid #edf2f5;
  color: #53616a;
  background: #fbfdfe;
}

.static-faq-list details > div > :first-child {
  margin-top: 0;
}

.static-faq-list details > div > :last-child {
  margin-bottom: 0;
}

.static-faq-list a {
  color: #176f99;
  font-weight: 700;
}

@media (max-width: 804px) {
  .modern-closure-notice,
  .modern-site-shell,
  .modern-site-footer {
    width: 100%;
  }

  .modern-site-shell {
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .modern-closure-notice {
    font-size: 14px;
  }

  .modern-site-header {
    grid-template-columns: 1fr;
  }

  .modern-site-logo img {
    width: 173px;
  }

  .modern-main-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .modern-main-nav > a {
    min-height: 40px;
    border-top: 1px solid rgba(78, 145, 181, 0.24);
    font-size: 11px;
  }

  .modern-submenu {
    top: 100%;
    left: 0;
    width: 100%;
  }

  .modern-inner-hero {
    min-height: 126px;
    padding: 22px 20px;
  }

  .modern-inner-layout {
    display: block;
    padding: 16px 14px 28px;
  }

  .modern-section-nav {
    margin-bottom: 18px;
  }

  .modern-section-nav__title {
    padding: 9px 11px;
  }

  .modern-section-nav__links {
    display: flex;
    flex-wrap: wrap;
  }

  .modern-section-nav a {
    flex: 1 1 50%;
    border-right: 1px solid #edf2f5;
  }

  .modern-inner-content__heading {
    font-size: 19px;
  }

  .modern-sitemap-grid,
  .modern-sitemap-products {
    grid-template-columns: 1fr;
  }

  .modern-sitemap-group--products {
    grid-column: auto;
  }

  .modern-site-footer {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .modern-site-footer__logo img {
    width: 142px;
  }

  .archive-download-grid {
    grid-template-columns: 1fr;
  }

  .static-faq-list details > div {
    padding-left: 17px;
  }
}

@media (max-width: 420px) {
  .modern-section-nav a {
    flex-basis: 100%;
  }

  .modern-section-tabs a {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
  }
}
