@charset "utf-8";

body,
#glamp_site {
  background: #fff;
}

#sub_visual {
  min-height: 260px;
  padding-top: calc(var(--header-height) + 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(17, 25, 50, 0.92), rgba(73, 35, 92, 0.76)),
    url("/resources/user/_common/_layout/hb_glamp/img/main_visual_bg.png") center/cover no-repeat;
}

#sub_visual h2 {
  font-size: 42px;
  font-weight: 900;
}

#sub_visual .inner {
  display: flex;
  justify-content: center;
  width: 100%;
  text-align: center;
}

#sub_wrap {
  width: min(100% - 48px, var(--container-max));
  margin: 64px auto 90px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 54px;
}

#sub_wrap.search-page {
  display: block;
  margin-top: 56px;
  padding-top: calc(var(--header-height) + 34px);
}

#sub_wrap.search-page #sub_content {
  width: 100%;
}

#sub_wrap:has(> .lnb .lnb_title:empty) {
  display: block;
}

#sub_wrap:has(> .lnb .lnb_title:empty) > .lnb,
#sub_wrap:has(> .lnb .lnb_title:empty) > #sub_content > .sub_title {
  display: none;
}

#sub_wrap:has(> .lnb .lnb_title:empty) #sub_content {
  width: 100%;
}

.lnb {
  align-self: start;
  background: #fff;
  border: 1px solid var(--gl-border);
  border-radius: 8px;
  overflow: hidden;
}

.lnb_title {
  padding: 24px 22px;
  color: #fff;
  font-size: 22px;
  background: var(--gl-primary);
}

.lnb_list > li > a {
  display: block;
  padding: 16px 20px;
  color: #263047;
  font-weight: 700;
  border-bottom: 1px solid var(--gl-border);
}

.lnb_list > li.active > a,
.lnb_list > li > a:hover {
  color: var(--gl-primary);
  background: #f4f6fa;
}

.lnb_dep3 {
  padding: 10px 0;
  background: #fafbfe;
  border-bottom: 1px solid var(--gl-border);
}

.lnb_dep3 a {
  display: block;
  padding: 7px 20px 7px 32px;
  color: var(--gl-muted);
  font-size: 14px;
}

.lnb_dep3 .active a,
.lnb_dep3 a:hover {
  color: var(--gl-purple);
  font-weight: 800;
}

#sub_content {
  min-width: 0;
}

.sub_title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  margin-bottom: 36px;
  border-bottom: 2px solid var(--gl-primary);
}

.sub_title h4 {
  color: var(--gl-primary);
  font-size: 34px;
  font-weight: 900;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--gl-muted);
  font-size: 14px;
}

.breadcrumb span {
  display: inline-flex;
  align-items: center;
}

.breadcrumb span + span::before {
  content: ">";
  margin-right: 6px;
  color: #a9b0bf;
  font-size: 12px;
}

.breadcrumb span:last-child,
.breadcrumb .current {
  color: var(--gl-primary);
  font-weight: 800;
}

.sub_body {
  color: #263047;
  font-size: 17px;
}

.greeting {
  padding: 36px;
  background: #fff;
  border: 1px solid var(--gl-border);
  border-radius: 8px;
}

.greeting h5 {
  margin-bottom: 20px;
  color: var(--gl-purple);
  font-size: 28px;
  line-height: 1.25;
}

.greeting p + p {
  margin-top: 14px;
}

.contact_info {
  margin-top: 28px;
  padding: 22px 26px;
  background: #f6f7fb;
  border-radius: 8px;
}

.contact_info ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.contact_info li {
  color: var(--gl-muted);
  font-size: 14px;
}

@media (max-width: 1023px) {
  #sub_visual {
    padding-top: var(--header-height);
  }

  #sub_wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #sub_wrap.search-page {
    padding-top: var(--header-height);
  }

  .lnb {
    display: none;
  }

  .contact_info ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #sub_visual {
    display: none;
  }

  #sub_wrap {
    width: min(100% - 28px, var(--container-max));
    margin: 42px auto 64px;
    padding-top: var(--header-height);
  }

  .sub_title {
    display: none;
  }

  .greeting {
    padding: 24px;
  }

  .greeting h5 {
    font-size: 24px;
  }

  .contact_info ul {
    grid-template-columns: 1fr;
  }
}
