@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans KR", sans-serif;
  background-color: #fff;
  color: #222;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.banner {
  width: 100%;
  height: 470px;
  background-color: #55677a;
  background-image: linear-gradient(to bottom, #fff, #016094);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner img {
  max-width: 1200px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .banner {
    height: 250px;
  }
}

.container {
  padding: 0 96px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .container {
    padding: 0;
  }
}

.content {
  padding: 0 40px;
  position: relative;
}
@media (max-width: 768px) {
  .content {
    padding: 0 20px;
  }
}

.profile-logo {
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -60px;
  left: 130px;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 768px) {
  .profile-logo {
    left: 20px;
    width: 100px;
    height: 100px;
    bottom: -50px;
  }
}
.profile-logo .logo-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
}
.profile-logo .logo-img {
  width: 82px;
  height: auto;
  display: block;
}
.profile-logo .logo-name {
  font-size: 16px;
  font-weight: 700;
  color: #5abb5c;
  letter-spacing: -0.3px;
  line-height: 1;
}

.header-info {
  margin-top: 80px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .header-info {
    margin-top: 65px;
  }
}
.header-info h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .header-info h1 {
    font-size: 22px;
  }
}
.header-info .subtitle {
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.header-info .subtitle .icon-flag {
  font-size: 12px;
}

.description-box {
  background-color: #f3f8fd;
  padding: 24px 30px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.description-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 8px;
}
.description-box p:last-child {
  margin-bottom: 0;
}
.description-box a {
  color: #666;
  transition: color 0.2s;
}
.description-box a:hover {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.main-links-section h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}
.main-links-section .links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .main-links-section .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .main-links-section .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .main-links-section .links-grid {
    grid-template-columns: 1fr;
  }
}
.main-links-section .link-item {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  transition: all 0.2s ease;
  gap: 12px;
  line-height: 1;
}
.main-links-section .link-item:hover {
  border-color: #bbb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.main-links-section .link-item .icon {
  display: flex;
  align-items: center;
}
.main-links-section .link-item .txt {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.notion-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 60px;
  padding-bottom: 120px;
}

.detail-content {
  padding: 0;
}
.detail-content .page-header {
  margin-bottom: 40px;
}
.detail-content .page-header .page-icon {
  font-size: 78px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.detail-content .page-header .page-title {
  font-size: 40px;
  font-weight: 700;
  color: #37352f;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .detail-content .page-header .page-title {
    font-size: 28px;
  }
}
.detail-content .page-header .page-properties {
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-content .page-header .page-properties .property-row {
  display: flex;
  font-size: 14px;
  color: #787774;
}
.detail-content .page-header .page-properties .property-row .property-label {
  width: 200px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.detail-content .page-header .page-properties .property-row .property-label .icon {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .detail-content .page-header .page-properties .property-row .property-label {
    width: 120px;
  }
}
.detail-content .page-header .page-properties .property-row .property-value {
  flex: 1;
  color: #37352f;
}
.detail-content .page-body .faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-content .page-body .faq-list li {
  margin-bottom: 8px;
}
.detail-content .page-body .faq-list li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #37352f;
  font-size: 15px;
  padding: 8px 4px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.detail-content .page-body .faq-list li a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.detail-content .page-body .faq-list li a .icon {
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  flex-shrink: 0;
}
.detail-content .page-body .image-block {
  margin-top: 20px;
  text-align: center;
}
.detail-content .page-body .image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.faq-back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #787774;
}
.faq-back-link:hover {
  color: #37352f;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.notion-header {
  height: 44px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(55, 53, 47, 0.09);
  display: flex;
  align-items: center;
  padding: 0 8px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.notion-breadcrumb {
  display: flex;
  align-items: center;
  min-width: 0;
  overflow: hidden;
}
.notion-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(55, 53, 47, 0.65);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s;
  max-width: 240px;
  overflow: hidden;
}
.notion-breadcrumb__item--current {
  color: rgba(55, 53, 47, 0.85);
  font-weight: 500;
}
.notion-breadcrumb a.notion-breadcrumb__item:hover {
  background: rgba(55, 53, 47, 0.08);
  color: rgba(55, 53, 47, 0.85);
}
.notion-breadcrumb__icon {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}
.notion-breadcrumb__text {
  overflow: hidden;
  text-overflow: ellipsis;
}
.notion-breadcrumb__sep {
  font-size: 13px;
  color: rgba(55, 53, 47, 0.3);
  flex-shrink: 0;
  padding: 0 2px;
  user-select: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 20px;
  }
}
.site-header__mobile-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.site-header__mobile-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #555;
  border-radius: 2px;
  transition: background 0.2s;
}
.site-header__mobile-btn:hover span {
  background: #111;
}
@media (max-width: 768px) {
  .site-header__mobile-btn {
    display: flex;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #5ca8f5, #3d8ee8);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.site-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo__name {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
}
.site-logo__sub {
  font-size: 10px;
  color: #999;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .site-logo__sub {
    display: none;
  }
}

.site-nav {
  margin-left: auto;
}
.site-nav__list {
  list-style: none;
  display: flex;
  gap: 2px;
}
.site-nav__list li a {
  display: block;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.site-nav__list li a:hover {
  background: #f4f4f4;
  color: #111;
}
.site-nav__list li.active a {
  color: #5ca8f5;
  font-weight: 700;
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
    z-index: 99;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav__list {
    flex-direction: column;
    gap: 0;
    padding: 0 16px;
  }
  .site-nav__list li a {
    padding: 13px 10px;
    border-radius: 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
  }
  .site-nav__list li a:hover {
    background: #f8f8f8;
  }
  .site-nav__list li:last-child a {
    border-bottom: none;
  }
}

.banner--sub {
  height: 200px;
}
@media (max-width: 768px) {
  .banner--sub {
    height: 160px;
  }
}

.breadcrumb {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  .breadcrumb {
    bottom: 16px;
  }
}
.breadcrumb__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb__item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb__item--current {
  color: #fff;
  font-weight: 500;
}
.breadcrumb a.breadcrumb__item:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb__sep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.faq-answer p {
  font-size: 16px;
  color: #37352f;
  line-height: 1.8;
  margin-bottom: 16px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ol {
  margin: 8px 0 16px;
  padding-left: 24px;
}
.faq-answer ol li {
  font-size: 16px;
  color: #37352f;
  line-height: 1.8;
  margin-bottom: 12px;
}
.faq-answer ol li:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */