@import "./reset.css";
@import "./common.css";
@import "./fonts.css";

#wpadminbar {
  position: fixed;
  top: 0;
  left: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: var(--box-shadow);
  background: var(--primary-white);
}

.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px var(--mobile-padding);
}

.header .header_inner .header_logo--block {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .header_inner .header_logo--block a {
  width: 90px;
  height: 90px;
  display: block;
}

.header .header_inner .header_logo--block a img {
  width: 100%;
  height: auto;
}

.header .header_inner .header_logo--block .ci-ib {
    display: none;
  max-height: 90px;
}

.header .header_inner .header_nav--block .header_nav--list {
  display: flex;
  align-items: flex-start;
  height: 100%;
  padding: 0 10px;
  gap: 60px;
}

.header_nav--block .header_nav--list .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  color: #000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.menu-item .header_nav_link {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.menu-item .header_nav_link .header_nav--kor {
  display: block;
  font-weight: var(--font-sb);
  font-size: 18px;
}

.menu-item .header_nav_link .header_nav--en {
  display: block;
  font-weight: var(--font-m);
  font-size: 11px;
  line-height: 1.4;
  color: var(--fc-subtit);
}

.header_nav--block .header_nav--list .menu-item.dimmed {
  opacity: 0.5;
}

/* header_subnav */

.header_subnav--block {
  position: absolute;
  top: 80px;
  left: -50%;
  width: 190px;
  height: auto;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  opacity: 0;
}

.header_subnav--block::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 4px;
  z-index: 10;
  content: "";
  background: var(--primary-green);
}

.header_subnav--list {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 30px;
  gap: 15px;
  z-index: -1;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow);
  background: var(--primary-white);
}

.header_subnav--list > li {
  position: relative;
}

.header_subnav--block.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header_nav--block .sub-menu {
  position: absolute;
  top: 70px;
  left: -50%;
  width: 210px;
  height: auto;
  display: flex;
  flex-direction: column;
  padding: 30px;
  z-index: -1;
  background: var(--primary-white);
  transform: translateY(10px);
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  box-shadow: var(--box-shadow);
}

.header_nav--block .sub-menu::before {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  height: 4px;
  z-index: 10;
  content: "";
  background: var(--primary-green);
}

.header_nav--block .sub-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header_nav--block .sub-menu li a {
  display: flex;
  align-items: center;
  font-weight: var(--font-sb);
  font-size: 16px !important;
  padding: 0px 0 14px 0px;
  color: var(--fc-subtit);
  transition: all 0.4s ease;
}

.header_nav--block .sub-menu li a:hover {
  color: #000;
}

.header_nav--block .sub-menu li:last-child a {
  padding: 0;
}

.header_nav--item a {
  display: block;
  font-size: 18px;
}

.header .header_inner .header_sidebar--btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-green);
}

/* 3단 */
.header_nav--block .header_nav--list ul ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -30px;
  left: 140px;
  width: 160px;
  padding: 30px;
  z-index: 10;
  transition: all 0.4s ease;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  background: #fff;
}

.header_nav--block .header_nav--list ul ul::before {
  display: none;
}

.hasmenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_subnav--item > a {
  font-weight: var(--font-sb);
  font-size: 16px;
  color: #585656;
}

.menu-label-top {
  display: block;
  font-size: 18px;
  font-weight: var(--font-sb);
}

.menu-label-bottom {
  display: block;
  font-size: 11px;
  font-weight: var(--font-m);
  color: #585656;
  line-height: 1.4;
}

.toggle-arrow {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: url("http://ssforest.mycafe24.com/wp-content/uploads/2025/07/triangle_ic.svg");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 10px;
  cursor: grab;
}

.hasmenu.open .toggle-arrow {
  transform: rotate(90deg);
}

.side_bottom--right .hasmenu .sub-menu.open {
  display: block;
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

.side_bottom--right .hasmenu .sub-menu {
  display: none;
  padding: 0 !important;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: #f7f7f7;
}

.side_bottom--right .hasmenu .sub-menu {
}

/* .open 클래스가 붙으면 보이게 */
.side_bottom--right
  .sub-menu
  > .menu-item.menu-item-has-children.open
  .sub-menu {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

/* 호버 시 드롭다운 표시 */
.header_nav--list .menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

/* hover 시 표시 */
.subsubnav--list .subsubnav--item:hover {
  color: #000;
}

/* sidemenu */
.side_menu_overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.side_menu_overlay.active {
  display: block;
}

.side_menu--block {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  transform: translateX(100%);
  transition: all 0.4s ease;
}

.side_menu--block.active {
  transform: translateX(0%);
}

.side_menu--block .side_menu--inner {
  background: #fff;
}

.side_menu--block .side_menu--inner .side_top--block {
  padding: 50px 40px;
  background: var(--primary-green);
}

.side_top--block .close--btn {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: all 0.4s ease;
}

.side_top--block .close--btn:hover {
  transform: rotate(180deg);
}

.side_form {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #fff;
}

.side_form .search_ic--block {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  cursor: grab;
}

.sm-search--block {
  background: none;
  border: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  font-size: 20px;
  font-weight: var(--font-m);
  color: #fff;
  outline: none;
  margin-left: 20px;
}

.sm-search--block::placeholder {
  color: #fff;
}

.search_keyword {
  margin-top: 20px;
}

.search_keyword ul {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.search_keyword ul li {
  padding: 6px 14px;
  border-radius: 45px;
  border: 1px solid #f2f2f2;
  font-size: 13px;
  transition: all 0.4s ease;
  cursor: grab;
}

.search_keyword ul li:first-child {
  border: none;
  font-weight: var(--font-m);
  padding: 6px 0px;
  margin-right: 10px;
  font-size: 16px;
}

.search_keyword ul li:not(:first-child):hover {
  background: #fff;
  color: var(--primary-green);
}

.side_bottom--block {
  display: flex;
  height: calc(100vh - 12rem);
}

.side_bottom--block .side_bottom--right {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-y: scroll;
  padding: 40px 50px;
  gap: 40px;
}

.side_bottom--block .side_bottom--right li {
  position: relative;
  color: var(--fc-subtit);
  font-size: 16px;
  transition: all 0.4s;
  font-weight: var(--font-m);
  margin-bottom: 0;
}

.side_bottom--right > .sidemenu_list > li {
  margin-bottom: 20px;
}

.side_bottom--block .side_bottom--right ul li a {
  display: flex;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.side_bottom--block .side_bottom--right ul li a:hover {
  color: #000;
}

.side_bottom--block .side_bottom--right ul .side_right--tit {
  font-size: 18px;
  font-weight: var(--font-sb);
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.side_bottom--block .side_bottom--right .menu-item a {
  font-size: 18px;
  font-weight: var(--font-sb);
  color: #000;
  /* margin-bottom: 20px; */
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.side_bottom--block .side_bottom--right .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 20px 0px 10px;
  border-radius: 5px;
}

.side_bottom--block .side_bottom--right .sub-menu a {
  font-size: 16px;
  color: #585656;
  border: none;
  font-weight: var(--font-m);
}

.side_bottom--right .sub-menu {
  overflow: hidden;
  min-height: 0;
  transition: min-height 0.3s ease;
}

.sidemenu_dropdown--list li a {
  display: block;
  font-size: 15px;
  color: #585656;
}

.side_bottom--block .menu-label-bottom {
  display: none !important;
}

.side_bottom--block .sidemenu_list ul ul {
  transition: all 0.4s ease;
  background: #f7f7f7;
}

.side_bottom--block .sidemenu_list ul ul li {
  padding: 15px 10px 0px 15px;
}

.side_bottom--block .sidemenu_list ul ul li:last-child {
  padding-top: 10px;
  padding-bottom: 15px;
}

.side_bottom--block .side_bottom--right .hasmenu .menu-item a {
  padding: 0;
}

.side_bottom--block .side_bottom--right .hasmenu .sub-menu a {
  font-size: 14px;
}

/* subpage */

.sp_header--tit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: var(--font-b);
  font-size: 45px;
}

.sp_header--tit.tb_section {
  margin-bottom: 10px;
}

.sp_header--subtit {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.sp_header--subtit .sp_header--subtit--cat {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--font-sb);
  padding: 9px 10px;
  background: #f7f7f7;
}

.sp_header--subtit .sp_header--subtit--date,
.sp_header--subtit .sp_header--subtit--summarize {
  font-weight: var(--font-sb);
  font-size: 13px;
  color: #919191;
}

.subPage_header--block {
  margin-top: 150px;
}

.sp_breadcrump {
  margin-bottom: 30px;
}

.sp_breadcrump .sp_breadcrump--list {
  display: flex;
  align-items: center;
  gap: 34px;
}

.sp_breadcrump .sp_breadcrump--list li a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: var(--font-m);
  color: #585656;
}

.sp_breadcrump .sp_breadcrump--list li:last-child a::after {
  visibility: hidden;
}

.sp_breadcrump .sp_breadcrump--list li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 8px;
  height: 18px;
  transform: translateY(-50%);
  background: url("/wp-content/uploads/2025/07/triangle_ic.svg") 50% 50%
    no-repeat;
}

.sp_breadcrump .sp_breadcrump--list li a {
}

.sp_header--banner {
  position: relative;
}

.sp_header--banner .img--block {
  filter: brightness(0.7);
  height: 200px;
}

.sp_header--banner .img--block img {
  object-position: center 88%;
  width: 100%;
  height: 100%;
}

.sp_header--banner .text--block {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp_header--banner span {
  overflow: hidden;
}

.sp_header--banner .text--block strong {
  display: block;
  font-size: 24px;
  line-height: 1.4;
  color: #fff;
}

.sp_header--banner .text--block p {
  font-size: 16px;
  color: #ddd;
}

/* sp_share btn css */

.share_btn--wrapper {
  position: relative;
}

.share_btn--wrapper .share_ic {
  width: 25px;
  height: 25px;
}

.share_btn--wrapper .share_btn_util--block {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -19px;
  right: 35px;
  width: max-content;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  background: #fff;
}

.share_btn--wrapper .share_btn_util--block.active {
  visibility: visible;
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 22px -10px;
}

.share_btn--wrapper .share_btn_util--block::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: rotate(90deg);
  right: -14px;
  border-bottom: 25px solid #fff;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-radius: 2px;
  margin-top: -12px;
}

.share_btn--wrapper .share_btn_util--block li {
}

.share_btn--wrapper .share_btn_util--block li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: all 0.4s ease;
}

.share_btn--wrapper .share_btn_util--block li a:hover {
  transform: translateY(-3px);
}

.copy-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}

.tb_pagination--block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #000;
}

.tb_pagination--block .tb_page_next--area,
.tb_pagination--block .tb_page_prev--area,
.tb_pagination--block .tb_page_menu--area {
  display: flex;
  text-align: center;
  align-items: center;
  flex: 1;
}

.tb_page_prev--area {
  text-align: left;
}

.tb_page_next--area {
  text-align: right;
}

.tb_pagination--block .tb_pg_next--link {
  margin-left: auto;
}

.tb_pagination--block a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #000;
}

.tb_pagination--block .tb_page_prev--area p {
  margin-left: 2px;
  margin-right: 10px;
}

.tb_pagination--block .tb_page_next--area p {
  margin-left: 10px;
  margin-right: 2px;
}

.tb_pagination--block .tb_page_next--area p,
.tb_pagination--block .tb_page_prev--area p {
  font-size: 16px;
  font-weight: var(--font-b);
}

.tb_pagination--block .tb_page_next--area span,
.tb_pagination--block .tb_page_prev--area span {
  font-size: 14px;
  font-weight: var(--font-m);
  color: #666666;
}

.tb_pagination--block .tb_page_next--area {
  display: flex;
  flex-direction: row-reverse;
}

.tb_pagination--block .tb_page_menu--area {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  transition: all 0.5s ease;
  background: #f0f0f0;
}

.tb_pagination--block .tb_page_menu--area:hover {
  background: var(--primary-green);
}

.tb_pagination--block .tb_page_menu--area:hover .menu_ic path {
  fill: var(--primary-white);
}

.tb_pagination--block .tb_page_menu--area .menu_ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: all 1s ease;
}

.single_section {
  padding: 20px 0 80px;
}

.single_section .inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single_content {
  border-top: 4px solid #000;
  padding-top: 50px;
  height: 100%;
}

.ss_data--thumbnail {
}

.ss_data--content {
}

.border--block {
  width: 100%;
  height: 4px;
  margin: 50px 0 0px 0;
  background: #000;
}

/* footer */
.footer {
  position: relative;
  background: #0d0d0d;
  padding: 60px 0;
  font-family: "Pretendard" !important;
}

.footer_content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  color: #fff;
}

.footer_content .footer_top--block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 16px;
  font-weight: var(--font-b);
}

.footer_content .footer_top--block .footer_nav--list {
  display: flex;
  align-items: center;
}

.footer_content .footer_top--block .footer_nav--list .footer_nav--item {
  position: relative;
  margin-right: 20px;
  opacity: 0.4;
  transition: all 0.4s ease;
}

.footer_content .footer_top--block .footer_nav--list .footer_nav--item:hover {
  opacity: 1;
}

.footer_content .footer_top--block .footer_nav--list .footer_nav--item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #fff;
}

.footer_content
  .footer_top--block
  .footer_nav--list
  .footer_nav--item:last-child::after {
  display: none;
}

.footer_content .footer_top--block .footer_location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer_content .footer_top--block .footer_location div {
  display: flex;
  gap: 20px;
}

.footer_content .footer_top--block .footer_location div p.white {
  opacity: 1;
}

.footer_content .footer_top--block .footer_location div p {
  font-size: 16px;
  font-weight: var(--font-b);
  opacity: 0.4;
}

.footer_content .footer_top--block .foot_ci {
  position: absolute;
  right: 0;
  top: 0;
  max-width: 80px;
}

