/* Global font stack: Pretendard Variable with sensible fallbacks */
:root {
  --font-sans: Pretendard;
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  color: var(--color-font);
  /* global text color */
}

/* Theme color tokens */
:root {
  --color-main: #0b421a;
  /* 메인 컬러 */
  --color-bg: #fffcfc;
  /* 배경 컬러 */
  --color-sub: #eac784;
  /* 서브 컬러 */
  --color-font: #362415;
  /* 폰트 컬러 */
  --color-sub2: #604c4c;
  /* 서브2 컬러 */

}

/* Global base font size */
html,
body {
  font-size: 16.5px;
  background: var(--color-bg);
}

/* Inherit link color from text by default */
a {
  color: inherit;
}

/* Full-page scroll: one section per scroll */
html,
body {
  height: auto;
  scroll-snap-type: none;
  overscroll-behavior-y: auto;
  overflow-y: visible;
}

/* Make top-level sections snap to viewport */
section.simple-hero,
section.section {
  position: relative;
  display: block;
  min-height: auto;
  scroll-margin-top: 0;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
  z-index: 1;
}

/* Designate the news section as a breakpoint (final snap at its end) */
.section.section--gray.news {
  min-height: auto;
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

/* Do not snap footer so it appears naturally after last section */
footer {
  scroll-snap-align: none;
}

/* Header layout refinements and responsive adjustments */
.header .header-cnt {
  position: relative;
  overflow: visible;
  /* ensure absolutely positioned items can overflow */
  max-width: 100%;
  width: 100%;
  padding: 0;
}

/* Fixed header baseline */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 1000;
  background: transparent;
  /* transparent on load */
  transition: background-color 0.5s ease, backdrop-filter 0.5s ease, box-shadow 0.5s ease;
}

/* When page is scrolled, reserve content space (100px) */
body.has-fixed-header {
  padding-top: 90px;
}

/* When fixed (scrolled), color to main brand */
body.has-fixed-header .header {
  background: var(--color-main);
  backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Also support direct .fixed class on header */
.header.fixed {
  background: var(--color-main);
  backdrop-filter: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* Header logo variants: default shows color logo, fixed shows white logo */
.header .logo-white {
  display: none;
}

.header .logo-color {
  display: inline;
}

body.has-fixed-header .header .logo-white,
.header.fixed .logo-white {
  display: inline;
}

body.has-fixed-header .header .logo-color,
.header.fixed .logo-color {
  display: none;
}

/* Header text/link colors */
.header,
.header a,
.header .header-nav .nav-link,
.header .header-logo-small {
  color: #ffffff;
}

body.has-fixed-header .header,
body.has-fixed-header .header a,
body.has-fixed-header .header .header-nav .nav-link,
body.has-fixed-header .header .header-logo-small,
.header.fixed,
.header.fixed a,
.header.fixed .header-nav .nav-link,
.header.fixed .header-logo-small {
  color: #ffffff;
}

/* Header sitemap icon color handling */
/* keep sitemap icon white always */
.header .header-sitemap svg path {
  transition: fill 0.5s ease;
  fill: #ffffff !important;
}

body.has-fixed-header .header .header-sitemap svg path,
.header.fixed .header-sitemap svg path {
  fill: #ffffff !important;
}

/* Header burger menu color - always white */
.header .header-burger-line {
  background: #F27935 !important;
}

body.has-fixed-header .header .header-burger-line,
.header.fixed .header-burger-line {
  background: #F27935 !important;
}

.header-burger.clicked .header-burger-line {
  background: #ffffff !important;
}

/* Header logo link: remove underline and inherit color */
.header .header-logo a {
  text-decoration: none;
  color: inherit;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}

.header .header-logo a:hover,
.header .header-logo a:focus {
  text-decoration: none;
  color: inherit;
}

.header .header-logo .header-logo-small {
  text-decoration: none;
}

/* Mobile logo layout - force horizontal */
@media only screen and (max-width: 475px) {

  .header-logo,
  .header-logo-main,
  .header-logo-main a {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
  }
}

/* Dropdown menu base */
.header .nav-item.dropdown {
  position: relative;
}

.header .dropdown-menu {
  position: absolute;
  min-width: 220px;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  top: 100%;
  left: 0;
  z-index: 1400;
  /* bring above */
}

.header .dropdown-menu .dropdown-list__link {
  display: block;
  padding: 10px 16px;
  color: inherit;
}

/* Fixed state: dropdown uses brand color (Starbucks green), white text */
body.has-fixed-header .header .dropdown-menu,
.header.fixed .dropdown-menu {
  background: var(--color-main);
  color: #ffffff;
  border-radius: 1rem;
  /* requirement */
}

body.has-fixed-header .header .dropdown-menu .dropdown-list__link,
.header.fixed .dropdown-menu .dropdown-list__link {
  color: #ffffff;
}

/* Dropdown arrow pointing to 1depth (top center-left offset) */
body.has-fixed-header .header .dropdown-menu::before,
.header.fixed .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 24px;
  /* adjust to align under 1depth */
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-main);
}

/* --- Dropdown: fix hover gap from 1depth to 2depth --- */
/* Theme main.css adds margin-top on .dropdown-menu; neutralize it under header */

/* Create a hover bridge above dropdown to keep hover state while moving cursor */
.header .nav-item.dropdown>.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -60px;
  /* match any visual gap between 1depth and menu */
  height: 60px;
}

/* Ensure the submenu remains interactive and visible while hovered */
.header .nav-item.dropdown:hover>.dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Fix: prevent layout from locking to 100% viewport height so next sections can appear */
.wrap {
  height: auto !important;
  min-height: 100%;
  overflow-y: visible;
  display: block;
  /* avoid flex clipping from theme */
}

/* Center the navigation area - 전체 화면 너비 */
.header .header-inner {
  margin: 0 auto;
  display: block;
  width: 100%;
  max-width: 100%;
}

.header .header-nav {
  text-align: center;
  display: block;
  width: 100%;
}

.header .header-nav .header-nav-list {
  display: inline-flex;
  /* shrink to content and center via parent text-align */
  align-items: center;
  gap: 0;
  /* let theme spacing apply; adjust if necessary */
  width: 100%;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Create carousels */
.create-carousel {
  width: 100%;
  height: auto;
}

.create-carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.create-carousel img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Service preview image in title area */
.service-title-wrap__cnt {
  margin-top: 16px;
}

.service-title-wrap__img {
  width: 100%;
  max-width: 420px;
}

.service-title-wrap__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: opacity .3s ease;
}

/* Plants carousel */
.plants {
  padding-top: 40px;
  padding-bottom: 40px;
}

.plants-slider {
  position: relative;
  padding: 0 2rem
}

.plant-card {
  background: #fff;
  border-radius: 2rem !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.plant-card__img img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2rem 2rem 0 0;
}

.plant-card__info {
  padding: 14px 16px;
  background: #fafafa;
}

.plant-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-font);
}

.plant-card__sci {
  margin-top: 4px;
  font-style: italic;
  font-size: 13px;
  line-height: 18px;
  color: #667085;
}

/* Sitemap icon positioned like logo at the far right */
.header .header-sitemap {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  display: flex;
  align-items: center;
  z-index: 20;
  /* above nav if overlapping */
}

/* Footer theming: dark background, light text */
.footer {
  background-image: url('../images/bq_footer_bg.jpg');
  color: var(--color-bg);
  margin-top: 100px;
}

.footer a {
  color: var(--color-bg);
}

.footer a:hover,
.footer a:focus {
  color: var(--color-bg);
  opacity: .9;
}

.footer .footer-logo {
  color: var(--color-bg);
}

.footer .footer-logo .footer-logo-main,
.footer .footer-logo .footer-logo-small {
  color: var(--color-bg);
}

.footer .copyright {
  color: var(--color-bg);
}

.footer .footer-list__link {
  color: var(--color-bg);
}

.footer .footer-list__item.active .footer-list__link {
  color: var(--color-bg);
}

.footer .footer-social__link svg path {
  fill: var(--color-bg) !important;
}

.header .header-sitemap__link svg {
  width: 24px;
  height: 24px;
}

/* Default and hover colors for sitemap icon */
.header .header-sitemap__link svg path {
  fill: #fff;
  /* default white */
  transition: fill .2s ease;
}

/* ==========================
   Intro/About page cleanup
   ========================== */
.content-section {
  padding: 48px 0;
}

.content-section .content-text p {
  margin: 0 0 12px;
}

/* Table responsive wrapper */
.table-wrap {
  width: 100%;
  overflow: auto;
  margin: 16px 0 28px;
}

.content-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 16px;
  min-width: 640px;
}

.content-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #2c5530;
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #2c5530;
}

.content-table th,
.content-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
}

.content-table tbody td {
  color: #374151;
  font-size: 16px;
}

.content-table tbody tr:nth-child(even) {
  background: #fbfbfc;
}

.content-table tbody tr:hover {
  background: #f3f4f6;
}

/* Subpages: elevated container */
.is-subpage .table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  background: #fff;
}

.is-subpage .content-table th:first-child,
.is-subpage .content-table td:first-child {
  padding-left: 18px;
}

.is-subpage .content-table th:last-child,
.is-subpage .content-table td:last-child {
  padding-right: 18px;
}

@media (max-width: 768px) {
  .content-table {
    min-width: 560px;
    font-size: 14px;
  }

  .content-table thead th {
    font-size: 14px;
    padding: 12px 14px;
  }

  .content-table tbody td {
    font-size: 15px;
    padding: 12px 14px;
  }
}

/* Image gallery grid */
.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.image-gallery .gallery-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
}

.image-gallery .gallery-item img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.image-gallery .gallery-item figcaption {
  padding: 8px 10px;
  font-size: 13px;
  color: #555;
}

.header .header-sitemap__link:hover svg path {
  fill: var(--color-main);
}



/* Header reservation actions separated from the main GNB. */
.header .header-reservation-actions {
  position: absolute;
  right: 128px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 30;
}

.header .header-reservation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: #0072bc;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
  transition: background-color .2s ease, transform .2s ease;
}

.header .header-reservation-btn--studio {
  background: #0e2842;
}

.header .header-reservation-btn:hover,
.header .header-reservation-btn:focus {
  transform: translateY(-1px);
  background: #00a6e8;
}

.mobile-reservation-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mobile-reservation-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  color: #102235 !important;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
}

@media (max-width: 1180px) {
  .header .header-reservation-actions {
    right: 86px;
  }

  .header .header-reservation-btn {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .header .header-reservation-actions {
    display: none;
  }
}

/* 햄버거 버튼 - PC와 모바일 모두 표시 */
.header .header-burger {
  display: flex !important;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2002;
  cursor: pointer;
  padding: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  /* Drive line color using currentColor for reliability */
  color: #F27935;

}

.header .header-burger:hover {
  background: var(--color-main);
  color: #ffffff;
  /* lines turn white on hover */
}

/* 햄버거 라인 애니메이션 */
.header .header-burger-inner {
  position: relative;
  width: 22px;
  height: 15px;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.header .header-burger-line {
  display: block !important;
  width: 100%;
  height: 3px;
  /* fallback; will be overridden by the more specific selector below */
  background: #fff !important;
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

/* Stronger selector: ensure lines inherit currentColor regardless of theme overrides */
.header .header-burger .header-burger-inner>.header-burger-line {
  background: #fff !important;
}

body.has-fixed-header .header .header-burger .header-burger-inner>.header-burger-line {
  background: #fff !important;
}

.header.fixed .header-burger .header-burger-inner>.header-burger-line {
  background: #fff !important;
}

.dark .header .header-burger .header-burger-inner>.header-burger-line {
  background: #fff !important;
}

.header .header-burger:hover .header-burger-line {
  background: #fff !important;
}

/* Force visible line colors explicitly (robust fallback) */
.header .header-burger>.header-burger-inner>.header-burger-line {
  background-color: #fff !important;
  opacity: 1 !important;
}

.header .header-burger:hover>.header-burger-inner>.header-burger-line {
  background-color: #ffffff !important;
  opacity: 1 !important;
}

/* 메뉴 열렸을 때 햄버거를 X로 변경 */
body.mobile-menu-open .header .header-burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.mobile-menu-open .header .header-burger-line:nth-child(2) {
  opacity: 0;
}

body.mobile-menu-open .header .header-burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* PC에서 헤더 메뉴 표시 */
.header .header-inner {
  display: block;
}

/* PC에서 햄버거 버튼 위치 조정 (메뉴 오른쪽) */
@media (min-width: 993px) {
  .header .header-burger {
    right: 80px;
  }
}

/* Mobile menu overlay/panel - 전체 화면 */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 2000;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  background: var(--color-main);
  transform: translateX(100%);
  transition: transform .4s ease;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-overlay.active .mobile-menu-panel {
  transform: translateX(0);
}

/* 패널 내부 닫기 버튼 */
.mobile-menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-close {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-close svg path {
  stroke: #ffffff !important;
  stroke-width: 2;
}

.mobile-menu-content {
  padding: 80px 40px 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* 모바일 메뉴 내부 네비게이션 스타일 */
.mobile-menu-content .header-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content .nav-item {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content .nav-link {
  display: block;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-menu-content .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content .dropdown-menu {
  position: static;
  display: none;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content .nav-item.active .dropdown-menu,
.mobile-menu-content .nav-item:hover .dropdown-menu {
  display: block;
}

.mobile-menu-content .dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content .dropdown-list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-content .dropdown-list__link {
  display: block;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.mobile-menu-content .dropdown-list__link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* 태블릿 이상에서 메뉴 패널 크기 조정 */
@media (min-width: 768px) {
  .mobile-menu-panel {
    width: 60%;
    max-width: 800px;
  }

  .mobile-menu-content .nav-link {
    font-size: 32px;
  }

  .mobile-menu-content .dropdown-list__link {
    font-size: 22px;
  }
}

/* ==========================
   Plants Grid (식물 도감)
   ========================== */
.program-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 20px;
  margin: 20px 0;
}

@media (min-width:640px) {
  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1024px) {
  .program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.program-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.program-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f3f4f6;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.program-content {
  padding: 16px;
}

.program-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.program-title a {
  text-decoration: none;
  color: #111827;
}

.program-info {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.program-info span {
  margin-right: 8px;
}

.program-description {
  font-size: 14px;
  color: #374151;
  margin: 0;
}

.program-description .tag {
  display: inline-block;
  margin-right: 4px;
  color: #2563eb;
  cursor: pointer;
}

.program-description .tag:hover {
  text-decoration: underline;
}

/* ==========================
   Notice/News board pages (announcement, news)
   ========================== */
.board-header {}

.board-header .board-title {
  margin: 0 0 20px;
  font-size: 56px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-font);
}

.board-header .board-subtitle {
  margin: 0 0 10px;
  font-size: 16px;
  color: #6b7280;
}

.board-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.board-tab {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  font-size: 18px;
  color: #6b7280;
  text-decoration: none;
}

.board-tab:hover {
  color: #374151;
}

.board-tab.is-active {
  color: #111827;
  font-weight: 700;
}

.board-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #111827;
}

.board-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px 0 16px;
  border-bottom: 1px solid #e5e7eb;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-select,
.search-input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.search-input {
  min-width: 240px;
}

.btn-search {
  height: 40px;
  padding: 0 14px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

.btn-search:hover {
  opacity: .92;
}

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

.board-list--line .board-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 2px;
  border-bottom: 1px solid #eef2f7;
}

.board-list--line .board-item:hover {
  background: #fafafa;
}

.board-no {
  flex: 0 0 auto;
  min-width: 44px;
  height: 28px;
  border-radius: 14px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #475569
}

.board-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.board-title-link {
  font-weight: 700;
  color: #111827;
  text-decoration: none;
  line-height: 1.45;
}

.board-title-link:hover {
  text-decoration: underline;
}

.board-meta {
  font-size: 12px;
  color: #94a3b8;
}

.board-badge-important {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  background: #fee2e2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 2px 8px
}

.board-date {
  flex: 0 0 auto;
  color: #6b7280;
  font-size: 14px;
  min-width: 90px;
  text-align: right;
}

/* Pagination */
.pagination {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.pagination a {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  color: #374151;
  text-decoration: none;
  min-width: 36px;
  text-align: center;
}

.pagination a:hover {
  background: #f9fafb;
}

.pagination a.current {
  background: #111827;
  color: #fff;
  border-color: #111827;
}

@media (max-width: 768px) {
  .board-header {
    padding: 28px 0 8px;
  }

  .board-header .board-title {
    font-size: 36px;
  }

  .search-input {
    min-width: 140px;
  }

  .board-list--line .board-item {
    align-items: flex-start;
    gap: 8px;
  }

  .board-date {
    text-align: left;
  }

  .board-actions {
    justify-content: stretch;
  }

  .search-form {
    width: 100%;
  }
}

/* ==========================
   Info cards (about/facilities/guide)
   ========================== */
.info-cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 24px;
}

@media (min-width: 600px) {
  .info-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (min-width: 992px) {
  .info-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  .info-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
  }
}

.info-card {
  position: relative;
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
  border-color: #e5e7eb;
}

.info-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-font);
  margin-bottom: 8px;
}

.info-card-title::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: var(--color-main);
}

.info-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
}

/* Accent variant (optional) */
.info-card--accent {
  border-color: rgba(11, 66, 26, .18);
  background: linear-gradient(180deg, rgba(11, 66, 26, .02) 0%, #fff 100%);
}

.info-card--accent .info-card-title::before {
  background: var(--color-sub);
}

/* ==========================
   LNB layout for intro subpages (about/facilities/guide)
   Apply when body has .lnb-layout
   ========================== */
body.lnb-layout {
  scroll-behavior: smooth;
}

body.lnb-layout .content-grid {
  display: block;
}

@media (min-width: 500px) {

  /* hide top menu and burger on these pages over 500px */
  body.lnb-layout .header .js-header-inner {
    display: none !important;
  }

  body.lnb-layout .header .header-burger {
    display: none !important;
  }

  /* two-column layout: sidebar left, content right */
  body.lnb-layout .content-grid {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
  }

  /* sticky sidebar */
  body.lnb-layout .sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
  }

  body.lnb-layout .sidebar .sidebar-menu {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
  }

  body.lnb-layout .sidebar .sidebar-title {
    font-weight: 700;
    margin-bottom: 8px;
  }

  body.lnb-layout .sidebar .sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  body.lnb-layout .sidebar .sidebar-menu li {
    margin: 4px 0;
  }

  body.lnb-layout .sidebar .sidebar-menu a {
    display: block;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--color-font);
  }

  body.lnb-layout .sidebar .sidebar-menu a:hover {
    background: rgba(11, 66, 26, .06);
  }

  body.lnb-layout .sidebar .sidebar-menu a.active {
    background: rgba(11, 66, 26, .10);
    font-weight: 600;
  }
}

/* ==========================
   User Vote (Star Rating)
   ========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.usevote {
  margin: 0 auto;
  max-width: 1320px;
  margin-top: 100px;
}

.usevote .message {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-font);
}

.usevote .usevote-form {
  margin-bottom: 12px;
}

.usevote .rating-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rating-fieldset {
  border: 0px;
}

.usevote .rating-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.usevote .rating-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--color-sub2);
  border-radius: 10px;
  background: var(--color-bg);
  color: var(--color-font);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.usevote .rating-option .stars {
  display: inline-flex;
  letter-spacing: 2px;
}

.usevote .rating-option .star {
  font-size: 18px;
  line-height: 1;
}

.usevote .rating-option .star--filled {
  color: var(--color-sub);
}

.usevote .rating-option .star--empty {
  color: #d0d5dd;
}

.usevote .rating-option .rating-label {
  font-size: 14px;
}

/* Hover/Focus/Checked states */
.usevote .rating-option:hover {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(11, 66, 26, .12);
}

.usevote .rating-input:focus+.rating-option {
  outline: 2px solid var(--color-main);
  outline-offset: 2px;
}

.usevote .rating-input:checked+.rating-option {
  border-color: var(--color-main);
  background: rgba(11, 66, 26, .06);
}

.usevote .comment textarea {
  width: 100%;
  min-height: 120px;
  padding: 10px 12px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: var(--color-font);
}

.usevote .buttons {
  margin-top: 12px;
}

/* Uservote: success (thanks) box */
.vote-thanks {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #d1fae5;
  /* emerald-100 */
  background: #ecfdf5;
  /* emerald-50 */
  color: #065f46;
  /* emerald-800 */
  border-radius: 10px;
  font-weight: 700;
}

.vote-thanks__icon svg {
  display: block;
}

/* Logo swap: default white, fixed -> color */
.header .header-logo .logo-white {
  display: inline-block;
  height: 50px;
  width: auto;
  vertical-align: middle;
}

.header .header-logo .logo-color {
  display: none;
  height: 50px;
  width: auto;
  vertical-align: middle;
}

.header.fixed .header-logo .logo-color {
  display: inline-block;
}

.header.fixed .header-sitemap__link svg path {
  fill: #000;
  /* default white */
  transition: fill .2s ease;
}

/* Responsive tweaks */

@media (max-width: 1200px) {
  .header .header-sitemap {
    display: none;
  }
}

/* 모바일에서는 헤더 메뉴 숨기고 햄버거 메뉴만 표시 */
@media (max-width: 992px) {
  .header .header-sitemap {
    display: none;
  }

  /* 모바일에서는 헤더의 nav를 숨김 */
  .header .header-inner {
    display: none !important;
  }

  /* 햄버거 버튼은 표시 */
  .header .header-burger {
    display: flex !important;
    right: 20px;
  }
}

/* ==========================
   Carousel UI (Plants / Programs)
   ========================== */
/* Swiper pagination bullets */
.plants-slider .swiper-pagination-bullet,
.project-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, .25);
  opacity: 1;
  margin: 0 4px !important;
}

.plants-slider .swiper-pagination-bullet-active,
.project-slider .swiper-pagination-bullet-active {
  background: var(--color-main);
}

/* Plants pagination position */
.plants-slider .swiper-pagination {
  bottom: -40px !important;
}

/* Swiper navigation arrows */
.plants-slider .swiper-button-prev,
.plants-slider .swiper-button-next,
.project-slider .swiper-button-prev,
.project-slider .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  backdrop-filter: blur(6px);
}

.plants-slider .swiper-button-prev:after,
.plants-slider .swiper-button-next:after,
.project-slider .swiper-button-prev:after,
.project-slider .swiper-button-next:after {
  font-size: 16px;
  color: #111827;
  font-weight: 700;
}

.plants-slider .swiper-button-prev:hover,
.plants-slider .swiper-button-next:hover,
.project-slider .swiper-button-prev:hover,
.project-slider .swiper-button-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

/* ==========================
   Project (Programs) Slide Card - 배경 이미지 항상 표시
   ========================== */
.project-slide {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

/* 이미지를 배경으로 항상 표시 */
.project-slide__img {
  position: absolute;
  inset: 0;
  opacity: 1 !important;
  z-index: 0 !important;
}

.project-slide__img img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* 텍스트 영역 - 기본 상태에서 반투명 배경 */
.project-slide__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  gap: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .50) 100%);
  transition: background .35s ease;
  z-index: 1;
}

/* hover 시 배경을 더 진하게 */
.project-slide:hover .project-slide__hover {
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .70) 100%);
}

.project-slide__info {
  max-width: calc(100% - 56px);
}

.project-slide__title {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.project-slide__descr {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
}

.project-slide__btns {
  flex-shrink: 0;
}

.project-slide__btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.project-slide__btn:hover {
  transform: translateY(-1px);
}

/* Invert style: 이미지를 처음부터 배경으로 표시 */
.project-slide--invert {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.project-slide--invert:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.project-slide--invert .project-slide__img {
  position: absolute;
  inset: 0;
  opacity: 1 !important;
  z-index: 0 !important;
}

.project-slide--invert .project-slide__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.project-slide--invert .project-slide__body {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .50) 100%);
  color: #fff;
  transition: background .35s ease;
  z-index: 1;
}

.project-slide--invert:hover .project-slide__body {
  background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .70) 100%);
}

.project-slide--invert .project-slide__info {
  max-width: calc(100% - 56px);
}

.project-slide--invert .project-slide__title {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
  color: #fff;
}

.project-slide--invert .project-slide__descr {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: .95;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #fff;
}

.project-slide--invert .project-slide__btns {
  flex-shrink: 0;
}

.project-slide--invert .project-slide__btn {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.project-slide--invert:hover .project-slide__btn {
  transform: translateY(-1px);
}

/* PC: fix card height to 400px */
@media (min-width: 1200px) {
  .project-slider .swiper-slide {
    height: auto;
  }

  .project-slide--invert {
    aspect-ratio: auto;
    height: 400px;
  }
}

/* ==========================
   Plants Card tweaks
   ========================== */
.plant-card {
  transition: transform .25s ease, box-shadow .25s ease;
}

.plant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
}

.plant-card__img img {
  height: 260px;
}

/* ==========================
   Testimonials (Reviews) Box Design
   ========================== */
.testimonials .js-reviews {
  overflow: hidden;
}

/* Fallback layout only before Swiper initialization */
.testimonials .js-reviews:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  width: 100%;
  gap: 16px;
}

.testimonials .js-reviews:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 700px) {
  .testimonials .js-reviews:not(.swiper-initialized) .swiper-slide {
    width: calc(50% - 16px);
  }
}

@media (min-width: 1100px) {
  .testimonials .js-reviews:not(.swiper-initialized) .swiper-slide {
    width: calc(33.3333% - 16px);
  }
}

@media (min-width: 1200px) {
  .testimonials .js-reviews:not(.swiper-initialized) .swiper-wrapper {
    gap: 24px;
  }

  .testimonials .js-reviews:not(.swiper-initialized) .swiper-slide {
    width: calc(33.3333% - 24px);
  }
}

.testimonials .testimonials-slide {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .002);
  border: 1px solid #e5e7eb;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.testimonials .testimonials-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  border-color: var(--color-main);
}

.testimonials .testimonials-slide__img {
  position: relative;
}

.testimonials .testimonials-slide__img img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.testimonials .testimonials-slide__info {
  position: relative;
  padding: 16px;
  color: var(--color-font);
  z-index: 2;
}

.testimonials .testimonials-slide__title {
  margin: 0 0 8px 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.35;
}

.testimonials .testimonials-slide__descr {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.testimonials .testimonials-slide__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 26px;
}

.testimonials .testimonials-slide__icon {
  flex-shrink: 0;
}

/* Hover overlay: semi-transparent to show image */
.testimonials .testimonials-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-main);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
  pointer-events: none;
}

.testimonials .testimonials-slide:hover::after {
  opacity: 0.3;
}

.testimonials .testimonials-slide:hover .testimonials-slide__info {
  color: #fff;
}

.testimonials .testimonials-slide:hover .testimonials-slide__descr {
  color: #fff;
  opacity: .95;
}

.testimonials .testimonials-slide:hover .testimonials-slide__title {
  color: #fff;
}

.testimonials .testimonials-slide:hover .testimonials-slide__icon i {
  color: #fff;
}

/* Mobile: show 1 slide with 15% peek on sides - expanding panels style */
@media (max-width: 768px) {
  .testimonials .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .testimonials .testimonials-slider {
    overflow: visible;
    position: relative;
  }

  .testimonials .js-reviews {
    overflow: visible;
    padding: 0;
    margin: 0 auto;
  }

  .testimonials .swiper-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    /* Swiper가 transform을 자동으로 처리 */
  }

  .testimonials .swiper-slide {
    opacity: 1 !important;
    transition: opacity 0.3s ease !important;
    display: flex !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 70% !important;
    max-width: 400px;
    margin: 0 15% !important;
  }

  /* Active 슬라이드 - expanding-panels 스타일 */
  .testimonials .swiper-slide-active,
  .testimonials .swiper-slide-duplicate-active {
    opacity: 1 !important;
    z-index: 10 !important;
  }

  /* is-hover 클래스가 있는 슬라이드 */
  .testimonials .testimonials-slide.is-hover {
    transform: scale(1.05);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .15);
    border-color: var(--color-main);
  }

  /* 이전/다음 슬라이드 */
  .testimonials .swiper-slide-prev,
  .testimonials .swiper-slide-next,
  .testimonials .swiper-slide-duplicate-prev,
  .testimonials .swiper-slide-duplicate-next {
    opacity: 1 !important;
    z-index: 1 !important;
  }

  .testimonials .testimonials-slide {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .002);
    border: 1px solid #e5e7eb;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonials .testimonials-slide:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
    border-color: var(--color-main);
  }

  .testimonials .testimonials-slide__img {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 30px;
    flex-shrink: 0;
  }

  .testimonials .testimonials-slide__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .testimonials .testimonials-slide__info {
    text-align: center;
    width: 100%;
  }
}

/* Desktop height alignment */
@media (min-width: 1200px) {
  .testimonials .testimonials-slide__img img {
    height: 300px;
  }
}

/* ==========================
   News carousel card design
   ========================== */
.section.news .news-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}

.section.news .news-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.section.news .news-card__body {
  padding: 16px;
}

.section.news .news-card__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.45;
  margin-bottom: 8px;
  color: var(--color-font, #111827);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.section.news .news-card__meta {
  font-size: 13px;
  color: #6b7280;
}

.section.news .news-carousel .swiper-container {
  overflow: hidden;
}

.section.news .news-carousel .swiper-wrapper {
  display: flex;
}

.section.news .news-carousel .swiper-slide {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 600px) {
  .section.news .news-carousel .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 900px) {
  .section.news .news-carousel .swiper-slide {
    width: 33.3333%;
  }
}

@media (min-width: 1200px) {
  .section.news .news-carousel .swiper-slide {
    width: 25%;
  }
}

/* News badges and excerpt */
.section.news .news-card__badge {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1;
  padding: 3px 8px;
  border-radius: 9999px;
  border: 1px solid transparent;
}

.section.news .news-card__badge.badge--ann {
  background: #eef2ff;
  color: #3730a3;
  border-color: #c7d2fe;
}

.section.news .news-card__badge.badge--noti {
  background: #ecfeff;
  color: #0e7490;
  border-color: #a7f3d0;
}

.section.news .news-card__excerpt {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* External navigation buttons for news */
.section-news-wrapper {
  position: relative;
}

.section-news-wrapper .news-nav {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 8px;
}

.section-news-wrapper .news-nav button {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.section-news-wrapper .news-nav button:hover {
  background: #f9fafb;
}

/* ==========================
   Sub Breadcrumb on Sub Hero
   ========================== */
.sub-breadcrumb {
  margin: 10px 0;
}

.sub-breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sub-breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}

.sub-breadcrumb__link,
.sub-breadcrumb__text {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.sub-breadcrumb__link:hover {
  text-decoration: underline;
}

.sub-breadcrumb .icon-home,
.sub-breadcrumb .icon-caret {
  display: inline-flex;
  color: inherit;
}

.sub-breadcrumb .icon-home svg {
  width: 18px;
  height: 18px;
}

.sub-breadcrumb .icon-caret svg {
  width: 14px;
  height: 14px;
  opacity: .9;
}

/* Place inside hero: bottom-right overlay */
.page-hero .sub-breadcrumb {
  position: absolute;
  right: 24px;
  bottom: 24px;
  margin: 0;
  color: #fff;
  z-index: 5;
}

.page-hero .sub-breadcrumb__list {
  gap: 18px;
}

.page-hero .sub-breadcrumb__item {
  opacity: .95;
}

.page-hero .sub-breadcrumb__link,
.page-hero .sub-breadcrumb__text {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-hero .sub-breadcrumb {
    right: 12px;
    bottom: 12px;
  }

  .sub-breadcrumb__list {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sub-breadcrumb__link,
  .sub-breadcrumb__text {
    font-size: 12px;
  }
}

/* Sub Breadcrumb on Sub Hero: responsive tweaks */
@media (max-width: 768px) {
  .page-hero .sub-breadcrumb__list {
    flex-direction: column;
  }

  .page-hero .sub-breadcrumb__item {
    margin-bottom: 6px;
  }
}

/* ==========================
   Intro pages typography (about, facilities, guide)
   ========================== */
.is-subpage .content-section .title,
.is-subpage .content-section .content-title {
  font-size: 36px;
  font-weight: 800;
}

.is-subpage .content-section .content-subtitle {
  font-size: 24px;
  font-weight: 600;
}

.is-subpage .content-section .content-text,
.is-subpage .content-section .content-text p {
  font-size: 18px;
}

@media (max-width: 768px) {

  .is-subpage .content-section .title,
  .is-subpage .content-section .content-title {
    font-size: 28px;
  }

  .is-subpage .content-section .content-subtitle {
    font-size: 22px;
  }

  .is-subpage .content-section .content-text,
  .is-subpage .content-section .content-text p {
    font-size: 16px;
  }
}

/* Spacing & line-heights for intro pages */
.is-subpage .content-section .title,
.is-subpage .content-section .content-title {
  line-height: 1.25;
  margin-bottom: 18px;
}

.is-subpage .content-section .content-subtitle {
  line-height: 1.35;
  margin: 36px 0 14px;
}

.is-subpage .content-section .content-text {
  margin-bottom: 18px;
}

.is-subpage .content-section .content-text p {
  line-height: 1.75;
  margin: 0 0 14px;
}

@media (max-width: 768px) {

  .is-subpage .content-section .title,
  .is-subpage .content-section .content-title {
    line-height: 1.3;
    margin-bottom: 12px;
  }

  .is-subpage .content-section .content-subtitle {
    line-height: 1.35;
    margin: 24px 0 10px;
  }

  .is-subpage .content-section .content-text {
    margin-bottom: 16px;
  }

  .is-subpage .content-section .content-text p {
    line-height: 1.7;
    margin: 0 0 10px;
  }
}

.facility-photos {
  position: relative;
  width: 100%;
}

.facility-photos .facility-photos-base {
  position: relative;
}

.facility-photos .facility-photos-base img {
  width: 100%;
  display: block;
}

.facility-photos .image-facilities-pointer {
  position: absolute;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.facility-photos .image-facilities-pointer img {
  width: 100%;
  height: 100%;
  display: block;
}

.facility-photos .image-facilities-pointer.point-one {
  left: 10%;
  top: 20%;
}

.facility-photos .image-facilities-pointer.point-two {
  left: 20%;
  top: 30%;
}

.facility-photos .image-facilities-pointer.point-three {
  left: 30%;
  top: 40%;
}

.facility-photos .image-facilities-pointer.point-four {
  left: 40%;
  top: 50%;
}

.facility-photos .image-facilities-pointer.point-five {
  left: 50%;
  top: 60%;
}

.facility-photos.blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 900px) {
  .facility-photos.blog-list {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
}

.blog-card:hover {
  border-color: #e5e7eb;
}

.blog-card__img {
  display: block;
  flex: 0 0 42%;
  max-width: 42%;
}

.blog-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.blog-card__body {
  flex: 1 1 auto;
  padding: 16px;
  color: var(--color-font);
  display: flex;
  flex-direction: column;
}

.blog-card__title {
  margin: 0 0 8px;
  font-weight: 800;
  font-size: 20px;
  line-height: 1.35;
  text-align: left;
}

.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover {
  text-decoration: none;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #4b5563;
  text-align: left;
}

@media (max-width: 640px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card__img {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .blog-card__img img {
    aspect-ratio: 3/2;
  }
}

/* Facilities modal */
.facility-photos.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}

.facility-photos.modal.is-open {
  display: flex;
}

.facility-photos.modal .modal-content {
  background: #fff;
  width: min(600px, 92%);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .25);
}

.facility-photos.modal .modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.facility-photos.modal .modal-close::before,
.facility-photos.modal .modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #999;
  transform-origin: center;
}

.facility-photos.modal .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.facility-photos.modal .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.content-text ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.content-text ul li {
  margin: 1rem 0rem;
}


h1.board-title {
  font-size: var(--fz-xl);
  font-weight: 800;
  color: #0f172a !important;
  margin: 0;
}

p.board-subtitle {
  font-size: var(--fz-md);
  color: #64748b;
  margin-top: 6px;
}

.legal-article {
  padding: 4rem 0rem;
  line-height: 1.8;
}

/* 모바일 메뉴 토글 시 드롭다운 확장 */
.mobile-menu-content .nav-item.dropdown>.nav-link::after {
  content: '+';
  float: right;
  font-size: 32px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.mobile-menu-content .nav-item.dropdown.active>.nav-link::after {
  transform: rotate(45deg);
}

.font-color-red {
  color: #d32f2f;
}


/* POSCO-inspired global navigation */
.header.posco-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 12;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

body.has-fixed-header .header.posco-header,
.header.posco-header.fixed {
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}

body.posco-gnb-open .header.posco-header {
  height: 150px;
  background: none;
  box-shadow: none;
}

.header.posco-header .posco-header__inner {
  position: relative;
  z-index: 2;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 70px;
  padding: 0;
}

body.posco-gnb-open .header.posco-header .posco-header__inner {
  margin-top: 27px;
  align-items: flex-start;
}

.header.posco-header .posco-header__logo,
.header.posco-header .posco-header__logo .header-logo-main,
.header.posco-header .posco-header__logo a {
  display: inline-flex;
  align-items: center;
  width: auto;
}

body.posco-gnb-open .header.posco-header .posco-header__logo {
  display: none;
}

.header.posco-header .logo-white {
  display: block !important;
  width: 200px;
  max-width: 200px;
  height: auto;
  object-fit: contai200
}

.posco-header__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header.posco-header .posco-menu-open {
  position: relative;
  width: 58px;
  height: 58px;
  display: block !important;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  transform: none;
}

body.has-fixed-header .header.posco-header .posco-menu-open,
.header.posco-header.fixed .posco-menu-open {
  border-color: #b6b6b6;
}

.posco-menu-open__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.header.posco-header .posco-menu-open .header-burger-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 14px;
  display: block !important;
  transform: translate(-50%, -50%);
}

.header.posco-header .posco-menu-open .header-burger-line {
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  margin: 0;
  background: #fff !important;
  border-radius: 0;
}

.header.posco-header .posco-menu-open .header-burger-line:nth-child(1) {
  top: 0;
}

.header.posco-header .posco-menu-open .header-burger-line:nth-child(2) {
  top: 6px;
}

.header.posco-header .posco-menu-open .header-burger-line:nth-child(3) {
  top: 12px;
}

body.has-fixed-header .header.posco-header .posco-menu-open .header-burger-line,
.header.posco-header.fixed .posco-menu-open .header-burger-line {
  background: #222 !important;
}

.posco-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.header.posco-header .posco-header__quick {
  display: none !important;
}

.posco-header__lang,
.posco-gnb-lang {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.posco-header__lang li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  opacity: 0.6;
}

.posco-header__lang li+li {
  margin-left: 10px;
}

.posco-header__lang li.active {
  opacity: 1;
}

.posco-header__lang a {
  color: inherit !important;
  text-decoration: none;
}

body.has-fixed-header .header.posco-header .posco-header__lang li,
.header.posco-header.fixed .posco-header__lang li {
  color: #222;
}

.posco-gnb-overlay {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
  opacity: 0;
  visibility: hidden;
  background: #022846;
}

.posco-gnb-overlay.active {
  display: block;
  z-index: 1000;
  visibility: visible;
  animation: poscoFadeIn 0.6s cubic-bezier(0.455, 0.030, 0.515, 0.955) 0.12s both;
}

@keyframes poscoFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.posco-gnb-panel {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: visible;
  background: #022846;
  color: #fff;
}

.posco-gnb-panel::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  display: block;
  background-image: url("https://www.posco.co.kr/docs/kor7/jsp/resources/images/common/bg_lnb2.jpg");
  background-position: center;
  background-size: cover;
  opacity: 1;
}

.posco-gnb-top {
  position: absolute;
  right: 60px;
  top: 8px;
  z-index: 6;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  border: 0;
}

.posco-gnb-logo {
  display: none;
}

.posco-gnb-tools {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}

.posco-gnb-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 2px;
  color: #fff !important;
  font-size: 14px;
  line-height: 1;
  text-decoration: none;
}