.footer_bottom--block {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer_bottom--block .copyrights {
  font-size: 14px;
  font-weight: var(--font-b);
}

.footer_bottom--block .footer_sns--list {
  display: flex;
  gap: 20px;
}

.footer_bottom--block .footer_sns--item {
  transition: all 0.5s;
}

.footer_bottom--block .footer_sns--item:hover {
  transform: translateY(-3px);
}

.footer_sns_fixed--block {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  opacity: 1;
  transition: all 0.4s ease;
}

.footer_sns_fixed--block.active {
  opacity: 1;
}

.fs_btn {
  width: 60px;
  height: 60px;
}

.fs_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer_totop--btn {
  background: var(--primary-yellow);
}

.footer_toptop--btn .toptop_ic {
}

@media screen and (min-width: 993px) {
}

@media screen and (max-width: 992px) {
  .header .header_inner {
  }

  .header .header_inner .header_logo--block {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header .header_inner .header_logo--block a {
    display: block;
    width: 60px;
    height: 60px;
  }

  .header .header_inner .header_nav--block .header_nav--list {
    display: none;
  }

  .header .header_inner .header_nav--block {
    margin-right: 10px;
    margin-left: auto;
  }

  .header .header_inner .header_logo--block .ci-ib {
    display: block;
    max-height: 57px;
  }

  /* side menu */
  .side_menu--block {
    width: 100%;
  }

  .side_menu--block .side_menu--inner .side_top--block {
    padding: 20px 40px;
  }

  .side_bottom--block {
    display: flex;
    justify-content: center;
    height: calc(100vh - 8rem);
  }

  /* subpage */
  .sp_header--tit {
    align-items: flex-end;
    font-weight: var(--font-eb);
    font-size: var(--fz-maintit--mobile);
  }

  /* subpage header */
  .subPage_header--block {
    margin-top: 100px;
  }

  .sp_header--banner .text--block strong {
    font-size: 16px;
  }

  .sp_header--banner .text--block p {
    font-size: 12px;
  }

  .sp_breadcrump {
    margin-bottom: 30px;
  }

  .sp_breadcrump .sp_breadcrump--list {
    gap: 24px;
  }

  .sp_breadcrump .sp_breadcrump--list li a::after {
    right: -15px;
  }

  /* search_keyword */
  .search_keyword ul li {
    font-size: 14px;
  }

  /* border--block */
  .border--block {
    height: 2px;
    margin: 20px 0 0px 0;
  }

  /* footer */
  .footer {
    padding: 30px 0;
  }

  .footer_content {
    gap: 20px;
  }

  .footer_content .footer_top--block {
    font-size: 12px;
    gap: 30px;
  }

  .footer_content .footer_top--block .footer_location div {
    gap: 10px;
    flex-direction: column;
  }

  .footer_bottom--block {
    gap: 15px;
    flex-direction: column-reverse;
    padding-top: 30px;
    padding-bottom: 0px;
  }

  .footer_content
    .footer_top--block
    .footer_nav--list
    .footer_nav--item::after {
    right: -10px;
  }

  .footer_content .footer_top--block .footer_location div p {
    font-size: 12px;
  }

  .footer_sns_fixed--block {
    position: absolute;
    top: 170px;
    right: 20px;
    display: flex;
    flex-direction: column-reverse;
    gap: 1px;
    opacity: 1;
  }

  .footer_bottom--block .copyrights {
    font-size: 10px;
  }

  .footer_bottom--block .footer_sns--list {
    gap: 20px;
  }

  .footer_content .footer_top--block .foot_ci {
    max-width: 50px;
  }

  .fs_btn {
    width: 50px;
    height: 50px;
  }

  .fs_btn svg {
    max-width: 70%;
    margin: 0 auto;
  }

  .single_section {
    padding: 10px 0 0;
  }

  .single_content {
    padding: 30px 0;
  }

  .tb_pagination--block .tb_page_next--area span,
  .tb_pagination--block .tb_page_prev--area span {
    display: none;
  }
}

/*Wordpress*/
#wpadminbar {
  position: fixed !important;
}

body.admin-bar header {
  top: 32px;
}
/* 
body.admin-bar .hero_section {
  padding-top: 110px;
} */

@media screen and (max-width: 992px) {
  body.admin-bar header {
    top: 46px;
  }

  body.admin-bar .hero_section {
    padding-top: 80px;
  }
}

.password-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* 브라우저 전체 높이 */
  background-color: #f9f9f9;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
}

.post-password-form {
  background: #fff;
  padding: 2.5rem 1.5rem;
  border: 1px solid #ddd;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#pwbox-54,
#pwbox-56 {
  width: 100%;
  max-width: 300px;
  padding: 10px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#pwbox-54:focus,
#pwbox-56:focus {
  border-color: #3b82f6; /* 파란색 포커스 테두리 */
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

input[type="submit"][name="Submit"] {
  padding: 10px 20px;
  font-size: 16px;
  background-color: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.d-md-none {
  display: none !important;
}
.d-md-inline {
  display: inline !important;
}
.d-md-block {
  display: block !important;
}
.d-md-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-md-grid {
  display: grid !important;
}
.d-md-table {
  display: table !important;
}

@media screen and (max-width: 992px) {
  .d-none {
    display: none !important;
  }
  .d-inline {
    display: inline !important;
  }
  .d-inline-flex {
    display: inline-flex !important;
  }
  .d-block {
    display: block !important;
  }
  .d-flex {
    display: flex !important;
  }
  .d-grid {
    display: grid !important;
  }
  .d-table {
    display: table !important;
  }
}

.wpb_wrapper p {
  line-height: 1.6;
  font-size: 18px;
}