.posco-gnb-lang li+li {
  margin-left: 12px;
}

.posco-gnb-lang li:not(.active) {
  opacity: 0.6;
}

.posco-menu-close {
  position: relative;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: #1c3c52;
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.posco-menu-close::before,
.posco-menu-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  margin: -1px 0 0 -12px;
  background: #fff !important;
  transform-origin: 50% 50%;
}

.posco-menu-close::before {
  transform: rotate(-45deg);
}

.posco-menu-close::after {
  transform: rotate(45deg);
}

.posco-gnb-content {
  position: relative;
  z-index: 5;
  top: 80px;
  height: calc(100% - 80px);
  display: flex;
  justify-content: center;
  padding: 0;
  outline: 0;
}

.posco-gnb-nav,
.posco-gnb-nav .posco-gnb-list {
  display: block;
}

.posco-gnb-list {
  position: relative;
  width: 1320px;
  height: calc(100% - 4vh);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 4vh 0 0;
  padding: 0;
  list-style: none;
}

.posco-gnb-item {
  position: relative;
  width: 15%;
  min-width: 0;
  margin: 40px 5% 0;
  border: 0;
}

.posco-gnb-item:nth-child(5) {
  width: 22%;
  margin-right: -25px;
}

.posco-gnb-item>.nav-link {
  position: relative;
  display: block;
  min-width: 200px;
  min-height: 0;
  padding: 0 0 10px;
  color: #fff !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 1;
}

.posco-gnb-item>.nav-link::before {
  display: none;
}

.posco-gnb-item>.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.5s ease;
}

.posco-gnb-item:hover>.nav-link::after,
.posco-gnb-item.active>.nav-link::after,
.posco-gnb-item>.nav-link:focus::after {
  width: 100%;
}

.posco-gnb-item.dropdown>.nav-link::after {
  border: 0;
  transform: none;
}

.posco-gnb-item>.dropdown-menu {
  position: static !important;
  display: block !important;
  width: auto;
  min-width: 0;
  max-width: none;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.posco-gnb-item>.dropdown-menu::before {
  display: none !important;
}

.posco-gnb-item .dropdown-list {
  height: 31vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 2.5vh 0;
  list-style: none;
}

.posco-gnb-item .dropdown-list__item {
  margin: 0;
  border: 0;
}

.posco-gnb-item .dropdown-list__item+.dropdown-list__item {
  margin-top: 0;
}

.posco-gnb-item .dropdown-list__link {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 0 10px;
  color: #fff !important;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-decoration: none;
  opacity: 0.7;
}

.posco-gnb-item .dropdown-list__link::after {
  display: none;
}

.posco-gnb-item .dropdown-list__link:hover,
.posco-gnb-item .dropdown-list__link:focus,
.posco-gnb-item .dropdown-list__item.active .dropdown-list__link {
  color: #fff !important;
  opacity: 1;
}

.posco-gnb-actions {
  position: absolute;
  left: calc(50% + 360px);
  top: 7vh;
  z-index: 6;
  display: block;
  max-width: none;
  margin: 0;
}

.posco-gnb-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  min-height: 54px;
  margin-bottom: 12px;
  padding: 15px 30px;
  border: 1px solid rgba(255, 255, 255, 0.63);
  border-radius: 0;
  box-sizing: border-box;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
}

.posco-gnb-actions a:hover,
.posco-gnb-actions a:focus {
  background: rgba(255, 255, 255, 0.13);
}

@media screen and (max-width: 1350px) {
  .posco-gnb-top {
    right: 80px;
  }

  .posco-gnb-tools {
    gap: 40px;
  }

  .posco-menu-close {
    margin-left: 50px;
  }

  .posco-gnb-list {
    width: min(1180px, calc(100vw - 80px));
  }
}

@media screen and (max-width: 1220px) {
  .posco-gnb-item>.nav-link {
    font-size: 28px;
  }

  .posco-gnb-item .dropdown-list__link {
    font-size: 16px;
  }

  .posco-gnb-actions a {
    width: 200px;
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .header.posco-header {
    height: 16vw;
    z-index: 5;
  }

  .header.posco-header .posco-header__inner {
    width: 90%;
    height: 16vw;
    margin: 0 auto;
  }

  body.posco-gnb-open .header.posco-header .posco-header__inner {
    margin-top: 0;
    align-items: center;
  }

  .header.posco-header .logo-white {
    width: 18.53333333vw;
    max-width: 200px;
    max-height: 4.8vw;
  }

  .posco-header__right {
    display: none;
  }

  .header.posco-header .posco-menu-open {
    width: 9vw;
    height: 9vw;
    min-width: 44px;
    min-height: 44px;
    border-color: rgba(255, 255, 255, 0.55);
  }

  .header.posco-header .posco-menu-open .header-burger-inner {
    width: 3.2vw;
    min-width: 24px;
    height: 2.4vw;
    min-height: 15px;
  }

  .header.posco-header .posco-menu-open .header-burger-line {
    width: 3.2vw;
    min-width: 24px;
    height: 0.4vw;
    min-height: 2px;
  }

  .header.posco-header .posco-menu-open .header-burger-line:nth-child(1) {
    top: 0;
  }

  .header.posco-header .posco-menu-open .header-burger-line:nth-child(2) {
    top: 1vw;
  }

  .header.posco-header .posco-menu-open .header-burger-line:nth-child(3) {
    top: 2vw;
  }

  .posco-gnb-overlay {
    z-index: 20;
    background: transparent;
  }

  .posco-gnb-panel {
    background: rgba(2, 38, 62, 0.95);
    backdrop-filter: blur(5px);
    overflow-y: auto;
  }

  .posco-gnb-panel::before {
    display: none;
  }

  .posco-gnb-top {
    position: static;
    height: 16vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid #0e4166;
    box-sizing: border-box;
  }

  .posco-gnb-logo {
    display: inline-flex;
    align-items: center;
    width: 18.66666667vw;
    height: 4.8vw;
    opacity: 0.6;
  }

  .posco-gnb-logo img {
    width: 100%;
    max-height: 4.8vw;
    object-fit: contain;
  }

  .posco-gnb-lang {
    display: none;
  }

  .posco-menu-close {
    width: 4.93333333vw;
    height: 4.93333333vw;
    min-width: 37px;
    min-height: 37px;
    margin: 0;
    border: 0;
    background: transparent;
  }

  .posco-menu-close::before,
  .posco-menu-close::after {
    width: 4.2vw;
    min-width: 24px;
    height: 0.4vw;
    min-height: 2px;
    margin-left: -2.1vw;
  }

  .posco-gnb-content {
    top: 0;
    height: auto;
    min-height: calc(100vh - 16vw);
    display: block;
    overflow-y: auto;
    padding: 0;
  }

  .posco-gnb-list {
    display: block;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 16vw);
    margin: 0;
    padding: 0 0 17vh;
  }

  .posco-gnb-item,
  .posco-gnb-item:nth-child(5) {
    width: 100%;
    margin: 4vw 0 0;
    padding: 0 4vw 0 12vw;
    box-sizing: border-box;
  }

  .posco-gnb-item:first-child {
    margin-top: 0;
    padding-top: 8vw;
  }

  .posco-gnb-item.active {
    padding-top: 8vw;
    padding-bottom: 3vw;
    background: #004781;
  }

  .posco-gnb-item>.nav-link {
    min-width: 0;
    padding: 0;
    font-size: 5.33333333vw;
    line-height: 1.2;
  }

  .posco-gnb-item.active>.nav-link {
    font-size: 6vw;
  }

  .posco-gnb-item>.nav-link::after {
    display: none;
  }

  .posco-gnb-item.active>.nav-link::before {
    content: "";
    position: absolute;
    right: 2.3vw;
    top: 2.7vw;
    display: block;
    width: 2vw;
    height: 2vw;
    border-radius: 2vw;
    background: #279bf3;
  }

  .posco-gnb-item>.dropdown-menu {
    display: none !important;
    margin-top: 3vw;
  }

  .posco-gnb-item.active>.dropdown-menu {
    display: block !important;
  }

  .posco-gnb-item .dropdown-list {
    height: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 3vw 0 0;
  }

  .posco-gnb-item .dropdown-list__item {
    margin-top: 3vw;
  }

  .posco-gnb-item .dropdown-list__link {
    padding: 0;
    font-size: 4vw;
    font-weight: 400;
    opacity: 1;
  }

  .posco-gnb-actions {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 0 12vw 8vw;
  }

  .posco-gnb-actions a {
    width: 52vw;
    min-height: 0;
    padding: 3vw 7vw;
    font-size: 3.4vw;
  }
}


/* POSCO GNB one-row enforcement */
.header.posco-header .posco-header__inner {
  display: grid !important;
  grid-template-columns: minmax(96px, 1fr) 58px minmax(96px, 1fr) !important;
  align-items: center !important;
  justify-content: initial !important;
  column-gap: 24px !important;
  white-space: nowrap !important;
}

.header.posco-header .posco-header__logo {
  position: static !important;
  justify-self: start !important;
  min-width: 0 !important;
}

.header.posco-header .posco-header__center {
  position: static !important;
  left: auto !important;
  transform: none !important;
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
}

.header.posco-header .posco-header__right {
  position: static !important;
  justify-self: end !important;
  display: flex !important;
  align-items: center !important;
  min-width: 0 !important;
}

.header.posco-header .posco-header__lang {
  display: inline-flex !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: flex-end !important;
  white-space: nowrap !important;
}

.header.posco-header .posco-menu-open {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  flex: 0 0 auto !important;
}

body.posco-gnb-open .header.posco-header .posco-header__inner {
  align-items: center !important;
}

body.posco-gnb-open .header.posco-header .posco-header__logo {
  display: inline-flex !important;
}

@media screen and (max-width: 992px) {
  .header.posco-header .posco-header__inner {
    grid-template-columns: minmax(82px, 1fr) minmax(44px, 9vw) minmax(82px, 1fr) !important;
    column-gap: 12px !important;
  }

  .header.posco-header .posco-header__right {
    display: flex !important;
  }

  .header.posco-header .posco-header__lang li {
    font-size: 12px !important;
  }

  .header.posco-header .posco-header__lang li+li {
    margin-left: 8px !important;
  }
}

@media screen and (max-width: 420px) {
  .header.posco-header .posco-header__inner {
    width: calc(100% - 28px) !important;
  }

  .header.posco-header .logo-white {
    width: 104px !important;
    max-width: 28vw !important;
  }
}


/* POSCO GNB language visibility fix */
.header.posco-header .posco-header__right,
.header.posco-header .posco-header__lang,
.header.posco-header .posco-header__lang li,
.header.posco-header .posco-header__lang a {
  opacity: 1 !important;
  visibility: visible !important;
}

.header.posco-header .posco-header__right {
  display: flex !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  z-index: 3 !important;
}

.header.posco-header .posco-header__lang {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.header.posco-header .posco-header__lang li {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.header.posco-header .posco-header__lang li+li {
  margin-left: 0 !important;
}

.header.posco-header .posco-header__lang a {
  display: inline-flex !important;
  color: #fff !important;
  text-decoration: none !important;
}

body.has-fixed-header .header.posco-header .posco-header__lang li,
body.has-fixed-header .header.posco-header .posco-header__lang a,
.header.posco-header.fixed .posco-header__lang li,
.header.posco-header.fixed .posco-header__lang a {
  color: #222 !important;
}

@media screen and (max-width: 992px) {

  .header.posco-header .posco-header__right,
  .header.posco-header .posco-header__lang {
    display: flex !important;
  }

  .header.posco-header .posco-header__lang {
    gap: 8px !important;
  }

  .header.posco-header .posco-header__lang li,
  .header.posco-header .posco-header__lang a {
    font-size: 12px !important;
  }
}


/* POSCO exact header placement override */
.header.posco-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  width: 100% !important;
  height: 100px !important;
  z-index: 12 !important;
  background: transparent !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

body.cug-ui-home .header.posco-header,
body.main .header.posco-header {
  height: 100px !important;
}

.header.posco-header .posco-header__inner {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: auto !important;
  height: 100px !important;
  margin: 0 70px !important;
  padding: 0 !important;
  column-gap: 0 !important;
  white-space: nowrap !important;
}

.header.posco-header .posco-header__logo {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-self: auto !important;
  flex: 0 0 auto !important;
  min-width: 0 !important;
}

.header.posco-header .posco-header__logo a {
  display: inline-block !important;
  line-height: 0 !important;
}

.header.posco-header .logo-white {
  display: inline-block !important;
  width: 200px !important;
  max-width: 200px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

.header.posco-header .posco-header__center {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  display: block !important;
  justify-self: auto !important;
  transform: translate(-50%, -50%) !important;
}

.header.posco-header .posco-menu-open {
  position: relative !important;
  right: auto !important;
  top: auto !important;
  width: 58px !important;
  height: 58px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.header.posco-header .posco-header__right {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  justify-self: auto !important;
  flex: 0 0 auto !important;
  gap: 22px !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.header.posco-header .posco-header__partners,
.posco-gnb-partners {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 13px !important;
}

.header.posco-header .posco-header__partners a,
.posco-gnb-partners a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 26px !important;
  min-height: 26px !important;
  opacity: .92 !important;
  text-decoration: none !important;
}

.header.posco-header .posco-header__partners a:hover,
.header.posco-header .posco-header__partners a:focus-visible,
.posco-gnb-partners a:hover,
.posco-gnb-partners a:focus-visible {
  opacity: 1 !important;
}

.header.posco-header .posco-header__partners img,
.posco-gnb-partners img {
  display: block !important;
  width: auto !important;
  max-width: 96px !important;
  height: 24px !important;
  object-fit: contain !important;
}

.header.posco-header .posco-header__lang {
  display: inline-flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.header.posco-header .posco-header__lang li {
  display: inline-block !important;
  margin: 0 !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 14px !important;
  opacity: 0.6 !important;
  visibility: visible !important;
}

.header.posco-header .posco-header__lang li+li {
  margin-left: 10px !important;
}

.header.posco-header .posco-header__lang li.active {
  opacity: 1 !important;
}

.header.posco-header .posco-header__lang a {
  display: inline !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
  opacity: inherit !important;
  visibility: visible !important;
}

@media screen and (max-width: 1680px) {
  .header.posco-header .posco-header__inner {
    height: 80px !important;
    margin: 0 40px !important;
  }
}

@media screen and (max-width: 992px) {

  .header.posco-header,
  body.cug-ui-home .header.posco-header,
  body.main .header.posco-header {
    height: 16vw !important;
    min-height: 64px !important;
  }

  .header.posco-header .posco-header__inner {
    display: flex !important;
    width: 90% !important;
    height: 16vw !important;
    min-height: 64px !important;
    margin: 0 auto !important;
    justify-content: space-between !important;
  }

  .header.posco-header .logo-white {
    width: 18.53333333vw !important;
    max-width: 200px !important;
    height: 4.8vw !important;
    max-height: 36px !important;
    min-width: 96px !important;
    min-height: 25px !important;
  }

  .header.posco-header .posco-header__center {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  .header.posco-header .posco-menu-open {
    width: 9vw !important;
    height: 9vw !important;
    min-width: 44px !important;
    min-height: 44px !important;
  }

  .header.posco-header .posco-header__right {
    display: flex !important;
    flex: 0 0 auto !important;
  }

  .header.posco-header .posco-header__partners {
    display: none !important;
  }

  .header.posco-header .posco-header__lang li {
    font-size: 12px !important;
    line-height: 12px !important;
  }

  .header.posco-header .posco-header__lang li+li {
    margin-left: 8px !important;
  }
}


/* POSCO GNB logo pinned left */
.header.posco-header .posco-header__logo {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  z-index: 4 !important;
}

.header.posco-header .posco-header__inner {
  padding-left: 0 !important;
}

@media screen and (max-width: 992px) {
  .header.posco-header .posco-header__logo {
    left: 0 !important;
  }
}


/* POSCO GNB language pinned right */
.header.posco-header .posco-header__right {
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  z-index: 4 !important;
}

.header.posco-header .posco-header__lang {
  justify-content: flex-end !important;
}

@media screen and (max-width: 992px) {
  .header.posco-header .posco-header__right {
    right: 0 !important;
  }
}


/* POSCO sub-page header state */
body:not(.cug-ui-home) .header.posco-header {
  height: 100px !important;
  background: #fff !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: none !important;
}

body:not(.cug-ui-home) .header.posco-header .logo-white {
  display: none !important;
}

body:not(.cug-ui-home) .header.posco-header .logo-color {
  display: inline-block !important;
  width: 126px !important;
  max-width: 126px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

body.cug-ui-home .header.posco-header .logo-color {
  display: none !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open {
  border-color: #b6b6b6 !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line {
  background: #222 !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body:not(.cug-ui-home) .header.posco-header .posco-header__lang a {
  color: #222 !important;
}

body:not(.cug-ui-home) .cug-ui-main,
body:not(.cug-ui-home) main.cms-page {
  padding-top: 100px !important;
}

@media screen and (max-width: 1680px) {
  body:not(.cug-ui-home) .header.posco-header {
    height: 80px !important;
  }

  body:not(.cug-ui-home) .cug-ui-main,
  body:not(.cug-ui-home) main.cms-page {
    padding-top: 80px !important;
  }
}

@media screen and (max-width: 992px) {
  body:not(.cug-ui-home) .header.posco-header {
    height: 16vw !important;
    min-height: 64px !important;
  }

  body:not(.cug-ui-home) .header.posco-header .logo-color {
    width: 18.53333333vw !important;
    max-width: 139px !important;
    height: 4.8vw !important;
    max-height: 36px !important;
    min-width: 96px !important;
    min-height: 25px !important;
  }

  body:not(.cug-ui-home) .cug-ui-main,
  body:not(.cug-ui-home) main.cms-page {
    padding-top: max(64px, 16vw) !important;
  }
}

/* Index background video */
body.cug-ui-home .cms-page.cug-ui-home-main {
  position: relative !important;
  background: #050b14 !important;
}

body.cug-ui-home .cms-page.cug-ui-home-main>section:first-of-type,
body.cug-ui-home .cms-page.cug-ui-home-main>main:first-of-type>section:first-of-type,
body.cug-ui-home .cug-page-hero.cug-origin-hero,
body.cug-ui-home .cug-home-hero {
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: transparent !important;
  background-image: none !important;
}

body.cug-ui-home .cug-index-video-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 720px !important;
  overflow: hidden !important;
  pointer-events: none !important;
  background: #050b14 !important;
}

body.cug-ui-home .cug-index-video-bg::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(0, 18, 42, .72) 0%, rgba(0, 28, 58, .40) 48%, rgba(0, 0, 0, .24) 100%) !important;
}

body.cug-ui-home .cug-index-video-bg__media {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 720px !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body.cug-ui-home .cug-page-hero .cug-page-inner,
body.cug-ui-home .cug-home-hero .cug-home-hero__content {
  position: relative !important;
  z-index: 2 !important;
}

body.cug-ui-home .cug-page-hero::after,
body.cug-ui-home .cug-home-hero::after {
  z-index: -1 !important;
}

@media screen and (max-width: 992px) {

  body.cug-ui-home .cms-page.cug-ui-home-main>section:first-of-type,
  body.cug-ui-home .cms-page.cug-ui-home-main>main:first-of-type>section:first-of-type,
  body.cug-ui-home .cug-page-hero.cug-origin-hero,
  body.cug-ui-home .cug-home-hero {
    min-height: 720px !important;
  }

  body.cug-ui-home .cug-index-video-bg,
  body.cug-ui-home .cug-index-video-bg__media {
    min-height: 720px !important;
  }
}

/* POSCO hamburger main menu alignment */
@media screen and (min-width: 993px) {
  .posco-gnb-content {
    align-items: flex-start !important;
  }

  .posco-gnb-nav {
    width: min(1320px, calc(100vw - 240px)) !important;
    max-width: 1320px !important;
  }

  .posco-gnb-nav .posco-gnb-list,
  .posco-gnb-list {
    width: 100% !important;
    height: auto !important;
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    column-gap: clamp(32px, 4.2vw, 72px) !important;
    align-items: start !important;
    justify-content: center !important;
    margin: 4vh auto 0 !important;
    padding: 0 !important;
  }

  .posco-gnb-item,
  .posco-gnb-item:nth-child(5) {
    width: auto !important;
    min-width: 0 !important;
    margin: 40px 0 0 !important;
    padding: 0 !important;
  }

  .posco-gnb-item>.nav-link {
    min-width: 0 !important;
    width: 100% !important;
    white-space: nowrap !important;
    text-align: left !important;
  }

  .posco-gnb-item>.dropdown-menu {
    width: 100% !important;
  }

  .posco-gnb-item .dropdown-list {
    width: 100% !important;
    height: auto !important;
    min-height: 31vh !important;
    flex-wrap: nowrap !important;
  }
}

@media screen and (min-width: 993px) and (max-width: 1280px) {
  .posco-gnb-nav {
    width: min(1080px, calc(100vw - 96px)) !important;
  }

  .posco-gnb-nav .posco-gnb-list,
  .posco-gnb-list {
    column-gap: 28px !important;
  }

  .posco-gnb-item>.nav-link {
    font-size: 26px !important;
  }
}

/* CHANGeUP brand colors */
:root {
  --changeup-light-blue: #00aeef;
  --changeup-gray: #5a5a5a;
}

body {
  color: var(--changeup-gray);
}

body:not(.cug-ui-home),
body:not(.cug-ui-home) .cms-page,
body:not(.cug-ui-home) .cug-ui-main,
body:not(.cug-ui-home) main,
body:not(.cug-ui-home) p,
body:not(.cug-ui-home) li,
body:not(.cug-ui-home) h1,
body:not(.cug-ui-home) h2,
body:not(.cug-ui-home) h3,
body:not(.cug-ui-home) h4,
body:not(.cug-ui-home) h5,
body:not(.cug-ui-home) h6,
body:not(.cug-ui-home) td,
body:not(.cug-ui-home) th,
body:not(.cug-ui-home) input,
body:not(.cug-ui-home) textarea,
body:not(.cug-ui-home) select {
  color: var(--changeup-gray);
}

body:not(.cug-ui-home) a {
  color: inherit;
}

body:not(.cug-ui-home) .page-hero h1,
body:not(.cug-ui-home) .page-hero h2,
body:not(.cug-ui-home) .page-hero p,
body:not(.cug-ui-home) .cug-ui-hero h1,
body:not(.cug-ui-home) .cug-ui-hero p,
body:not(.cug-ui-home) .cug-page-hero h1,
body:not(.cug-ui-home) .cug-page-hero p,
body:not(.cug-ui-home) .posco-gnb-overlay h1,
body:not(.cug-ui-home) .posco-gnb-overlay h2,
body:not(.cug-ui-home) .posco-gnb-overlay h3,
body:not(.cug-ui-home) .posco-gnb-overlay p,
body:not(.cug-ui-home) .posco-gnb-overlay a {
  color: inherit;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open {
  border-color: var(--changeup-light-blue) !important;
  color: var(--changeup-light-blue) !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open:hover,
body:not(.cug-ui-home) .header.posco-header .posco-menu-open:focus-visible,
body.posco-gnb-open:not(.cug-ui-home) .header.posco-header .posco-menu-open {
  border-color: var(--changeup-light-blue) !important;
  background: rgba(0, 174, 239, .08) !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line,
body:not(.cug-ui-home).has-fixed-header .header.posco-header .posco-menu-open .header-burger-line,
body:not(.cug-ui-home) .header.posco-header.fixed .posco-menu-open .header-burger-line {
  background: var(--changeup-light-blue) !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-header__lang,
body:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body:not(.cug-ui-home) .header.posco-header .posco-header__lang a,
body:not(.cug-ui-home).has-fixed-header .header.posco-header .posco-header__lang li,
body:not(.cug-ui-home).has-fixed-header .header.posco-header .posco-header__lang a,
body:not(.cug-ui-home) .header.posco-header.fixed .posco-header__lang li,
body:not(.cug-ui-home) .header.posco-header.fixed .posco-header__lang a {
  color: var(--changeup-gray) !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-header__lang li.active,
body:not(.cug-ui-home) .header.posco-header .posco-header__lang a:hover,
body:not(.cug-ui-home) .header.posco-header .posco-header__lang a:focus-visible {
  color: var(--changeup-light-blue) !important;
}

body:not(.cug-ui-home) .cug-ui-eyebrow,
body:not(.cug-ui-home) .cug-page-hero .cug-eyebrow,
body:not(.cug-ui-home) .cug-ui-heading>p,
body:not(.cug-ui-home) .cug-section-head>p,
body:not(.cug-ui-home) .cug-ui-card__kicker,
body:not(.cug-ui-home) .article-category,
body:not(.cug-ui-home) .pagination .current,
body:not(.cug-ui-home) .sub-breadcrumb__link:hover,
body:not(.cug-ui-home) .sub-breadcrumb__link:focus-visible {
  color: var(--changeup-light-blue) !important;
}

body:not(.cug-ui-home) .cug-ui-btn,
body:not(.cug-ui-home) .btn-primary,
body:not(.cug-ui-home) .pagination .current,
body:not(.cug-ui-home) .page-hero .ph-title-line,
body:not(.cug-ui-home) .posco-gnb-item.active>.nav-link::before {
  background: var(--changeup-light-blue) !important;
  border-color: var(--changeup-light-blue) !important;
}

body:not(.cug-ui-home) .cug-ui-btn,
body:not(.cug-ui-home) .btn-primary,
body:not(.cug-ui-home) .pagination .current {
  color: #fff !important;
}

body:not(.cug-ui-home) .cug-ui-card:hover,
body:not(.cug-ui-home) .notice-list,
body:not(.cug-ui-home) .notice-article,
body:not(.cug-ui-home) .board-wrap {
  border-color: rgba(0, 174, 239, .28) !important;
}

.posco-gnb-overlay .posco-menu-close {
  border-color: var(--changeup-light-blue) !important;
}

.posco-gnb-overlay .posco-menu-close::before,
.posco-gnb-overlay .posco-menu-close::after {
  background: var(--changeup-light-blue) !important;
}

.posco-gnb-overlay .posco-gnb-lang,
.posco-gnb-overlay .posco-gnb-lang li,
.posco-gnb-overlay .posco-gnb-lang a {
  color: #fff !important;
}

.posco-gnb-overlay .posco-gnb-lang li:not(.active) {
  opacity: .72 !important;
}

.posco-gnb-overlay .posco-gnb-lang li.active a,
.posco-gnb-overlay .posco-gnb-lang a:hover,
.posco-gnb-overlay .posco-gnb-lang a:focus-visible {
  color: #fff !important;
  opacity: 1 !important;
}

@media screen and (max-width: 992px) {
  .posco-gnb-item.active {
    background: var(--changeup-light-blue) !important;
  }

  .posco-gnb-item.active>.nav-link::before {
    background: #fff !important;
  }
}

/* Sub-page white logo override */
body:not(.cug-ui-home) .header.posco-header .logo-white {
  display: inline-block !important;
  width: 126px !important;
  max-width: 126px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

body:not(.cug-ui-home) .header.posco-header .logo-color {
  display: none !important;
}

@media screen and (max-width: 992px) {
  body:not(.cug-ui-home) .header.posco-header .logo-white {
    width: 18.53333333vw !important;
    max-width: 139px !important;
    height: 4.8vw !important;
    max-height: 36px !important;
    min-width: 96px !important;
    min-height: 25px !important;
  }
}

/* Imported board pages */
.cug-imported-board .board-header,
.cug-imported-board-view .board-header {
  padding-top: 54px;
}

.cug-imported-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 24px 0 36px;
}

.cug-imported-card {
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.cug-imported-card__thumb {
  display: block;
  aspect-ratio: 16 / 10;
  background: #f3f4f6;
  overflow: hidden;
}

.cug-imported-card__thumb img,
.cug-imported-card__thumb span {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cug-imported-card__body {
  padding: 20px;
}

.cug-imported-card__meta {
  margin: 0 0 8px;
  color: var(--changeup-light-blue, #00aeef) !important;
  font-size: 13px;
  font-weight: 700;
}

.cug-imported-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.cug-imported-card h2 a {
  color: #222;
  text-decoration: none;
}

.cug-imported-card__body>p:not(.cug-imported-card__meta) {
  margin: 0 0 16px;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.65;
}

.cug-imported-card time {
  color: #777;
  font-size: 13px;
}

.cug-imported-board-view .article-content img {
  max-width: 100%;
  height: auto;
}

.cug-imported-board-view .article-content iframe {
  max-width: 100%;
}

.board-empty {
  padding: 40px 0;
  text-align: center;
  color: #777;
}

@media screen and (max-width: 992px) {
  .cug-imported-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media screen and (max-width: 640px) {
  .cug-imported-card-grid {
    grid-template-columns: 1fr;
  }
}

/* CHANGeUP footer redesign */
.footer.changeup-footer {
  margin-top: 0 !important;
  padding: 0 !important;
  background: #f7f9fb !important;
  background-image: none !important;
  border-top: 1px solid #e5e7eb !important;
  color: var(--changeup-gray, #5a5a5a) !important;
}

.changeup-footer__inner {
  width: min(1480px, calc(100% - 80px));
  margin: 0 auto;
  padding: 54px 0 38px;
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(360px, 1fr) minmax(260px, auto);
  align-items: start;
  gap: 48px;
}

.changeup-footer__brand,
.changeup-footer__info,
.changeup-footer__nav {
  min-width: 0;
}

.changeup-footer__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.changeup-footer__logo img {
  display: block;
  width: 250px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.changeup-footer__tagline {
  margin: 18px 0 0;
  color: var(--changeup-light-blue, #00aeef) !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.changeup-footer__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 0;
  color: var(--changeup-gray, #5a5a5a) !important;
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
}

.changeup-footer__info span {
  color: inherit !important;
}

.changeup-footer__nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.footer.changeup-footer a,
.changeup-footer__nav a {
  color: var(--changeup-gray, #5a5a5a) !important;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.footer.changeup-footer a:hover,
.footer.changeup-footer a:focus-visible,
.changeup-footer__nav a:hover,
.changeup-footer__nav a:focus-visible {
  color: var(--changeup-light-blue, #00aeef) !important;
}

.changeup-footer__bottom {
  border-top: 1px solid #e5e7eb;
}

.changeup-footer__bottom p {
  width: min(1480px, calc(100% - 80px));
  margin: 0 auto;
  padding: 20px 0 26px;
  color: #777 !important;
  font-size: 13px;
  line-height: 1.5;
}

@media screen and (max-width: 1180px) {
  .changeup-footer__inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .changeup-footer__nav {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 640px) {

  .changeup-footer__inner,
  .changeup-footer__bottom p {
    width: calc(100% - 40px);
  }

  .changeup-footer__inner {
    padding: 40px 0 28px;
  }

  .changeup-footer__logo img {
    width: 250px;
    max-width: min(250px, 100%);
  }

  .changeup-footer__info,
  .changeup-footer__nav {
    display: block;
  }

  .changeup-footer__info span,
  .changeup-footer__nav a {
    display: block;
    margin-top: 8px;
  }
}

/* Sub-page overlay top controls */
body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang,
body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang li,
body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang a {
  color: #fff !important;
}

body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang li:not(.active) {
  opacity: .72 !important;
}

body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang a:hover,
body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-gnb-lang a:focus-visible {
  color: #fff !important;
  opacity: 1 !important;
}

body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-menu-close {
  border-color: #fff !important;
  color: #fff !important;
}

body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-menu-close::before,
body:not(.cug-ui-home).posco-gnb-open .posco-gnb-overlay .posco-menu-close::after {
  background: #fff !important;
}

/* CHANGeUP fixed header background */
:root {
  --changeup-dark-blue: #0e2842;
}

body.has-fixed-header .header.posco-header,
.header.posco-header.fixed {
  background: var(--changeup-dark-blue) !important;
  border-bottom-color: rgba(255, 255, 255, .14) !important;
  box-shadow: 0 8px 24px rgba(14, 40, 66, .18) !important;
}

body.has-fixed-header .header.posco-header .logo-white,
.header.posco-header.fixed .logo-white {
  display: inline-block !important;
}

body.has-fixed-header .header.posco-header .logo-color,
.header.posco-header.fixed .logo-color {
  display: none !important;
}

body.has-fixed-header .header.posco-header .posco-menu-open,
.header.posco-header.fixed .posco-menu-open {
  border-color: rgba(255, 255, 255, .85) !important;
  background: transparent !important;
}

body.has-fixed-header .header.posco-header .posco-menu-open .header-burger-line,
.header.posco-header.fixed .posco-menu-open .header-burger-line {
  background: #fff !important;
}

body.has-fixed-header .header.posco-header .posco-header__lang,
body.has-fixed-header .header.posco-header .posco-header__lang li,
body.has-fixed-header .header.posco-header .posco-header__lang a,
.header.posco-header.fixed .posco-header__lang,
.header.posco-header.fixed .posco-header__lang li,
.header.posco-header.fixed .posco-header__lang a {
  color: #fff !important;
}

/* POSCO-style subpage header/layout */
body.cug-ui-page .header.posco-header {
  position: fixed;
  height: 90px !important;
  background: #fff !important;
  border-bottom: 1px solid #dedede !important;
  box-shadow: none !important;
}

body.cug-ui-page .header.posco-header .posco-header__inner {
  height: 90px !important;
}

body.cug-ui-page .header.posco-header .logo-white {
  display: none !important;
}

body.cug-ui-page .header.posco-header .logo-color {
  display: inline-block !important;
}

body.cug-ui-page .header.posco-header .posco-menu-open {
  width: 58px;
  height: 58px;
  border-color: #b6b6b6 !important;
  background: transparent !important;
}

body.cug-ui-page .header.posco-header .posco-menu-open .header-burger-line {
  background: #222 !important;
}

body.cug-ui-page .header.posco-header .posco-header__lang,
body.cug-ui-page .header.posco-header .posco-header__lang li,
body.cug-ui-page .header.posco-header .posco-header__lang a {
  color: #222 !important;
}

body.cug-ui-page.posco-gnb-open .header.posco-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
}

body.cug-ui-page.posco-gnb-open .header.posco-header .posco-menu-open .header-burger-line {
  background: #fff !important;
}

body.cug-ui-page.posco-gnb-open .header.posco-header .posco-header__lang,
body.cug-ui-page.posco-gnb-open .header.posco-header .posco-header__lang li,
body.cug-ui-page.posco-gnb-open .header.posco-header .posco-header__lang a {
  color: #fff !important;
}

/* POSCO-style Library 2depth menu */
.cug-imported-board[data-board-category="library"] .board-header {
  padding-bottom: 0;
}

.cug-imported-board[data-board-category="library"] .board-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 100px;
  margin: 42px calc(50% - 50vw) 0;
  padding: 0 40px;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  background: #fff;
  overflow-x: auto;
}

.cug-imported-board[data-board-category="library"] .board-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0 5px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.cug-imported-board[data-board-category="library"] .board-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #222;
  transition: left .2s ease, width .2s ease;
}

.cug-imported-board[data-board-category="library"] .board-tab:hover::after,
.cug-imported-board[data-board-category="library"] .board-tab:focus-visible::after,
.cug-imported-board[data-board-category="library"] .board-tab.is-active::after {
  left: 0;
  width: 100%;
}

.cug-imported-board[data-board-category="library"] .board-tab:hover,
.cug-imported-board[data-board-category="library"] .board-tab:focus-visible,
.cug-imported-board[data-board-category="library"] .board-tab.is-active {
  color: #222;
}

@media (max-width: 900px) {
  .cug-imported-board[data-board-category="library"] .board-tabs {
    justify-content: flex-start;
    gap: 22px;
    min-height: 76px;
    margin-top: 30px;
    padding: 0 16px;
  }

  .cug-imported-board[data-board-category="library"] .board-tab {
    min-height: 76px;
    font-size: 16px;
  }
}

/* Library: boards-header sticks instead of global header */
body.cug-imported-board-library .header.posco-header {
  position: absolute !important;
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

body.cug-imported-board-library.has-fixed-header {
  padding-top: 0 !important;
}

body.cug-imported-board-library.has-fixed-header .header.posco-header,
body.cug-imported-board-library .header.posco-header.fixed {
  position: absolute !important;
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
}

body.cug-imported-board-library .cug-imported-board #boards-header {
  position: sticky;
  top: 0;
  z-index: 950;
  background: #fff;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

body.cug-imported-board-library .cug-imported-board #boards-header .container {
  transition: padding .18s ease;
}

body.cug-imported-board-library .cug-imported-board #boards-header .board-title {
  transition: font-size .18s ease, margin .18s ease;
}

@media (max-width: 900px) {
  body.cug-imported-board-library .cug-imported-board #boards-header {
    top: 0;
  }
}

/* Library order: header -> board-tabs -> board-title */
body.cug-imported-board-library .cug-imported-board[data-board-category="library"] {
  padding-top: 90px;
}

body.cug-imported-board-library .cug-imported-board[data-board-category="library"] .board-tabs {
  margin-top: 0;
}

body.cug-imported-board-library .cug-imported-board #boards-header.board-title-region {
  position: sticky;
  top: 0;
  z-index: 960;
  padding: 0;
  background: #fff;
  border-top: 0;
  border-bottom: 1px solid #dcdcdc;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

body.cug-imported-board-library .cug-imported-board #boards-header.board-title-region .container {
  padding-top: 24px;
  padding-bottom: 24px;
}

body.cug-imported-board-library .cug-imported-board #boards-header.board-title-region .board-title {
  margin: 0;
}

body.cug-imported-board-library .cug-imported-board #boards-header.board-title-region .board-subtitle {
  margin: 6px 0 0;
}

@media (max-width: 900px) {
  body.cug-imported-board-library .cug-imported-board[data-board-category="library"] {
    padding-top: 90px;
  }

  body.cug-imported-board-library .cug-imported-board #boards-header.board-title-region .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

/* Library: board-tabs fixed after 100px scroll */
body.cug-imported-board-library.library-board-tabs-fixed .cug-imported-board[data-board-category="library"] .board-tabs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 980;
  width: 100%;
  margin: 0 !important;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

body.cug-imported-board-library .cug-imported-board[data-board-category="library"] .board-tabs-placeholder {
  height: 0;
}

body.cug-imported-board-library.library-board-tabs-fixed .cug-imported-board #boards-header.board-title-region {
  top: 100px;
}

@media (max-width: 900px) {
  body.cug-imported-board-library.library-board-tabs-fixed .cug-imported-board #boards-header.board-title-region {
    top: 76px;
  }
}

/* Company / Partner DB directory pages */
.cug-directory-section {
  background: #fff;
}

.cug-directory-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
}

.cug-directory-filter a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid #d9dee6;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.cug-directory-filter a:hover,
.cug-directory-filter a:focus-visible {
  border-color: var(--changeup-light-blue, #00aeef);
  color: var(--changeup-light-blue, #00aeef);
}

.cug-directory-filter em {
  font-style: normal;
  color: #8a94a6;
  font-size: 13px;
}

.cug-directory-group {
  scroll-margin-top: 210px;
  margin-top: 46px;
}

.cug-directory-group:first-of-type {
  margin-top: 0;
}

.cug-directory-group__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e7eb;
}

.cug-directory-group__head h3 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.cug-directory-group__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef7fb;
  color: var(--changeup-light-blue, #00aeef);
  font-size: 13px;
  font-weight: 800;
}

.cug-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.cug-directory-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.cug-directory-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 142px;
  padding: 22px;
  background: #f8fafc;
  border-bottom: 1px solid #edf0f4;
}

.cug-directory-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cug-directory-card__logo span {
  color: #94a3b8;
  font-size: 38px;
  font-weight: 800;
}

.cug-directory-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 18px;
}

.cug-directory-card__category {
  margin: 0;
  color: var(--changeup-light-blue, #00aeef) !important;
  font-size: 13px;
  font-weight: 800;
}

.cug-directory-card h4 {
  margin: 0;
  color: #111827;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.cug-directory-card__summary {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.6;
}

.cug-directory-card__meta {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  color: #4b5563;
  font-size: 13px;
}

.cug-directory-card__meta div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 8px;
}

.cug-directory-card__meta dt,
.cug-directory-card__meta dd {
  margin: 0;
}

.cug-directory-card__meta dt {
  color: #8a94a6;
  font-weight: 700;
}

.cug-directory-card__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cug-directory-card__link:hover,
.cug-directory-card__link:focus-visible {
  color: var(--changeup-light-blue, #00aeef);
}

@media (max-width: 1180px) {
  .cug-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .cug-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .cug-directory-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cug-directory-grid {
    grid-template-columns: 1fr;
  }
}

/* Header quick reservation icons */
.posco-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.posco-header__quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.posco-header__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.posco-header__quick-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.posco-header__quick-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.posco-header__quick-link:hover,
.posco-header__quick-link:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--changeup-dark-blue, #0e2842);
}

body:not(.cug-ui-home) .header.posco-header .posco-header__quick-link,
body.cug-ui-page .header.posco-header .posco-header__quick-link {
  border-color: rgba(34, 34, 34, .28);
  color: #222;
}

body:not(.cug-ui-home) .header.posco-header .posco-header__quick-link:hover,
body:not(.cug-ui-home) .header.posco-header .posco-header__quick-link:focus-visible,
body.cug-ui-page .header.posco-header .posco-header__quick-link:hover,
body.cug-ui-page .header.posco-header .posco-header__quick-link:focus-visible {
  background: var(--changeup-dark-blue, #0e2842);
  border-color: var(--changeup-dark-blue, #0e2842);
  color: #fff;
}

body.posco-gnb-open .header.posco-header .posco-header__quick-link,
body.has-fixed-header .header.posco-header .posco-header__quick-link,
.header.posco-header.fixed .posco-header__quick-link {
  border-color: rgba(255, 255, 255, .42) !important;
  color: #fff !important;
}

body.posco-gnb-open .header.posco-header .posco-header__quick-link:hover,
body.posco-gnb-open .header.posco-header .posco-header__quick-link:focus-visible,
body.has-fixed-header .header.posco-header .posco-header__quick-link:hover,
body.has-fixed-header .header.posco-header .posco-header__quick-link:focus-visible,
.header.posco-header.fixed .posco-header__quick-link:hover,
.header.posco-header.fixed .posco-header__quick-link:focus-visible {
  background: #fff !important;
  border-color: #fff !important;
  color: var(--changeup-dark-blue, #0e2842) !important;
}

@media (max-width: 1180px) {
  .posco-header__quick-text {
    display: none;
  }

  .posco-header__quick-link {
    width: 42px;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .posco-header__right {
    gap: 10px;
  }

  .posco-header__quick {
    gap: 6px;
  }

  .posco-header__quick-link {
    width: 38px;
    min-height: 38px;
  }

  .posco-header__quick-icon,
  .posco-header__quick-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Rental calendar page */
.cug-rental-section {
  background: #f6f8f7;
}

.cug-rental-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.cug-rental-guide,
.cug-rental-calendar-card {
  background: #fff;
  border: 1px solid rgba(11, 66, 26, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.cug-rental-guide {
  padding: 26px;
  position: sticky;
  top: 116px;
}

.cug-rental-guide__head p {
  margin: 0 0 8px;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cug-rental-guide__head h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
  color: #172018;
}

.cug-rental-notice {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.cug-rental-notice li {
  position: relative;
  padding-left: 16px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.cug-rental-notice li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c58d3b;
}

.cug-rental-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px;
  background: #f0f6f2;
  border: 1px solid rgba(11, 66, 26, 0.18);
  border-radius: 8px;
  color: #1f2a21;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
}

.cug-rental-agree input,
.cug-rental-privacy input,
.cug-rental-fixtures input {
  accent-color: var(--color-main);
}

.cug-rental-spaces {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.cug-rental-spaces article {
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.cug-rental-spaces strong,
.cug-rental-spaces span,
.cug-rental-spaces p {
  display: block;
}

.cug-rental-spaces strong {
  color: #111827;
  font-size: 17px;
}

.cug-rental-spaces span {
  margin-top: 4px;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 800;
}

.cug-rental-spaces p {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
}

.cug-rental-calendar-card {
  padding: 26px;
  min-width: 0;
}

.cug-rental-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.cug-rental-calendar-head strong {
  color: #111827;
  font-size: 26px;
}

.cug-rental-nav {
  width: 42px;
  height: 42px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.cug-rental-week,
.cug-rental-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.cug-rental-week span {
  padding: 10px 0;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.cug-rental-day,
.cug-rental-days > span {
  min-height: 96px;
}

.cug-rental-day {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe3de;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cug-rental-day strong {
  font-size: 18px;
}

.cug-rental-day em,
.cug-rental-day small {
  margin-top: auto;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.cug-rental-day.is-open:hover,
.cug-rental-day.is-wait:hover {
  transform: translateY(-2px);
  border-color: var(--color-main);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.cug-rental-day.is-open em,
.cug-rental-legend .is-open {
  background: #e8f5ed;
  color: #0b421a;
}

.cug-rental-day.is-wait {
  background: #fffaf0;
  border-color: #efd59e;
}

.cug-rental-day.is-wait em,
.cug-rental-legend .is-wait {
  background: #f7e7c3;
  color: #7a4d08;
}

.cug-rental-day.is-closed {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.cug-rental-day.is-closed small,
.cug-rental-legend .is-closed {
  background: #e5e7eb;
  color: #6b7280;
}

.cug-rental-day.is-locked {
  opacity: 0.62;
}

.cug-rental-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cug-rental-legend span {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.cug-rental-schedule {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid #e5e7eb;
}

.cug-rental-schedule h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 20px;
}

.cug-rental-schedule div {
  display: grid;
  gap: 8px;
}

.cug-rental-schedule article {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font-size: 14px;
}

.cug-rental-schedule article span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cug-rental-schedule article em {
  color: var(--color-main);
  font-style: normal;
  font-weight: 800;
}

.cug-rental-modal[hidden] {
  display: none;
}

.cug-rental-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(15, 23, 42, 0.54);
}

.cug-rental-modal__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1301;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.32);
}

.cug-rental-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #111827;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.cug-rental-modal__head p {
  margin: 0 0 6px;
  color: var(--color-main);
  font-weight: 800;
}

.cug-rental-modal__head h2 {
  margin: 0 0 22px;
  color: #111827;
  font-size: 28px;
}

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

.cug-rental-form label,
.cug-rental-fixtures legend {
  color: #374151;
  font-size: 14px;
  font-weight: 800;
}

.cug-rental-form input,
.cug-rental-form select,
.cug-rental-form textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111827;
  font-size: 15px;
}

.cug-rental-form textarea {
  resize: vertical;
}

.cug-rental-form .is-wide,
.cug-rental-fixtures,
.cug-rental-privacy {
  grid-column: 1 / -1;
}

.cug-rental-fixtures {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.cug-rental-fixtures > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cug-rental-fixtures label,
.cug-rental-privacy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cug-rental-fixtures label {
  padding: 8px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #f8fafc;
}

.cug-rental-privacy {
  margin-top: 16px;
}

.cug-rental-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.cug-rental-form__actions button {
  min-width: 140px;
  padding: 13px 18px;
  border: 0;
  border-radius: 6px;
  background: var(--color-main);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.cug-rental-form__actions button:disabled {
  opacity: 0.65;
  cursor: wait;
}

.cug-rental-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b42318;
  font-weight: 700;
}

body.cug-rental-modal-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cug-rental-layout {
    grid-template-columns: 1fr;
  }

  .cug-rental-guide {
    position: static;
  }
}

@media (max-width: 640px) {
  .cug-rental-calendar-card,
  .cug-rental-guide,
  .cug-rental-modal__panel {
    padding: 18px;
  }

  .cug-rental-week,
  .cug-rental-days {
    gap: 4px;
  }

  .cug-rental-day,
  .cug-rental-days > span {
    min-height: 68px;
  }

  .cug-rental-day {
    padding: 8px;
  }

  .cug-rental-day strong {
    font-size: 15px;
  }

  .cug-rental-day em,
  .cug-rental-day small {
    padding: 2px 5px;
    font-size: 10px;
  }

  .cug-rental-schedule article,
  .cug-rental-form__grid {
    grid-template-columns: 1fr;
  }

  .cug-rental-schedule article span {
    white-space: normal;
  }
}

.cug-rental-spaces em {
  display: block;
  margin-top: 10px;
  color: #9a5b00;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.cug-rental-price-section,
.cug-studio-info-section {
  background: #fff;
}

.cug-rental-price,
.cug-studio-info {
  display: grid;
  gap: 18px;
}

.cug-rental-price__head p,
.cug-studio-info__head p {
  margin: 0 0 8px;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cug-rental-price__head h3,
.cug-studio-info__head h2 {
  margin: 0;
  color: #111827;
  font-size: 28px;
  line-height: 1.25;
}

.cug-rental-price__head span,
.cug-studio-info__head span {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-size: 14px;
}

.cug-rental-price__table,
.cug-studio-info__table {
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.cug-rental-price__table table,
.cug-studio-info__table table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: #334155;
  font-size: 14px;
}

.cug-rental-price__table th,
.cug-rental-price__table td,
.cug-studio-info__table th,
.cug-studio-info__table td {
  padding: 13px 14px;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  vertical-align: middle;
}

.cug-rental-price__table thead th,
.cug-studio-info__table thead th {
  background: #f8fafc;
  color: #111827;
  font-weight: 800;
}

.cug-rental-price__table tbody th,
.cug-studio-info__table tbody th {
  color: #111827;
  font-weight: 800;
  text-align: left;
}

.cug-rental-price__table tr:last-child th,
.cug-rental-price__table tr:last-child td,
.cug-studio-info__table tr:last-child th,
.cug-studio-info__table tr:last-child td {
  border-bottom: 0;
}

.cug-rental-price__note,
.cug-studio-info__note {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.65;
}

.cug-rental-estimate {
  grid-column: 1 / -1;
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(11, 66, 26, 0.18);
  border-radius: 8px;
  background: #f0f6f2;
  color: #172018;
  font-size: 15px;
  font-weight: 800;
}

.cug-studio-equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.cug-studio-equipment-card {
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.cug-studio-equipment-card strong,
.cug-studio-equipment-card span,
.cug-studio-equipment-card em {
  display: block;
}

.cug-studio-equipment-card strong {
  color: #111827;
  font-size: 16px;
}

.cug-studio-equipment-card span {
  margin-top: 6px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.cug-studio-equipment-card em {
  margin-top: 10px;
  color: var(--color-main);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

/* Rental check page */
.cug-rental-check-section {
  background: #f6f8f7;
}

.cug-rental-check-head {
  margin-bottom: 24px;
}

.cug-rental-check-head p {
  margin: 0 0 8px;
  color: var(--color-main);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cug-rental-check-head h2 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 32px;
}

.cug-rental-check-head span {
  color: #64748b;
}

.cug-rental-check-login,
.cug-rental-check-detail,
.cug-rental-check-list,
.cug-rental-check-toolbar {
  background: #fff;
  border: 1px solid rgba(11, 66, 26, 0.12);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.cug-rental-check-login {
  max-width: 560px;
  padding: 28px;
}

.cug-rental-check-login form {
  display: grid;
  gap: 16px;
}

.cug-rental-check-login label {
  color: #374151;
  font-size: 14px;
  font-weight: 800;
}

.cug-rental-check-login input {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #111827;
}

.cug-rental-check-login button,
.cug-rental-check-toolbar a,
.cug-rental-check-file {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: var(--color-main);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.cug-rental-check-message {
  margin: 0;
  color: #b42318;
  font-weight: 700;
}

.cug-rental-check-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 16px 18px;
}

.cug-rental-check-toolbar strong {
  color: #111827;
  font-size: 18px;
}

.cug-rental-check-toolbar a {
  min-height: 36px;
  background: #334155;
  font-size: 14px;
}

.cug-rental-check-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.cug-rental-check-list {
  overflow: hidden;
}

.cug-rental-check-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
  text-decoration: none;
}

.cug-rental-check-item:last-child {
  border-bottom: 0;
}

.cug-rental-check-item.is-active {
  background: #f0f6f2;
}

.cug-rental-check-item span {
  width: fit-content;
  padding: 3px 8px;
  border-radius: 999px;
  background: #e8f5ed;
  color: var(--color-main);
  font-size: 12px;
  font-weight: 800;
}

.cug-rental-check-item strong {
  color: #111827;
  font-size: 17px;
}

.cug-rental-check-item em {
  color: #64748b;
  font-size: 14px;
  font-style: normal;
}

.cug-rental-check-detail {
  padding: 24px;
}

.cug-rental-check-detail h3 {
  margin: 0 0 18px;
  color: #111827;
  font-size: 24px;
}

.cug-rental-check-detail dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.cug-rental-check-detail dl div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid #e5e7eb;
}

.cug-rental-check-detail dt {
  color: #64748b;
  font-weight: 800;
}

.cug-rental-check-detail dd {
  margin: 0;
  color: #111827;
  line-height: 1.6;
}

.cug-rental-check-file {
  margin-top: 18px;
}

@media (max-width: 820px) {
  .cug-rental-check-layout {
    grid-template-columns: 1fr;
  }

  .cug-rental-check-detail dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
/* Sub-page UI system: header -> 2depth tabs -> page title -> content */
:root {
  --cug-sub-header-h: 90px;
  --cug-sub-tabs-h: 84px;
  --cug-sub-title-h: auto;
  --cug-sub-border: #dedede;
  --cug-sub-text: #222;
  --cug-sub-muted: #667085;
}

body.cug-ui-page:not(.cug-ui-home),
body.cug-imported-board-page:not(.cug-ui-home) {
  background: #fff !important;
  padding-top: 0 !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header,
body.cug-ui-page:not(.cug-ui-home).has-fixed-header .header.posco-header,
body.cug-imported-board-page:not(.cug-ui-home).has-fixed-header .header.posco-header,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header.fixed,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header.fixed {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  height: var(--cug-sub-header-h) !important;
  background: #fff !important;
  border-bottom: 1px solid var(--cug-sub-border) !important;
  box-shadow: none !important;
  transform: none !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__inner,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__inner {
  height: var(--cug-sub-header-h) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-white,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-white {
  display: none !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-color,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-color {
  display: inline-block !important;
  width: 126px !important;
  max-width: 126px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open {
  width: 58px !important;
  height: 58px !important;
  border-color: #b6b6b6 !important;
  background: transparent !important;
  color: var(--cug-sub-text) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line {
  background: var(--cug-sub-text) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang a,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang a {
  color: var(--cug-sub-text) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-link,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-link {
  border-color: #d0d5dd !important;
  background: #fff !important;
  color: var(--cug-sub-text) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-icon svg,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-icon svg {
  fill: currentColor !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header {
  background: transparent !important;
  border-bottom-color: transparent !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-white,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-white {
  display: inline-block !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-color,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-color {
  display: none !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-menu-open,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-menu-open,
body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__quick-link,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__quick-link {
  border-color: rgba(255,255,255,.82) !important;
  background: transparent !important;
  color: #fff !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .header-burger-line,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .header-burger-line {
  background: #fff !important;
}

body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang,
body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang li,
body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang a,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang li,
body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-header__lang a {
  color: #fff !important;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system {
  position: relative;
  z-index: 20;
  padding-top: var(--cug-sub-header-h) !important;
  background: #fff;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: var(--cug-sub-tabs-h);
  margin: 0 !important;
  padding: 0 40px;
  border-top: 0;
  border-bottom: 1px solid var(--cug-sub-border);
  background: #fff;
  overflow-x: auto;
  scrollbar-width: none;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs::-webkit-scrollbar,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs::-webkit-scrollbar {
  display: none;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--cug-sub-tabs-h);
  padding: 0 4px;
  color: var(--cug-sub-text) !important;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab::after,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--cug-sub-text);
  transition: left .2s ease, width .2s ease;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab:hover::after,
body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab:focus-visible::after,
body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab.is-active::after,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab:hover::after,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab:focus-visible::after,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab.is-active::after {
  left: 0;
  width: 100%;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region {
  position: sticky;
  top: 0;
  z-index: 960;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--cug-sub-border);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .container,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .container {
  width: min(1480px, calc(100% - 80px));
  margin: 0 auto;
  padding: 28px 0;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-title,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-title {
  margin: 0;
  color: #111827 !important;
  font-size: clamp(32px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-subtitle,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-subtitle {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--cug-sub-muted) !important;
  font-size: 16px;
  line-height: 1.6;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system.is-sub-tabs-fixed .board-tabs,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system.is-sub-tabs-fixed .board-tabs {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 980;
  width: 100%;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs-placeholder,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs-placeholder {
  height: 0;
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system.is-sub-tabs-fixed #boards-header.board-title-region,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system.is-sub-tabs-fixed #boards-header.board-title-region {
  top: var(--cug-sub-tabs-h);
}

body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system + .cug-ui-main,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system + .cug-ui-main,
body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system + .cug-imported-board {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media screen and (max-width: 992px) {
  :root {
    --cug-sub-header-h: 76px;
    --cug-sub-tabs-h: 68px;
  }

  body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-color,
  body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-color,
  body.cug-ui-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-white,
  body.cug-imported-board-page:not(.cug-ui-home).posco-gnb-open .header.posco-header .logo-white {
    width: 112px !important;
    max-width: 112px !important;
    height: 30px !important;
    max-height: 30px !important;
  }

  body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open,
  body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open {
    width: 48px !important;
    height: 48px !important;
  }

  body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs,
  body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tabs {
    justify-content: flex-start;
    gap: 22px;
    padding: 0 20px;
  }

  body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab,
  body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system .board-tab {
    font-size: 16px;
  }

  body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .container,
  body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .container {
    width: calc(100% - 40px);
    padding: 22px 0;
  }

  body.cug-ui-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-subtitle,
  body.cug-imported-board-page:not(.cug-ui-home) .cug-sub-menu-system #boards-header.board-title-region .board-subtitle {
    font-size: 14px;
  }
}

/* Subpage header: white logo needs a dark header background */
body.cug-ui-page:not(.cug-ui-home) .header.posco-header,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header,
body.cug-ui-page:not(.cug-ui-home).has-fixed-header .header.posco-header,
body.cug-imported-board-page:not(.cug-ui-home).has-fixed-header .header.posco-header,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header.fixed,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header.fixed {
  background: var(--changeup-dark-blue, #0e2842) !important;
  border-bottom-color: rgba(255, 255, 255, .16) !important;
  box-shadow: 0 8px 24px rgba(14, 40, 66, .16) !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-white,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-white,
body.cug-ui-page:not(.cug-ui-home).has-fixed-header .header.posco-header .logo-white,
body.cug-imported-board-page:not(.cug-ui-home).has-fixed-header .header.posco-header .logo-white,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header.fixed .logo-white,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header.fixed .logo-white {
  display: inline-block !important;
  width: 126px !important;
  max-width: 126px !important;
  height: 34px !important;
  max-height: 34px !important;
  object-fit: contain !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-color,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-color,
body.cug-ui-page:not(.cug-ui-home).has-fixed-header .header.posco-header .logo-color,
body.cug-imported-board-page:not(.cug-ui-home).has-fixed-header .header.posco-header .logo-color,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header.fixed .logo-color,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header.fixed .logo-color {
  display: none !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-link,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__quick-link {
  border-color: rgba(255, 255, 255, .82) !important;
  background: transparent !important;
  color: #fff !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .header-burger-line,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .header-burger-line {
  background: #fff !important;
}

body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-header__lang a,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang li,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-header__lang a {
  color: #fff !important;
}

@media screen and (max-width: 992px) {
  body.cug-ui-page:not(.cug-ui-home) .header.posco-header .logo-white,
  body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .logo-white {
    width: 112px !important;
    max-width: 112px !important;
    height: 30px !important;
    max-height: 30px !important;
  }
}

/* Refined rental booking interface */
.cug-rental-section {
  background:
    linear-gradient(180deg, rgba(14, 40, 66, .07), rgba(255, 255, 255, 0) 360px),
    #f4f7fb !important;
}

.cug-rental-section .cug-ui-inner {
  width: min(1480px, calc(100% - 80px));
}

.cug-rental-layout {
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr) !important;
  gap: 24px !important;
}

.cug-rental-guide,
.cug-rental-calendar-card {
  overflow: hidden;
  border: 1px solid rgba(14, 40, 66, .1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 22px 55px rgba(14, 40, 66, .1) !important;
}

.cug-rental-guide {
  padding: 0 !important;
  top: 112px !important;
}

.cug-rental-guide__head {
  padding: 28px 28px 24px;
  background: linear-gradient(135deg, #0e2842, #12526d);
  color: #fff;
}

.cug-rental-guide__head p {
  margin-bottom: 10px !important;
  color: rgba(255, 255, 255, .74) !important;
  font-size: 12px !important;
  letter-spacing: .08em;
}

.cug-rental-guide__head h2 {
  color: #fff !important;
  font-size: 30px !important;
  letter-spacing: 0;
}

.cug-rental-notice {
  margin: 0 !important;
  padding: 24px 26px 18px !important;
  gap: 12px !important;
}

.cug-rental-notice li {
  padding-left: 24px !important;
  color: #425466 !important;
  font-size: 14px !important;
}

.cug-rental-notice li::before {
  top: 8px !important;
  width: 14px !important;
  height: 14px !important;
  border: 4px solid #e7f4ff;
  background: #00aeef !important;
}

.cug-rental-agree {
  margin: 0 26px 24px;
  padding: 16px 18px !important;
  border: 1px solid rgba(0, 174, 239, .28) !important;
  border-radius: 14px !important;
  background: #f2fbff !important;
  color: #0e2842 !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.cug-rental-spaces {
  margin: 0 !important;
  padding: 0 26px 28px;
  gap: 10px !important;
}

.cug-rental-spaces article {
  border-color: #e4edf5 !important;
  border-radius: 14px !important;
  background: #fff !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.cug-rental-spaces article:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 174, 239, .32) !important;
  box-shadow: 0 14px 28px rgba(14, 40, 66, .08);
}

.cug-rental-spaces strong {
  color: #0e2842 !important;
  font-size: 16px !important;
}

.cug-rental-spaces span,
.cug-rental-spaces em {
  color: #0072bc !important;
}

.cug-rental-calendar-card {
  padding: 28px !important;
}

.cug-rental-calendar-head {
  margin-bottom: 22px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5edf5;
}

.cug-rental-calendar-head strong {
  color: #0e2842 !important;
  font-size: clamp(24px, 2.3vw, 34px) !important;
  font-weight: 900;
}

.cug-rental-nav {
  width: 46px !important;
  height: 46px !important;
  border-color: #dce7f1 !important;
  border-radius: 14px !important;
  background: #f8fbfe !important;
  color: #0e2842 !important;
  font-size: 26px !important;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.cug-rental-nav:hover,
.cug-rental-nav:focus-visible {
  transform: translateY(-1px);
  background: #0e2842 !important;
  color: #fff !important;
}

.cug-rental-week,
.cug-rental-days {
  gap: 10px !important;
}

.cug-rental-week span {
  color: #728399 !important;
  font-size: 12px !important;
  letter-spacing: .04em;
}

.cug-rental-day,
.cug-rental-days > span {
  min-height: 108px !important;
}

.cug-rental-day {
  padding: 14px !important;
  border-color: #dce7f1 !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: 0 1px 0 rgba(14, 40, 66, .04);
}

.cug-rental-day strong {
  color: #0e2842;
  font-size: 20px !important;
  font-weight: 900;
}

.cug-rental-day em,
.cug-rental-day small,
.cug-rental-legend span {
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

.cug-rental-day.is-open {
  border-color: rgba(0, 174, 239, .28) !important;
}

.cug-rental-day.is-open:hover,
.cug-rental-day.is-wait:hover {
  transform: translateY(-3px) !important;
  border-color: #00aeef !important;
  box-shadow: 0 16px 32px rgba(0, 114, 188, .14) !important;
}

.cug-rental-day.is-open em,
.cug-rental-legend .is-open {
  background: #e8f8ff !important;
  color: #0072bc !important;
}

.cug-rental-day.is-wait {
  border-color: #f4d48a !important;
  background: #fffaf0 !important;
}

.cug-rental-day.is-wait em,
.cug-rental-legend .is-wait {
  background: #fff0c7 !important;
  color: #8a5a00 !important;
}

.cug-rental-day.is-closed {
  border-color: #e4e8ee !important;
  background: #f3f6f9 !important;
}

.cug-rental-day.is-closed strong {
  color: #a0adba;
}

.cug-rental-legend {
  margin-top: 18px !important;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fafc;
}

.cug-rental-schedule {
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top-color: #e5edf5 !important;
}

.cug-rental-schedule h3 {
  color: #0e2842 !important;
  font-size: 18px !important;
}

.cug-rental-schedule article {
  grid-template-columns: 108px minmax(0, 1fr) auto !important;
  border: 1px solid #e5edf5;
  border-radius: 14px !important;
  background: #f9fbfd !important;
}

.cug-rental-schedule article strong {
  color: #0e2842;
}

.cug-rental-schedule article em {
  color: #0072bc !important;
}

.cug-rental-modal__overlay {
  background: rgba(5, 13, 23, .62) !important;
  backdrop-filter: blur(4px);
}

.cug-rental-modal__panel {
  width: min(900px, calc(100vw - 32px)) !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px !important;
  box-shadow: 0 32px 80px rgba(5, 13, 23, .36) !important;
}

.cug-rental-modal__head {
  padding: 30px 32px 22px;
  background: linear-gradient(135deg, #0e2842, #0072bc);
  color: #fff;
}

.cug-rental-modal__head p,
.cug-rental-modal__head h2 {
  color: #fff !important;
}

.cug-rental-modal__head p {
  opacity: .8;
}

.cug-rental-modal__head h2 {
  margin-bottom: 0 !important;
}

.cug-rental-modal__close {
  top: 18px !important;
  right: 18px !important;
  z-index: 1;
  background: rgba(255, 255, 255, .16) !important;
  color: #fff !important;
}

.cug-rental-form {
  padding: 28px 32px 32px;
}

.cug-rental-form__grid {
  gap: 16px !important;
}

.cug-rental-form label,
.cug-rental-fixtures legend {
  color: #26384a !important;
  font-size: 13px !important;
  letter-spacing: .01em;
}

.cug-rental-form input,
.cug-rental-form select,
.cug-rental-form textarea {
  min-height: 48px;
  border-color: #dce7f1 !important;
  border-radius: 12px !important;
  background: #f9fbfd !important;
}

.cug-rental-form input:focus,
.cug-rental-form select:focus,
.cug-rental-form textarea:focus {
  outline: 3px solid rgba(0, 174, 239, .18);
  border-color: #00aeef !important;
  background: #fff !important;
}

.cug-rental-estimate {
  border-color: rgba(0, 174, 239, .26) !important;
  border-radius: 14px !important;
  background: #f2fbff !important;
  color: #0e2842 !important;
}

.cug-rental-fixtures {
  border-color: #e5edf5 !important;
  border-radius: 16px !important;
  background: #fff !important;
}

.cug-rental-fixtures label {
  border-color: #dce7f1 !important;
  background: #f8fbfe !important;
  color: #26384a !important;
}

.cug-rental-privacy {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fafc;
}

.cug-rental-form__actions button {
  min-height: 50px;
  min-width: 160px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #0072bc, #00aeef) !important;
  box-shadow: 0 16px 28px rgba(0, 114, 188, .22);
}

@media (max-width: 1024px) {
  .cug-rental-layout {
    grid-template-columns: 1fr !important;
  }

  .cug-rental-guide {
    position: static !important;
  }
}

@media (max-width: 640px) {
  .cug-rental-section .cug-ui-inner {
    width: calc(100% - 28px);
  }

  .cug-rental-guide__head,
  .cug-rental-calendar-card,
  .cug-rental-form {
    padding: 20px !important;
  }

  .cug-rental-notice,
  .cug-rental-spaces {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .cug-rental-agree {
    margin-left: 20px;
    margin-right: 20px;
  }

  .cug-rental-week,
  .cug-rental-days {
    gap: 5px !important;
  }

  .cug-rental-day,
  .cug-rental-days > span {
    min-height: 74px !important;
  }

  .cug-rental-day {
    padding: 8px !important;
    border-radius: 12px !important;
  }

  .cug-rental-day strong {
    font-size: 15px !important;
  }

  .cug-rental-day em,
  .cug-rental-day small {
    padding: 2px 5px !important;
    font-size: 10px !important;
  }

  .cug-rental-schedule article,
  .cug-rental-form__grid {
    grid-template-columns: 1fr !important;
  }

  .cug-rental-modal__panel {
    width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 22px 22px 0 0 !important;
    top: auto !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
  }

  .cug-rental-modal__head {
    padding: 26px 22px 20px;
  }
}

/* Visible common footer booking link */
.changeup-footer__quick-link {
  margin: 18px 0 0;
}

.changeup-footer__quick-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(0, 174, 239, .34);
  border-radius: 999px;
  background: #fff;
  color: var(--changeup-dark-blue, #0e2842) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(14, 40, 66, .08);
}

.changeup-footer__quick-link a:hover,
.changeup-footer__quick-link a:focus-visible {
  background: var(--changeup-light-blue, #00aeef);
  color: #fff !important;
}

/* Subpage hamburger menu: white and click-only */
body:not(.cug-ui-home) .header.posco-header .posco-menu-open,
body:not(.cug-ui-home) .header.posco-header .posco-menu-open:hover,
body:not(.cug-ui-home) .header.posco-header .posco-menu-open:focus-visible,
body:not(.cug-ui-home).posco-gnb-open .header.posco-header .posco-menu-open,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open {
  border-color: rgba(255, 255, 255, .86) !important;
  background: transparent !important;
  color: #fff !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open__label,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open__label,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open__label {
  color: #fff !important;
}

body:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line,
body:not(.cug-ui-home).has-fixed-header .header.posco-header .posco-menu-open .header-burger-line,
body:not(.cug-ui-home) .header.posco-header.fixed .posco-menu-open .header-burger-line,
body.cug-ui-page:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line,
body.cug-imported-board-page:not(.cug-ui-home) .header.posco-header .posco-menu-open .header-burger-line {
  background: #fff !important;
}

/* Explore page: remove Floor Preview side box */
.cug-floor-layout--plan-only {
  grid-template-columns: 1fr !important;
}

.cug-floor-layout--plan-only .cug-floor-plan {
  width: 100%;
}

/* Imported CHANGeUP About content */
.cug-about-origin {
  background: #fff;
}

.cug-about-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 76px;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(14, 40, 66, .9), rgba(14, 40, 66, .38)), var(--about-hero);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.cug-about-kicker,
.cug-about-section-head p,
.cug-about-section-title span {
  margin: 0 0 12px;
  color: var(--changeup-light-blue, #00aeef);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cug-about-hero h2 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0;
  word-break: keep-all;
}

.cug-about-hero p:not(.cug-about-kicker) {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 19px;
  line-height: 1.7;
  word-break: keep-all;
}

.cug-about-intro-section,
.cug-about-bi-section,
.cug-about-support-section,
.cug-about-program-section {
  padding: 86px 0;
}

.cug-about-intro-section,
.cug-about-support-section {
  background: #f6f9fc;
}

.cug-about-intro-grid,
.cug-about-bi-layout {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 48px;
  align-items: start;
}

.cug-about-section-title h3,
.cug-about-section-head h3 {
  margin: 0;
  color: var(--changeup-dark-blue, #0e2842);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
}

.cug-about-section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.cug-about-section-head span,
.cug-about-copy p {
  display: block;
  margin-top: 14px;
  color: #5a6675;
  font-size: 17px;
  line-height: 1.75;
  word-break: keep-all;
}

.cug-about-copy ul,
.cug-about-program-grid ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cug-about-copy li,
.cug-about-program-grid li {
  position: relative;
  padding-left: 18px;
  color: #344253;
  line-height: 1.65;
}

.cug-about-copy li::before,
.cug-about-program-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--changeup-light-blue, #00aeef);
}

.cug-about-logo-card,
.cug-about-color-grid article,
.cug-about-support-grid article,
.cug-about-program-grid article {
  border: 1px solid #e3ebf3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(14, 40, 66, .07);
}

.cug-about-logo-card {
  padding: 32px;
}

.cug-about-logo-card img {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

.cug-about-logo-card strong,
.cug-about-logo-card span {
  display: block;
}

.cug-about-logo-card strong {
  margin-top: 28px;
  color: #0e2842;
  font-size: 20px;
}

.cug-about-logo-card span {
  margin-top: 6px;
  color: #667789;
}

.cug-about-color-grid,
.cug-about-support-grid,
.cug-about-program-grid {
  display: grid;
  gap: 16px;
}

.cug-about-color-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: center;
  padding: 20px;
}

.cug-about-color-grid i {
  grid-row: span 3;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--swatch);
}

.cug-about-color-grid strong,
.cug-about-support-grid h4,
.cug-about-program-grid h4 {
  color: #0e2842;
  font-size: 20px;
  line-height: 1.35;
}

.cug-about-color-grid span,
.cug-about-color-grid em {
  color: #667789;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.cug-about-support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cug-about-support-grid article,
.cug-about-program-grid article {
  padding: 26px;
}

.cug-about-support-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #0072bc;
  font-size: 13px;
  font-weight: 900;
}

.cug-about-support-grid h4,
.cug-about-support-grid p,
.cug-about-program-grid h4 {
  margin: 0;
}

.cug-about-support-grid p {
  margin-top: 12px;
  color: #5a6675;
  line-height: 1.65;
}

.cug-about-program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .cug-about-intro-grid,
  .cug-about-bi-layout,
  .cug-about-support-grid,
  .cug-about-program-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .cug-about-hero {
    min-height: 480px;
    padding: 130px 0 56px;
  }

  .cug-about-intro-section,
  .cug-about-bi-section,
  .cug-about-support-section,
  .cug-about-program-section {
    padding: 58px 0;
  }

  .cug-about-intro-grid,
  .cug-about-bi-layout,
  .cug-about-support-grid,
  .cug-about-program-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}


/* Imported about images */
.cug-about-bar {
  display: block;
  width: min(180px, 42vw);
  height: auto;
  margin: 0 0 28px;
}

.cug-about-inline-image {
  margin: 28px 0 0;
  padding: 28px;
  border: 1px solid #e3ebf3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(14, 40, 66, .07);
}

.cug-about-inline-image img {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

.cug-about-logo-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.cug-about-logo-pair img {
  display: block;
  width: 100%;
  height: 116px;
  object-fit: contain;
  padding: 24px;
  border: 1px solid #e3ebf3;
  border-radius: 14px;
  background: #f8fbfe;
}

.cug-about-logo-pair img:nth-child(2) {
  background: #0e2842;
}

.cug-about-support-grid article > img,
.cug-about-program-grid article > img {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 16px;
}

.cug-about-program-grid article > img {
  width: 32px;
  height: 32px;
}

@media (max-width: 700px) {
  .cug-about-logo-pair {
    grid-template-columns: 1fr;
  }

  .cug-about-inline-image,
  .cug-about-logo-card {
    padding: 22px;
  }
}

/* Rental fixture/equipment checkboxes as compact on/off toggle buttons */
.cug-rental-fixtures label {
  position: relative;
  min-height: 38px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  cursor: pointer;
}

.cug-rental-fixtures input[type="checkbox"] {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.cug-rental-fixtures label span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid #dce7f1;
  border-radius: 999px;
  background: #f8fbfe;
  color: #26384a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.cug-rental-fixtures input[type="checkbox"]:checked + span {
  border-color: #0072bc;
  background: #0072bc;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 114, 188, .2);
}

.cug-rental-fixtures input[type="checkbox"]:focus-visible + span {
  outline: 3px solid rgba(0, 174, 239, .22);
  outline-offset: 2px;
}

.cug-rental-fixtures input[type="checkbox"]:checked + span::before {
  content: "ON";
  margin-right: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  opacity: .86;
}

.cug-rental-fixtures input[type="checkbox"]:not(:checked) + span::before {
  content: "OFF";
  margin-right: 6px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  color: #64748b;
}

.cug-rental-fixtures input[type="checkbox"]:checked + span::before {
  color: rgba(255,255,255,.82);
}

.cug-rental-agree input[type="checkbox"],
.cug-rental-privacy input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px !important;
  height: 18px !important;
  min-height: 18px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
}

/* Category grouped FAQ */
.cug-faq .container {
  max-width: 1180px;
}

.cug-faq-tools {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.cug-faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cug-faq-categories a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid #dce7f1;
  border-radius: 999px;
  background: #fff;
  color: #26384a;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cug-faq-categories a em {
  min-width: 24px;
  padding: 2px 7px;
  border-radius: 999px;
  background: #f2f7fb;
  color: #64748b;
  font-style: normal;
  font-size: 12px;
  text-align: center;
}

.cug-faq-categories a.is-active {
  border-color: #0072bc;
  background: #0072bc;
  color: #fff;
}

.cug-faq-categories a.is-active em {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.cug-faq-search {
  justify-content: flex-end;
}

.cug-faq-groups {
  display: grid;
  gap: 42px;
}

.cug-faq-group__head {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 2px solid #0e2842;
}

.cug-faq-group__head p {
  margin: 0;
  color: #0072bc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.cug-faq-group__head h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.cug-faq-group__head span {
  margin-left: auto;
  color: #64748b;
  font-size: 14px;
  font-weight: 800;
}

.cug-faq-list {
  border-top: 1px solid #e5edf5;
}

.cug-faq-item {
  border-bottom: 1px solid #e5edf5;
  background: #fff;
}

.cug-faq-item summary {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  padding: 20px 4px;
  cursor: pointer;
  list-style: none;
}

.cug-faq-item summary::-webkit-details-marker {
  display: none;
}

.cug-faq-item summary > span,
.cug-faq-answer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 900;
}

.cug-faq-item summary > span {
  background: #eef7fc;
  color: #0072bc;
}

.cug-faq-item summary strong {
  color: #172033;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
}

.cug-faq-item summary::after {
  content: "+";
  grid-column: 3;
  color: #0072bc;
  font-size: 24px;
  font-weight: 700;
}

.cug-faq-item[open] summary::after {
  content: "-";
}

.cug-faq-answer {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 0 4px 22px;
  color: #334155;
  line-height: 1.8;
}

.cug-faq-answer > span {
  background: #0072bc;
  color: #fff;
}

.cug-faq-answer p {
  margin: 0 0 8px;
}

@media (max-width: 768px) {
  .cug-faq-search {
    justify-content: stretch;
  }
  .cug-faq-group__head {
    align-items: flex-start;
    flex-direction: column;
  }
  .cug-faq-group__head span {
    margin-left: 0;
  }
  .cug-faq-item summary {
    grid-template-columns: 30px 1fr 18px;
    padding: 16px 0;
  }
  .cug-faq-answer {
    grid-template-columns: 30px 1fr;
    padding-left: 0;
    padding-right: 0;
  }
}

.cug-faq-item summary {
  grid-template-columns: 34px 1fr 24px;
}

.cug-faq-item summary {
  grid-template-columns: 34px 1fr 24px;
}

/* FAQ typography weight adjustment */
.cug-faq-categories a,
.cug-faq-group__head p,
.cug-faq-group__head h2,
.cug-faq-group__head span,
.cug-faq-item summary > span,
.cug-faq-answer > span,
.cug-faq-item summary strong {
  font-weight: 600 !important;
}

.cug-faq-categories a em {
  font-weight: 500 !important;
}

.cug-faq-item summary strong {
  color: #26384a;
}

/* Reservation second-level navigation */
.cug-reservation-tabs-section {
  padding: 28px 0 0;
  background: #fff;
}

.cug-reservation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #d8e3ee;
}

.cug-reservation-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid #d8e3ee;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #f7fafc;
  color: #3b4b5c;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.cug-reservation-tabs a.is-active {
  background: #0072bc;
  border-color: #0072bc;
  color: #fff;
}

.cug-rental-guide--wide {
  width: 100%;
}

@media (max-width: 768px) {
  .cug-reservation-tabs-section {
    padding-top: 18px;
  }
  .cug-reservation-tabs {
    gap: 6px;
  }
  .cug-reservation-tabs a {
    flex: 1 1 30%;
    min-width: 0;
    min-height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }
}

/* Rental reservation check center alignment */
.cug-rental-check-section .cug-ui-inner {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.cug-rental-check-head {
  text-align: center;
}

.cug-rental-check-login {
  margin-left: auto;
  margin-right: auto;
}

.cug-rental-check-login button {
  width: 100%;
}

.cug-rental-check-toolbar,
.cug-rental-check-layout {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

/* Studio equipment cards with aligned type icons */
.cug-studio-equipment-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  align-items: start;
  min-height: 118px;
}

.cug-studio-equipment-icon {
  grid-row: 1 / 4;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #eef7fc;
  position: relative;
}

.cug-studio-equipment-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: #0072bc;
  -webkit-mask: var(--studio-equipment-icon) center / contain no-repeat;
  mask: var(--studio-equipment-icon) center / contain no-repeat;
}

.cug-studio-equipment-card strong,
.cug-studio-equipment-card span,
.cug-studio-equipment-card em {
  grid-column: 2;
  min-width: 0;
}

.cug-studio-equipment-card strong {
  line-height: 1.35;
}

.cug-studio-equipment-card span {
  overflow-wrap: anywhere;
}

.cug-studio-equipment-card--camera {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 7h3l1.4-2h7.2L17 7h3a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2Zm8 10a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm0-2.2a1.8 1.8 0 1 1 0-3.6 1.8 1.8 0 0 1 0 3.6Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--lens {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 3h8l3 5v8l-3 5H8l-3-5V8l3-5Zm4 15a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm0-3.2a2.8 2.8 0 1 1 0-5.6 2.8 2.8 0 0 1 0 5.6Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--audio {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3a3 3 0 0 1 3 3v6a3 3 0 0 1-6 0V6a3 3 0 0 1 3-3Zm5 9a5 5 0 0 1-10 0H5a7 7 0 0 0 6 6.9V22h2v-3.1a7 7 0 0 0 6-6.9h-2Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--storage {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h7l5 5v13a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 1.8V8h4.2L14 3.8ZM8 13h8v2H8v-2Zm0 4h6v2H8v-2Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--tripod {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 3h6v4H9V3Zm2 6h2v4l5 8h-2.4L12 15.2 8.4 21H6l5-8V9Zm-6 4h4v2H5v-2Zm10 0h4v2h-4v-2Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--light {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 4 12.7V17a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2.3A7 7 0 0 1 12 2Zm-2 19h4v2h-4v-2Zm0-4h4v-1.3l.9-.6A5 5 0 1 0 9.1 15l.9.6V17Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--power {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h2v6h2V2h2v6h2V2h2v7a5 5 0 0 1-4 4.9V22h-2v-8.1A5 5 0 0 1 7 9V2Z'/%3E%3C/svg%3E");
}

.cug-studio-equipment-card--gear {
  --studio-equipment-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10.7 2h2.6l.6 2.4c.5.2 1 .4 1.5.7l2.1-1.3 1.8 1.8L18 7.7c.3.5.5 1 .7 1.5l2.3.6v2.6l-2.3.6c-.2.5-.4 1-.7 1.5l1.3 2.1-1.8 1.8-2.1-1.3c-.5.3-1 .5-1.5.7l-.6 2.3h-2.6l-.6-2.3c-.5-.2-1-.4-1.5-.7l-2.1 1.3-1.8-1.8L6 14.5c-.3-.5-.5-1-.7-1.5L3 12.4V9.8l2.3-.6c.2-.5.4-1 .7-1.5L4.7 5.6l1.8-1.8 2.1 1.3c.5-.3 1-.5 1.5-.7L10.7 2Zm1.3 7a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

@media (max-width: 640px) {
  .cug-studio-equipment-grid {
    grid-template-columns: 1fr;
  }
}

/* Rental business document exemption for POSCO affiliations */
.cug-rental-form [data-rental-business-field].is-posco-exempt {
  display: none;
}

.cug-rental-posco-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(0, 114, 188, 0.18);
  border-radius: 8px;
  background: #eef7fc;
  color: #1f4f70;
  font-size: 14px;
  line-height: 1.5;
}

/* Rental form field placement */
.cug-rental-form__grid .cug-rental-field-affiliation {
  grid-column: 1;
}

.cug-rental-form__grid .cug-rental-field-applicant {
  grid-column: 2;
}

@media (max-width: 720px) {
  .cug-rental-form__grid .cug-rental-field-affiliation,
  .cug-rental-form__grid .cug-rental-field-applicant {
    grid-column: 1 / -1;
  }
}

/* Rental affiliation choice buttons */
.cug-rental-affiliation-group {
  display: grid;
  gap: 8px;
}

.cug-rental-affiliation-title {
  color: #374151;
  font-size: 14px;
  font-weight: 800;
}

.cug-rental-affiliation-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.cug-rental-affiliation-options label {
  position: relative;
  min-width: 0;
}

.cug-rental-affiliation-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cug-rental-affiliation-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 8px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #374151;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}

.cug-rental-affiliation-options input:checked + span {
  border-color: #0072bc;
  background: #eef7fc;
  color: #0072bc;
}

.cug-rental-affiliation-other[hidden] {
  display: none !important;
}

@media (max-width: 520px) {
  .cug-rental-affiliation-options {
    grid-template-columns: 1fr;
  }
}

/* Rental phone verification */
.cug-rental-phone-auth {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.cug-rental-phone-auth label,
.cug-rental-phone-auth .cug-rental-auth-check,
.cug-rental-phone-auth .cug-rental-auth-message,
.cug-rental-phone-auth input[type="hidden"] {
  grid-column: 1 / -1;
}

.cug-rental-phone-auth > button,
.cug-rental-auth-check button {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: #0072bc;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cug-rental-phone-auth > button {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.cug-rental-phone-auth label {
  grid-column: 1;
  grid-row: 1;
}

.cug-rental-auth-check {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.cug-rental-auth-check[hidden] {
  display: none !important;
}

.cug-rental-auth-message {
  min-height: 20px;
  margin: 0;
  color: #1f4f70;
  font-size: 13px;
  line-height: 1.45;
}

.cug-rental-auth-message.is-error {
  color: #b42318;
}

.cug-rental-auth-message.is-success {
  color: #0072bc;
}

@media (max-width: 720px) {
  .cug-rental-phone-auth,
  .cug-rental-auth-check {
    grid-template-columns: 1fr;
  }
  .cug-rental-phone-auth > button,
  .cug-rental-phone-auth label {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Reservation modal fixed header, scroll body only */
.cug-rental-modal__panel {
  display: flex !important;
  flex-direction: column !important;
  max-height: calc(100vh - 48px) !important;
  overflow: hidden !important;
}

.cug-rental-modal__head {
  position: sticky;
  top: 0;
  z-index: 2;
  flex: 0 0 auto;
}

.cug-rental-modal__close {
  position: absolute !important;
  z-index: 4 !important;
}

.cug-rental-modal__panel > .cug-rental-form {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

@media (max-width: 720px) {
  .cug-rental-modal__panel {
    max-height: calc(100vh - 24px) !important;
  }
}

/* Origin About page copied from changeupgroundpohang.com/about.php structure */
.cug-origin-about {
  position: relative;
  padding: 92px 0;
  background: #fff;
  color: #0e2842;
}

.cug-origin-about:nth-of-type(odd) {
  background: #f6f9fc;
}

.cug-origin-about__inner {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.cug-origin-about__heading h2,
.cug-origin-about__heading h3 {
  margin: 0;
  color: #0e2842;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
}

.cug-origin-about__heading img {
  display: block;
  width: 184px;
  max-width: 45vw;
  margin: 18px 0 28px;
}

.cug-origin-about__heading p {
  margin: 0;
  color: #1d334d;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.45;
  word-break: keep-all;
}

.cug-origin-about__heading strong {
  font-weight: 800;
}

.cug-origin-about__heading--center {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.cug-origin-about__heading--center img {
  margin-right: auto;
  margin-left: auto;
}

.cug-origin-about-intro__visual {
  display: grid;
  gap: 28px;
}

.cug-origin-about-intro__logo {
  width: min(420px, 100%);
  height: auto;
}

.cug-origin-about-intro__visual p {
  max-width: 760px;
  margin: 0;
  color: #404b58;
  font-size: 19px;
  line-height: 1.86;
  word-break: keep-all;
}

.cug-origin-about-intro__image {
  width: 100%;
  border-radius: 0;
  box-shadow: 0 24px 56px rgba(14, 40, 66, .12);
}

.cug-origin-bi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.cug-origin-bi-grid article {
  display: grid;
  min-height: 220px;
  align-items: center;
  justify-items: center;
  padding: 42px 32px 30px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.cug-origin-bi-grid__dark {
  background: #0e2842 !important;
}

.cug-origin-bi-grid img {
  max-width: min(420px, 88%);
  max-height: 92px;
}

.cug-origin-bi-grid span {
  margin-top: 26px;
  color: #5a6675;
  font-size: 16px;
  font-weight: 700;
}

.cug-origin-bi-grid__dark span {
  color: rgba(255, 255, 255, .9);
}

.cug-origin-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.cug-origin-color-grid article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.cug-origin-color-grid i {
  grid-row: span 3;
  width: 72px;
  height: 72px;
  background: var(--swatch);
}

.cug-origin-color-grid strong,
.cug-origin-color-grid span,
.cug-origin-color-grid em {
  display: block;
  min-width: 0;
}

.cug-origin-color-grid strong {
  color: #0e2842;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.cug-origin-color-grid span,
.cug-origin-color-grid em {
  color: #667789;
  font-size: 14px;
  font-style: normal;
  line-height: 1.45;
}

.cug-origin-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.cug-origin-support-grid article {
  min-height: 360px;
  padding: 38px;
  border: 1px solid #dce7f1;
  background: #fff;
}

.cug-origin-support-grid h3 {
  margin: 0 0 26px;
  color: #0e2842;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}

.cug-origin-support-grid ul,
.cug-origin-program-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cug-origin-support-grid li,
.cug-origin-program-card li {
  position: relative;
  padding-left: 18px;
  color: #344253;
  font-size: 16px;
  line-height: 1.7;
  word-break: keep-all;
}

.cug-origin-support-grid li::before,
.cug-origin-program-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00aeef;
}

.cug-origin-program-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 520px;
}

.cug-origin-program-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background-image: var(--program-image);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.cug-origin-program-card::before,
.cug-origin-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: opacity .32s ease;
}

.cug-origin-program-card::before {
  background: rgba(4, 22, 39, .18);
}

.cug-origin-program-card::after {
  opacity: 0;
  background: rgba(0, 174, 239, .88);
}

.cug-origin-program-card__before,
.cug-origin-program-card__after {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 28px;
  text-align: center;
  transition: opacity .32s ease, transform .32s ease;
}

.cug-origin-program-card__before img {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
}

.cug-origin-program-card__before strong {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
}

.cug-origin-program-card__after {
  opacity: 0;
  transform: translateY(18px);
  color: #fff;
}

.cug-origin-program-card__after h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.cug-origin-program-card__after li {
  padding-left: 0;
  color: #fff;
  font-weight: 600;
}

.cug-origin-program-card__after li::before {
  display: none;
}

.cug-origin-program-card:hover::after,
.cug-origin-program-card:focus-within::after {
  opacity: 1;
}

.cug-origin-program-card:hover .cug-origin-program-card__before,
.cug-origin-program-card:focus-within .cug-origin-program-card__before {
  opacity: 0;
  transform: translateY(-16px);
}

.cug-origin-program-card:hover .cug-origin-program-card__after,
.cug-origin-program-card:focus-within .cug-origin-program-card__after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .cug-origin-about__inner,
  .cug-origin-color-grid,
  .cug-origin-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .cug-origin-about {
    padding: 62px 0;
  }

  .cug-origin-about__inner,
  .cug-origin-bi-grid,
  .cug-origin-color-grid,
  .cug-origin-support-grid,
  .cug-origin-program-grid {
    grid-template-columns: 1fr;
  }

  .cug-origin-about__heading--center {
    text-align: left;
  }

  .cug-origin-about__heading--center img {
    margin-left: 0;
  }

  .cug-origin-about__heading p {
    font-size: 22px;
  }

  .cug-origin-about-intro__visual p {
    font-size: 16px;
  }

  .cug-origin-bi-grid article,
  .cug-origin-support-grid article {
    padding: 26px 22px;
  }

  .cug-origin-color-grid article {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 20px;
  }

  .cug-origin-color-grid i {
    width: 54px;
    height: 54px;
  }

  .cug-origin-program-grid,
  .cug-origin-program-card {
    min-height: auto;
  }

  .cug-origin-program-card {
    min-height: 360px;
  }
}

/* Match original about.php business card scale */
.cug-origin-about-program .cug-origin-program-grid {
  max-width: 1020px;
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .cug-origin-about-program .cug-origin-program-grid {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .cug-origin-about-program .cug-origin-program-grid {
    max-width: none;
  }
}

.cug-origin-about-program .cug-origin-program-grid,
.cug-origin-about-program .cug-origin-program-card {
  min-height: 427px;
}

@media (max-width: 760px) {
  .cug-origin-about-program .cug-origin-program-grid {
    min-height: auto;
  }
  .cug-origin-about-program .cug-origin-program-card {
    min-height: 360px;
  }
}

/* About support section: restore original contents_03 layout with font icons */
.cug-origin-contents-03 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 75px;
}

.cug-origin-support-box {
  box-sizing: border-box;
}

.cug-origin-support-label {
  width: 100%;
  color: #000;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.cug-origin-support-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 120px;
  padding: 20px 30px 20px 60px;
  margin-top: 26px;
  background: #e9e9e9;
  box-sizing: border-box;
  transition: background-color .25s ease, color .25s ease;
}

.cug-origin-support-item.first {
  margin-top: 40px;
}

.cug-origin-support-icon {
  display: inline-flex;
  flex: 0 0 80px;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 2px solid #0e2842;
  border-radius: 50%;
  color: #0e2842;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  transition: border-color .25s ease, background-color .25s ease, color .25s ease;
}

.cug-origin-support-desc {
  flex: 1 1 auto;
  min-width: 0;
  color: #000;
  font-size: 18px;
  text-align: left;
  box-sizing: border-box;
}

.cug-origin-support-desc > div {
  width: 100%;
  padding-left: 45px;
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  word-break: keep-all;
  box-sizing: border-box;
  transition: color .25s ease;
}

.cug-origin-support-item:hover {
  background: #00aaef;
}

.cug-origin-support-item:hover .cug-origin-support-icon {
  border-color: #fff;
  background: #fff;
  color: #00aaef;
}

.cug-origin-support-item:hover .cug-origin-support-desc,
.cug-origin-support-item:hover .cug-origin-support-desc > div,
.cug-origin-support-item:hover .cug-origin-program-tags em {
  color: #fff;
}

.cug-origin-program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 7px;
}

.cug-origin-program-tags em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: #999;
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  transition: color .25s ease;
}

.cug-origin-program-card__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  font-weight: 200;
  line-height: 1;
}

.cug-origin-program-card__before img {
  display: none;
}

@media (max-width: 1180px) {
  .cug-origin-contents-03 {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .cug-origin-support-box.right {
    margin-top: 18px;
  }
}

@media (max-width: 760px) {
  .cug-origin-contents-03 {
    max-width: none;
    margin-bottom: 60px;
  }

  .cug-origin-support-label {
    font-size: 18px;
  }

  .cug-origin-support-item,
  .cug-origin-support-item.first {
    min-height: 92px;
    padding: 20px 15px;
    margin-top: 10px;
  }

  .cug-origin-support-item.first {
    margin-top: 20px;
  }

  .cug-origin-support-icon {
    flex-basis: 45px;
    width: 45px;
    height: 45px;
    font-size: 15px;
  }

  .cug-origin-support-desc,
  .cug-origin-support-desc > div {
    font-size: 14px;
  }

  .cug-origin-support-desc > div {
    padding-left: 18px;
  }

  .cug-origin-program-tags em {
    font-size: 12px;
  }
}

.cug-origin-support-item,
.cug-origin-support-item * {
  pointer-events: auto;
}

.cug-origin-support-box:has(.cug-origin-support-item:hover) .cug-origin-support-item:hover,
.cug-origin-support-item:hover,
.cug-origin-support-item:focus-within {
  background: #00aaef !important;
}

.cug-origin-support-item:hover .cug-origin-support-icon,
.cug-origin-support-item:focus-within .cug-origin-support-icon {
  border-color: #fff !important;
  background: #fff !important;
  color: #00aaef !important;
}

.cug-origin-support-item:hover .cug-origin-support-desc,
.cug-origin-support-item:hover .cug-origin-support-desc > div,
.cug-origin-support-item:hover .cug-origin-program-tags em,
.cug-origin-support-item:focus-within .cug-origin-support-desc,
.cug-origin-support-item:focus-within .cug-origin-support-desc > div,
.cug-origin-support-item:focus-within .cug-origin-program-tags em {
  color: #fff !important;
}

.cug-origin-support-item:has(.cug-origin-support-desc:hover),
.cug-origin-support-item:has(.cug-origin-support-icon:hover) {
  background: #00aaef !important;
}

.cug-origin-support-item:has(.cug-origin-support-desc:hover) .cug-origin-support-icon,
.cug-origin-support-item:has(.cug-origin-support-icon:hover) .cug-origin-support-icon {
  border-color: #fff !important;
  background: #fff !important;
  color: #00aaef !important;
}

.cug-origin-support-item:has(.cug-origin-support-desc:hover) .cug-origin-support-desc,
.cug-origin-support-item:has(.cug-origin-support-desc:hover) .cug-origin-support-desc > div,
.cug-origin-support-item:has(.cug-origin-support-desc:hover) .cug-origin-program-tags em,
.cug-origin-support-item:has(.cug-origin-support-icon:hover) .cug-origin-support-desc,
.cug-origin-support-item:has(.cug-origin-support-icon:hover) .cug-origin-support-desc > div,
.cug-origin-support-item:has(.cug-origin-support-icon:hover) .cug-origin-program-tags em {
  color: #fff !important;
}

/* Location page: map and transportation guide */
.cug-location-contact,
.cug-location-traffic {
  padding: 86px 0;
  background: #fff;
}

.cug-location-contact__inner {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.45fr);
  gap: 42px;
  align-items: stretch;
}

.cug-location-contact__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  padding: 48px;
  background: #0e2842;
  color: #fff;
}

.cug-location-contact__head > p,
.cug-location-section-head p {
  margin: 0 0 12px;
  color: #00aeef;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cug-location-contact__head h2,
.cug-location-section-head h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  word-break: keep-all;
}

.cug-location-contact__head dl {
  display: grid;
  gap: 22px;
  margin: 42px 0 0;
}

.cug-location-contact__head dl div {
  display: grid;
  gap: 6px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.cug-location-contact__head dt {
  color: rgba(255,255,255,.64);
  font-size: 14px;
  font-weight: 700;
}

.cug-location-contact__head dd {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  word-break: keep-all;
}

.cug-location-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.cug-location-contact__actions a,
.cug-location-traffic-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cug-location-contact__actions a:hover {
  background: #fff;
  color: #0e2842;
}

.cug-location-map {
  min-height: 520px;
  background: #e5edf5;
  overflow: hidden;
}

.cug-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.cug-location-traffic {
  background: #f6f9fc;
}

.cug-location-section-head {
  max-width: 880px;
  margin-bottom: 38px;
}

.cug-location-section-head h2 {
  color: #0e2842;
}

.cug-location-section-head span {
  display: block;
  margin-top: 14px;
  color: #5a6675;
  font-size: 17px;
  line-height: 1.7;
  word-break: keep-all;
}

.cug-location-traffic__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.cug-location-traffic-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 30px;
  border: 1px solid #dce7f1;
  background: #fff;
  box-shadow: 0 14px 34px rgba(14, 40, 66, .06);
}

.cug-location-traffic-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.cug-location-traffic-card__top span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  height: 62px;
  padding: 0 9px;
  border-radius: 50%;
  background: #00aeef;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.cug-location-traffic-card h3 {
  margin: 0;
  color: #0e2842;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.cug-location-traffic-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cug-location-traffic-card li {
  position: relative;
  padding-left: 18px;
}

.cug-location-traffic-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00aeef;
}

.cug-location-traffic-card strong {
  display: block;
  color: #152d48;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.cug-location-traffic-card p {
  margin: 5px 0 0;
  color: #5a6675;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
}

.cug-location-traffic-card__link {
  align-self: flex-start;
  margin-top: auto;
  padding: 0 16px;
  color: #0072bc;
}

.cug-location-traffic-card__link:hover {
  background: #0072bc;
  color: #fff;
}

.cug-location-traffic__source {
  margin: 24px 0 0;
  color: #667789;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .cug-location-contact__inner,
  .cug-location-traffic__grid {
    grid-template-columns: 1fr;
  }

  .cug-location-contact__head,
  .cug-location-map,
  .cug-location-map iframe {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .cug-location-contact,
  .cug-location-traffic {
    padding: 58px 0;
  }

  .cug-location-contact__head,
  .cug-location-traffic-card {
    padding: 26px 22px;
  }

  .cug-location-contact__head,
  .cug-location-map,
  .cug-location-map iframe {
    min-height: 360px;
  }

  .cug-location-traffic-card__top {
    align-items: flex-start;
  }
}
