@charset "UTF-8";

:root {
  --youth-purple: #6658d9;
  --youth-purple-dark: #493cae;
  --youth-purple-soft: #eeeaff;
  --youth-coral: #ff6f61;
  --youth-mint: #39c6a6;
  --youth-blue: #4189e8;
  --youth-yellow: #ffc94a;
  --youth-ink: #222233;
  --youth-body: #646477;
  --youth-line: #e7e7ef;
  --youth-bg: #f7f7fb;
  --youth-container: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  /* sticky footer: 콘텐츠가 짧아도 푸터를 화면 하단에 고정 */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--youth-body);
  background: #fff;
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
}

/* 본문이 남은 높이를 채워 푸터를 아래로 밀어냄 */
#main-content {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

.youth-popup-layer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.youth-popup-layer[hidden] {
  display: none;
}

.youth-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 25, 49, .62);
  backdrop-filter: blur(5px);
}

.youth-popup-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden auto;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(32, 28, 70, .3);
}

.youth-popup-card[hidden] {
  display: none;
}

.youth-popup-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 25px 19px;
}

.youth-popup-heading span {
  display: block;
  margin-bottom: 5px;
  color: var(--youth-purple);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
}

.youth-popup-heading h2 {
  margin: 0;
  color: var(--youth-ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.4;
  letter-spacing: -.7px;
}

.youth-popup-close {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--youth-bg);
  color: var(--youth-ink);
  font-size: 16px;
}

.youth-popup-visual {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f0eff8;
  cursor: default;
}

.youth-popup-visual.is-linked {
  cursor: pointer;
}

.youth-popup-visual img {
  display: block;
  width: 100%;
  max-height: min(65vh, 620px);
  object-fit: contain;
}

.youth-popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  padding: 12px 20px 12px 25px;
  border-top: 1px solid var(--youth-line);
}

.youth-popup-footer label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #737384;
  font-size: 13px;
  cursor: pointer;
}

.youth-popup-footer input {
  width: 16px;
  height: 16px;
  accent-color: var(--youth-purple);
}

.youth-popup-footer > button {
  min-width: 64px;
  height: 36px;
  padding: 0 16px;
  border: 0;
  border-radius: 18px;
  background: var(--youth-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

body.popup-layer-open {
  overflow: hidden;
}

.container {
  max-width: var(--youth-container);
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 20px;
  z-index: 100000;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 0;
  color: #fff;
}

/* Header */
.user-util-bar {
  min-height: 34px;
  border-bottom: 1px solid #eeeeF3;
  background: #fafafd;
  color: #818192;
  font-size: 12px;
}

.user-util-bar .container {
  min-height: 34px;
}

.user-util-bar a {
  color: #747485;
  text-decoration: none;
}

.user-util-bar a:hover,
.user-util-bar a:focus {
  color: var(--youth-purple);
}

.util-welcome {
  color: var(--youth-ink);
}

.user-header {
  position: relative;
  z-index: 1030;
  border-bottom: 1px solid rgba(34, 34, 51, .08);
  background: rgba(255, 255, 255, .97);
}

.user-header .navbar {
  min-height: 88px;
  padding: 0;
}

.user-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 24px;
  padding: 0;
  text-decoration: none;
}

.logo-symbol {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 17px 17px 17px 5px;
  background: var(--youth-purple);
  box-shadow: 0 9px 20px rgba(102, 88, 217, .24);
  transform: rotate(-4deg);
}

.logo-symbol span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #fff;
}

.logo-symbol span:nth-child(1) {
  width: 9px;
  height: 9px;
  top: 12px;
  left: 11px;
}

.logo-symbol span:nth-child(2) {
  width: 9px;
  height: 9px;
  top: 12px;
  right: 11px;
}

.logo-symbol span:nth-child(3) {
  width: 25px;
  height: 12px;
  bottom: 10px;
  left: 12px;
  border-radius: 0 0 14px 14px;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  color: var(--youth-ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.8px;
}

.logo-copy small {
  margin-top: 5px;
  color: #9999a8;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.user-menu-list {
  gap: 6px;
}

.user-menu-list .nav-link {
  position: relative;
  padding: 31px 18px !important;
  color: var(--youth-ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.35px;
}

.user-menu-list .nav-link::after {
  display: none;
}

.user-menu-list .nav-link::before {
  position: absolute;
  right: 18px;
  bottom: 19px;
  left: 18px;
  height: 3px;
  border-radius: 4px;
  background: var(--youth-purple);
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .2s ease, transform .2s ease;
}

.user-menu-list .nav-item:hover > .nav-link,
.user-menu-list .nav-link:focus,
.user-menu-list .nav-link.show {
  color: var(--youth-purple);
}

.user-menu-list .nav-item:hover > .nav-link::before,
.user-menu-list .nav-link:focus::before,
.user-menu-list .nav-link.show::before {
  opacity: 1;
  transform: scaleX(1);
}

.user-menu-list .dropdown-menu {
  min-width: 190px;
  margin-top: -1px;
  padding: 10px;
  border: 0;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 18px 45px rgba(37, 35, 66, .14);
}

.user-menu-list .dropdown-item {
  padding: 10px 13px;
  border-radius: 8px;
  color: #555568;
  font-size: 14px;
}

.user-menu-list .dropdown-item:hover,
.user-menu-list .dropdown-item:focus {
  background: var(--youth-purple-soft);
  color: var(--youth-purple-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-icon-btn,
.user-nav-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--youth-line);
  border-radius: 50%;
  background: #fff;
  color: var(--youth-ink);
  font-size: 18px;
}

.header-membership {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 19px;
  border-radius: 22px;
  background: var(--youth-purple);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(102, 88, 217, .2);
}

.header-membership:hover,
.header-membership:focus {
  background: var(--youth-purple-dark);
  color: #fff;
}

.user-nav-toggler {
  border: 0;
  font-size: 27px;
  box-shadow: none !important;
}

.header-search-panel {
  border-top: 1px solid var(--youth-line);
  background: #fff;
}

.header-search-panel .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

.header-search-form {
  position: relative;
  width: min(720px, 100%);
  margin: 0 auto;
}

.header-search-form .form-control {
  height: 54px;
  padding: 0 60px 0 22px;
  border: 2px solid var(--youth-purple);
  border-radius: 27px;
  box-shadow: none;
}

.header-search-form button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--youth-purple);
  color: #fff;
}

/* Main visual */
.main-visual {
  position: relative;
  overflow: hidden;
}

.visual-slide {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.visual-slide::before,
.visual-slide::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.visual-slide::before {
  top: -220px;
  right: -120px;
  width: 600px;
  height: 600px;
  border: 100px solid rgba(255, 255, 255, .06);
}

.visual-slide::after {
  bottom: -340px;
  left: -160px;
  width: 560px;
  height: 560px;
  background: rgba(255, 255, 255, .05);
}

.visual-slide-purple {
  background: linear-gradient(118deg, #5c4ed0 0%, #7565e8 55%, #9c7bf1 100%);
}

.visual-slide-mint {
  background: linear-gradient(118deg, #188c80 0%, #29b99d 55%, #71d5be 100%);
}

.visual-slide-coral {
  background: linear-gradient(118deg, #e95755 0%, #ff7566 55%, #ff9b71 100%);
}

.min-vh-visual {
  min-height: 590px;
}

.visual-copy {
  position: relative;
  z-index: 2;
  padding-top: 65px;
  padding-bottom: 95px;
}

.visual-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  font-weight: 500;
}

.visual-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 2px 12px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.visual-copy h1,
.visual-copy h2 {
  margin: 0 0 23px;
  color: #fff;
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 300;
  line-height: 1.17;
  letter-spacing: -3.6px;
}

.visual-copy h1 em,
.visual-copy h2 em {
  font-style: normal;
  font-weight: 800;
}

.visual-description {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, .8);
  font-size: 17px;
  line-height: 1.8;
}

.visual-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.visual-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 183px;
  height: 54px;
  padding: 0 21px;
  border: 0;
  border-radius: 27px;
  background: #fff;
  color: var(--youth-ink);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(43, 32, 104, .19);
}

.visual-primary-btn:hover,
.visual-primary-btn:focus {
  background: var(--youth-ink);
  color: #fff;
}

.visual-link-btn {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .7);
  border-radius: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.visual-link-btn:hover,
.visual-link-btn:focus {
  border-color: #fff;
  color: #fff;
}

.visual-art {
  position: relative;
  z-index: 2;
  width: 510px;
  height: 470px;
  margin-left: auto;
}

.art-orbit {
  position: absolute;
  border: 2px dashed rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.orbit-one {
  top: 35px;
  right: 30px;
  width: 390px;
  height: 390px;
  animation: slow-spin 24s linear infinite;
}

.orbit-two {
  top: 90px;
  right: 86px;
  width: 280px;
  height: 280px;
  border-style: solid;
  border-color: rgba(255, 255, 255, .13);
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

.art-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 17px;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(49, 37, 116, .18);
}

.art-card i {
  font-size: 20px;
}

.art-card-chat {
  top: 80px;
  left: 20px;
  transform: rotate(-8deg);
}

.art-card-idea {
  right: 4px;
  bottom: 72px;
  transform: rotate(7deg);
}

.art-person {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid rgba(255, 255, 255, .75);
  border-radius: 48% 52% 45% 55% / 55% 42% 58% 45%;
  color: #fff;
  box-shadow: 0 25px 45px rgba(52, 38, 128, .25);
}

.art-person i {
  font-size: 112px;
  line-height: 1;
}

.person-one {
  top: 98px;
  left: 120px;
  width: 180px;
  height: 220px;
  background: #ffca50;
  transform: rotate(-7deg);
}

.person-two {
  right: 36px;
  bottom: 70px;
  width: 175px;
  height: 205px;
  background: #ff7869;
  transform: rotate(8deg);
}

.art-star {
  position: absolute;
  color: #ffe175;
  font-size: 40px;
  animation: float-star 2.6s ease-in-out infinite;
}

.star-one {
  top: 25px;
  right: 105px;
}

.star-two {
  bottom: 38px;
  left: 110px;
  color: #fff;
  animation-delay: .7s;
}

@keyframes float-star {
  50% { transform: translateY(-8px) rotate(12deg); }
}

.visual-art-space {
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 120px 120px 35px 35px;
  background: rgba(255, 255, 255, .11);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, .08);
}

.space-window {
  position: absolute;
  top: 55px;
  left: 90px;
  display: flex;
  width: 320px;
  height: 180px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, .82);
  border-radius: 80px 80px 15px 15px;
  background: rgba(77, 220, 188, .55);
}

.space-window span {
  flex: 1;
  border-right: 3px solid rgba(255, 255, 255, .8);
}

.space-window span:last-child {
  border: 0;
}

.space-table {
  position: absolute;
  bottom: 95px;
  left: 115px;
  width: 280px;
  height: 67px;
  border-radius: 50%;
  background: #ffce68;
  box-shadow: 0 17px 0 -5px #e6a744, 0 45px 0 -27px #fff;
}

.space-chair {
  position: absolute;
  bottom: 42px;
  width: 90px;
  height: 125px;
  border: 7px solid rgba(255, 255, 255, .84);
  border-radius: 36px 36px 20px 20px;
}

.chair-one {
  left: 62px;
  background: #6b5bde;
  transform: rotate(-8deg);
}

.chair-two {
  right: 60px;
  background: #ff7767;
  transform: rotate(8deg);
}

.space-plant {
  position: absolute;
  right: 7px;
  bottom: 28px;
  color: #daf96d;
  font-size: 78px;
}

.space-label {
  position: absolute;
  right: -10px;
  top: 35px;
  padding: 12px 16px;
  border-radius: 18px;
  background: #fff;
  color: #228d7d;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 13px 28px rgba(18, 92, 81, .2);
  transform: rotate(5deg);
}

.visual-art-program {
  perspective: 900px;
}

.program-poster {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 270px;
  height: 365px;
  padding: 27px;
  border: 8px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  box-shadow: 0 35px 60px rgba(119, 41, 43, .25);
}

.poster-back {
  top: 62px;
  left: 40px;
  background: #604ad6;
  color: #fff;
  font-size: 48px;
  font-weight: 900;
  line-height: .9;
  transform: rotate(-13deg);
}

.poster-front {
  top: 40px;
  right: 30px;
  background: #ffd055;
  color: #402a2b;
  transform: rotate(9deg);
}

.poster-front small {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
}

.poster-front strong {
  font-size: 39px;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -2px;
}

.poster-front i {
  align-self: flex-end;
  font-size: 34px;
}

.program-dot {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}

.dot-one {
  right: 5px;
  bottom: 35px;
  width: 33px;
  height: 33px;
}

.dot-two {
  top: 14px;
  left: 5px;
  width: 18px;
  height: 18px;
  background: #ffd25a;
}

.main-visual .carousel-indicators {
  bottom: 38px;
  z-index: 5;
  justify-content: flex-start;
  width: min(calc(100% - 48px), var(--youth-container));
  margin-right: auto;
  margin-left: auto;
}

.main-visual .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .52);
  opacity: 1;
}

.main-visual .carousel-indicators .active {
  width: 26px;
  border-radius: 8px;
  background: #fff;
}

.visual-controls {
  position: absolute;
  right: max(24px, calc((100% - var(--youth-container)) / 2));
  bottom: 27px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
}

.visual-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  background: transparent;
  color: #fff;
}

.visual-controls strong {
  color: #fff;
  font-size: 14px;
}

/* Quick services */
.quick-service-wrap {
  position: relative;
  z-index: 10;
  margin-top: -1px;
  background: #fff;
}

.quick-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-right: 1px solid var(--youth-line);
  border-left: 1px solid var(--youth-line);
}

.quick-service-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 130px;
  padding: 25px 22px;
  border-right: 1px solid var(--youth-line);
  color: var(--youth-ink);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.quick-service-item:last-child {
  border-right: 0;
}

.quick-service-item:hover,
.quick-service-item:focus {
  z-index: 2;
  background: #fbfaff;
  color: var(--youth-purple);
  transform: translateY(-4px);
  box-shadow: 0 13px 35px rgba(61, 51, 126, .09);
}

.quick-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 24px;
}

.quick-icon-purple { background: #eeeaff; color: var(--youth-purple); }
.quick-icon-blue { background: #e7f1ff; color: var(--youth-blue); }
.quick-icon-coral { background: #ffebe8; color: var(--youth-coral); }
.quick-icon-green { background: #e3f8f1; color: #20a889; }
.quick-icon-yellow { background: #fff4d5; color: #d99c08; }

.quick-service-item > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.quick-service-item strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.4px;
}

.quick-service-item small {
  margin-top: 3px;
  color: #9696a5;
  font-size: 12px;
}

.quick-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #b9b9c6;
  font-size: 14px;
}

/* Shared sections */
.main-section {
  padding: 105px 0;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading-center {
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--youth-purple);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
}

.section-heading h2,
.schedule-header h2 {
  margin: 0;
  color: var(--youth-ink);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: -2px;
}

.section-heading > p:last-child,
.section-heading > div > p:last-child {
  margin: 11px 0 0;
  color: #858595;
  font-size: 15px;
}

/* Programs */
.program-section {
  background: var(--youth-bg);
}

.program-tabs {
  gap: 8px;
  margin: -16px 0 38px;
  border: 0;
}

.program-tabs .nav-link {
  min-width: 130px;
  padding: 10px 20px;
  border: 1px solid var(--youth-line);
  border-radius: 23px;
  background: #fff;
  color: #777788;
  font-size: 13px;
  font-weight: 700;
}

.program-tabs .nav-link.active {
  border-color: var(--youth-purple);
  background: var(--youth-purple);
  color: #fff;
  box-shadow: 0 8px 20px rgba(102, 88, 217, .2);
}

.program-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid #ebebf2;
  border-radius: 17px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.program-card:hover,
.program-card:focus {
  color: inherit;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(52, 48, 82, .13);
}

.program-thumbnail {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  isolation: isolate;
}

.program-thumbnail::before,
.program-thumbnail::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.program-thumbnail::before {
  top: -65px;
  right: -65px;
  width: 180px;
  height: 180px;
  border: 36px solid rgba(255, 255, 255, .24);
}

.program-thumbnail::after {
  bottom: -75px;
  left: -65px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, .18);
}

.program-thumb-one { background: #6656d8; color: #fff; }
.program-thumb-two { background: #ffcc57; color: #3a3041; }
.program-thumb-three { background: #3ab9a2; color: #fff; }
.program-thumb-four { background: #f07d72; color: #fff; }
.program-thumb-five { background: #305fca; color: #fff; }
.program-thumb-six { background: #26243b; color: #fff; }
.program-thumb-seven { background: #9a68da; color: #fff; }
.program-thumb-eight { background: #ef9d4e; color: #fff; }

.program-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 15px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.status-open { background: #222233; }
.status-soon { background: #e95755; }
.status-closed { background: #777784; }

.thumb-copy {
  position: absolute;
  top: 83px;
  right: 25px;
  left: 25px;
}

.thumb-copy small {
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  opacity: .74;
}

.thumb-copy strong {
  display: block;
  font-size: clamp(23px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: -1.6px;
}

.thumb-icon {
  position: absolute;
  right: 25px;
  bottom: 26px;
  z-index: 2;
  font-size: 54px;
  opacity: .92;
  transform: rotate(-5deg);
}

.thumb-shape {
  position: absolute;
  z-index: -1;
  opacity: .25;
}

.shape-circle {
  right: 28px;
  bottom: 38px;
  width: 130px;
  height: 130px;
  border: 20px solid #ffdd68;
  border-radius: 50%;
}

.shape-square {
  right: 28px;
  bottom: 35px;
  width: 125px;
  height: 125px;
  border: 15px solid #fff;
  transform: rotate(16deg);
}

.shape-wave {
  right: 15px;
  bottom: 34px;
  width: 155px;
  height: 90px;
  border-radius: 50% 50% 10% 70%;
  background: #ffea72;
  transform: rotate(-12deg);
}

.shape-arch {
  right: 15px;
  bottom: -25px;
  width: 160px;
  height: 180px;
  border: 22px solid #fff;
  border-radius: 90px 90px 0 0;
}

.program-card-body {
  padding: 21px 21px 23px;
}

.program-category {
  color: var(--youth-purple);
  font-size: 11px;
  font-weight: 800;
}

.program-card-body h3 {
  min-height: 50px;
  margin: 8px 0 14px;
  color: var(--youth-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.5px;
}

.program-card-body p {
  margin: 0;
  color: #9999a7;
  font-size: 12px;
}

.program-card-body p i {
  margin-right: 5px;
}

.section-more-wrap {
  margin-top: 42px;
  text-align: center;
}

.outline-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid #dadae5;
  border-radius: 25px;
  background: #fff;
  color: var(--youth-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.outline-more-btn:hover,
.outline-more-btn:focus {
  border-color: var(--youth-purple);
  background: var(--youth-purple);
  color: #fff;
}

/* Notice and schedule */
.information-section {
  background: #fff;
}

.section-heading-inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.circle-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--youth-line);
  border-radius: 50%;
  color: var(--youth-ink);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.circle-more-btn:hover,
.circle-more-btn:focus {
  background: var(--youth-ink);
  color: #fff;
  transform: rotate(90deg);
}

.notice-feature {
  display: flex;
  gap: 25px;
  padding: 25px 0;
  border-top: 2px solid var(--youth-ink);
  border-bottom: 1px solid var(--youth-line);
}

.notice-feature-date {
  flex: 0 0 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-radius: 14px;
  background: var(--youth-purple-soft);
  color: var(--youth-purple);
  text-decoration: none;
}

.notice-feature-date strong {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.notice-feature-date span {
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
}

.notice-feature-copy {
  min-width: 0;
  padding: 3px 0;
  color: inherit;
  text-decoration: none;
}

.notice-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--youth-coral);
  font-size: 11px;
  font-weight: 800;
}

.notice-feature-copy strong {
  display: block;
  overflow: hidden;
  color: var(--youth-ink);
  font-size: 18px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.notice-feature-copy p {
  overflow: hidden;
  margin: 8px 0 0;
  color: #9292a0;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.main-notice-list li {
  border-bottom: 1px solid var(--youth-line);
}

.main-notice-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 57px;
  color: #555568;
  font-size: 14px;
  text-decoration: none;
}

.main-notice-list a span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-notice-list a span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 12px 3px 2px;
  border-radius: 50%;
  background: #b8b8c4;
  content: "";
}

.main-notice-list a:hover span,
.main-notice-list a:focus span {
  color: var(--youth-purple);
}

.main-notice-list time {
  flex: 0 0 auto;
  color: #a4a4b0;
  font-size: 12px;
}

.schedule-card {
  height: 100%;
  padding: 35px;
  border-radius: 24px;
  background: #2d294a;
  color: #fff;
  box-shadow: 0 20px 50px rgba(43, 39, 73, .16);
}

.schedule-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}

.schedule-header .section-eyebrow {
  color: #b9b0ff;
}

.schedule-header h2 {
  color: #fff;
  font-size: 28px;
}

.schedule-month {
  display: flex;
  align-items: center;
  gap: 8px;
}

.schedule-month strong {
  min-width: 76px;
  text-align: center;
  font-size: 13px;
}

.schedule-month button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-size: 12px;
}

.mini-calendar {
  padding: 18px 17px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .07);
}

.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-week span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
}

.calendar-head span {
  height: 31px;
  color: rgba(255, 255, 255, .4);
  font-size: 9px;
  font-weight: 800;
}

.calendar-week .sunday { color: #ff9c9c; }
.calendar-week .saturday { color: #9bc4ff; }

.calendar-week .has-event {
  z-index: 1;
  color: #292542;
  font-weight: 900;
}

.calendar-week .has-event::before {
  position: absolute;
  z-index: -1;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #c7f16b;
  content: "";
}

.calendar-week .event-coral::before {
  background: #ff9b8e;
}

.schedule-items {
  margin-top: 17px;
}

.schedule-items a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  text-decoration: none;
}

.schedule-items a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.schedule-items time {
  flex: 0 0 47px;
  color: #c7f16b;
  font-size: 12px;
  font-weight: 800;
}

.schedule-items span {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.schedule-items strong {
  font-size: 13px;
}

.schedule-items small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .47);
  font-size: 10px;
}

.schedule-items i {
  color: rgba(255, 255, 255, .45);
  font-size: 11px;
}

/* Gallery */
.gallery-section {
  background: var(--youth-bg);
}

.section-heading-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.story-card {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.story-visual {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.story-card:hover .story-visual,
.story-card:focus .story-visual {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(47, 42, 75, .13);
}

.story-visual-one { background: linear-gradient(135deg, #ffd469, #ff9f73); }
.story-visual-two { background: linear-gradient(135deg, #66d2ba, #67a7d9); }
.story-visual-three { background: linear-gradient(135deg, #8c7ae8, #5966c7); }
.story-visual-four { background: linear-gradient(135deg, #ff8a91, #f1a56b); }

.story-visual::before {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border: 35px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.story-scene {
  position: absolute;
  inset: 0;
}

.scene-board {
  position: absolute;
  top: 45px;
  left: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 175px;
  height: 105px;
  border: 8px solid rgba(255, 255, 255, .85);
  border-radius: 15px;
  background: #7160d9;
  color: #fff7a8;
  font-size: 42px;
  transform: rotate(-3deg);
}

.scene-person {
  position: absolute;
  bottom: 12px;
  color: #fff;
  font-size: 94px;
}

.scene-person-a {
  left: 48px;
}

.scene-person-b {
  right: 42px;
}

.scene-table {
  position: absolute;
  bottom: 42px;
  left: 40px;
  width: 220px;
  height: 50px;
  border-radius: 50%;
  background: #ffd66a;
  box-shadow: 0 14px 0 -5px rgba(45, 41, 74, .25);
}

.scene-cup {
  position: absolute;
  bottom: 82px;
  color: #fff;
  font-size: 58px;
}

.cup-a { left: 70px; transform: rotate(-6deg); }
.cup-b { right: 62px; transform: rotate(7deg); }

.scene-laptop {
  position: absolute;
  top: 48px;
  left: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 120px;
  border: 9px solid #f4f1ff;
  border-radius: 13px;
  background: #23223c;
  color: #c8f067;
  font-size: 48px;
  transform: rotate(-4deg);
}

.scene-key {
  position: absolute;
  bottom: 36px;
  width: 45px;
  height: 27px;
  border-radius: 7px;
  background: #ffcc5b;
  box-shadow: 0 5px 0 #c38e2e;
}

.key-a { left: 68px; }
.key-b { left: 124px; }
.key-c { left: 180px; }

.scene-heart {
  position: absolute;
  top: 42px;
  left: 81px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 155px;
  height: 155px;
  border: 10px solid rgba(255, 255, 255, .83);
  border-radius: 45% 55% 48% 52%;
  background: #6858d4;
  color: #ffe363;
  font-size: 70px;
  transform: rotate(-7deg);
}

.scene-spark {
  position: absolute;
  color: #fff;
  font-size: 35px;
}

.spark-a { top: 35px; right: 35px; }
.spark-b { bottom: 32px; left: 42px; color: #ffe66e; }

.story-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--youth-ink);
}

.story-card-body {
  padding: 18px 5px 0;
}

.story-card-body span {
  color: var(--youth-purple);
  font-size: 11px;
  font-weight: 800;
}

.story-card-body h3 {
  margin: 6px 0 11px;
  color: var(--youth-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: -.5px;
}

.story-card-body time {
  color: #a0a0ae;
  font-size: 11px;
}

/* Contact banner */
.main-contact-banner {
  padding: 0 0 90px;
  background: var(--youth-bg);
}

.contact-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 145px;
  padding: 30px 45px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--youth-purple);
  color: #fff;
  position: relative;
}

.contact-banner-inner::after {
  position: absolute;
  right: 25%;
  bottom: -130px;
  width: 260px;
  height: 260px;
  border: 50px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  content: "";
}

.contact-banner-inner > div:first-child {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .15);
  font-size: 29px;
}

.contact-banner-inner p {
  margin: 0 0 3px;
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
}

.contact-banner-inner h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
}

.contact-actions {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
}

.contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 24px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.contact-actions a:first-child {
  border-color: #fff;
  background: #fff;
  color: var(--youth-purple);
}

/* Floating quick links */
.social-quick {
  position: fixed;
  top: 50%;
  right: 20px;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--youth-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(45, 42, 75, .13);
  transform: translateY(-50%);
}

.social-quick a,
.social-quick button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-bottom: 1px solid var(--youth-line);
  background: #fff;
  color: #777788;
  font-size: 16px;
  text-decoration: none;
}

.social-quick button {
  border-bottom: 0;
  background: var(--youth-ink);
  color: #fff;
}

.social-quick a:hover,
.social-quick a:focus {
  background: var(--youth-purple-soft);
  color: var(--youth-purple);
}

/* Footer */
.user-footer {
  background: #242333;
  color: #a7a6b4;
}

.footer-top {
  padding: 56px 0 45px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.footer-brand .logo-symbol {
  width: 42px;
  height: 42px;
  border-radius: 15px 15px 15px 5px;
  box-shadow: none;
}

.footer-brand .logo-symbol span:nth-child(1),
.footer-brand .logo-symbol span:nth-child(2) {
  top: 10px;
  width: 8px;
  height: 8px;
}

.footer-brand .logo-symbol span:nth-child(1) { left: 9px; }
.footer-brand .logo-symbol span:nth-child(2) { right: 9px; }
.footer-brand .logo-symbol span:nth-child(3) {
  bottom: 8px;
  left: 10px;
  width: 22px;
  height: 11px;
}

.footer-brand strong {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.footer-summary {
  max-width: 350px;
  margin: 20px 0 0;
  color: #8e8d9d;
  font-size: 13px;
  line-height: 1.75;
}

.footer-heading {
  margin: 0 0 17px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #9695a4;
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-contact {
  margin: 0;
  font-style: normal;
}

.footer-contact p {
  margin: 0 0 7px;
  color: #9695a4;
  font-size: 12px;
}

.footer-contact strong {
  display: block;
  margin: 0 0 10px;
  color: #fff;
  font-size: 21px;
}

.footer-select {
  min-height: 42px;
  border-color: #444353;
  border-radius: 7px;
  background-color: #2e2d3d;
  color: #a8a7b4;
  font-size: 12px;
}

.footer-select:focus {
  border-color: var(--youth-purple);
  background-color: #2e2d3d;
  color: #fff;
  box-shadow: none;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid #3b3a49;
}

.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-policy a {
  color: #a3a2af;
  font-size: 12px;
  text-decoration: none;
}

.footer-policy a:first-child {
  color: #fff;
  font-weight: 800;
}

.footer-copyright {
  margin: 0;
  color: #777685;
  font-size: 11px;
}

/* Responsive */
@media (min-width: 1200px) {
  .user-menu-list .nav-item:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1399.98px) {
  :root {
    --youth-container: 1140px;
  }

  .user-menu-list .nav-link {
    padding-right: 13px !important;
    padding-left: 13px !important;
    font-size: 15px;
  }

  .quick-service-item {
    padding-right: 17px;
    padding-left: 17px;
  }

  .quick-service-item small {
    display: none;
  }

  .program-thumbnail {
    min-height: 310px;
  }

  .social-quick {
    right: 10px;
  }
}

@media (max-width: 1199.98px) {
  .user-header .navbar {
    position: relative;
    min-height: 76px;
  }

  .user-nav-toggler {
    position: absolute;
    top: 16px;
    right: 12px;
    z-index: 2;
  }

  .user-header .navbar-collapse {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 13px 0 20px;
    border-top: 1px solid var(--youth-line);
  }

  .user-menu-list {
    gap: 0;
  }

  .user-menu-list .nav-link {
    padding: 13px 8px !important;
    border-bottom: 1px solid #f0f0f5;
    font-size: 15px;
  }

  .user-menu-list .nav-link::before {
    display: none;
  }

  .user-menu-list .dropdown-menu {
    margin: 0;
    padding: 5px 9px 10px;
    border-radius: 0;
    background: #f8f7fd;
    box-shadow: none;
  }

  .header-actions {
    margin-top: 15px;
  }

  .header-icon-btn {
    display: none;
  }

  .visual-art {
    transform: scale(.9);
    transform-origin: center right;
  }

  .quick-service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-service-item:nth-child(3) {
    border-right: 0;
  }

  .quick-service-item:nth-child(-n+3) {
    border-bottom: 1px solid var(--youth-line);
  }

  .quick-service-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .quick-service-item:nth-child(5) {
    grid-column: 2 / 3;
  }

  .program-thumbnail {
    min-height: 340px;
  }

  .social-quick {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .min-vh-visual {
    min-height: 530px;
  }

  .visual-copy {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .main-section {
    padding: 80px 0;
  }

  .information-section .col-lg-5 {
    margin-top: 25px;
  }

  .contact-banner-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-actions {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 15px;
  }

  .user-util-bar {
    display: none;
  }

  .user-header .navbar {
    min-height: 68px;
  }

  .user-nav-toggler {
    top: 12px;
  }

  .logo-symbol {
    width: 41px;
    height: 41px;
    border-radius: 14px 14px 14px 5px;
  }

  .logo-symbol span:nth-child(1),
  .logo-symbol span:nth-child(2) {
    top: 10px;
    width: 8px;
    height: 8px;
  }

  .logo-symbol span:nth-child(1) { left: 9px; }
  .logo-symbol span:nth-child(2) { right: 9px; }
  .logo-symbol span:nth-child(3) {
    bottom: 8px;
    left: 10px;
    width: 21px;
    height: 10px;
  }

  .logo-copy strong {
    font-size: 18px;
  }

  .logo-copy small {
    display: none;
  }

  .min-vh-visual {
    min-height: 500px;
  }

  .visual-copy {
    padding-top: 53px;
    padding-bottom: 96px;
  }

  .visual-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    font-size: 12px;
  }

  .visual-copy h1,
  .visual-copy h2 {
    margin-bottom: 19px;
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -2.4px;
  }

  .visual-description {
    max-width: 100%;
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .visual-controls {
    display: none;
  }

  .main-visual .carousel-indicators {
    bottom: 25px;
  }

  .quick-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-service-item {
    min-height: 104px;
    padding: 17px 15px;
  }

  .quick-service-item:nth-child(2n) {
    border-right: 0;
  }

  .quick-service-item:nth-child(3) {
    border-right: 1px solid var(--youth-line);
  }

  .quick-service-item:nth-child(-n+4) {
    border-bottom: 1px solid var(--youth-line);
  }

  .quick-service-item:nth-child(4),
  .quick-service-item:nth-child(5) {
    grid-column: auto;
  }

  .quick-service-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .quick-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 20px;
  }

  .quick-service-item strong {
    font-size: 14px;
  }

  .main-section {
    padding: 67px 0;
  }

  .section-heading {
    margin-bottom: 31px;
  }

  .section-heading-center {
    width: 100%;
    padding-right: 8px;
    padding-left: 8px;
  }

  .section-heading h2,
  .schedule-header h2 {
    letter-spacing: -1.4px;
    overflow-wrap: anywhere;
  }

  .section-heading-split {
    align-items: flex-start;
    flex-direction: column;
  }

  .program-tabs {
    margin-top: -5px;
  }

  .program-thumbnail {
    min-height: 320px;
  }

  .notice-feature {
    gap: 15px;
  }

  .notice-feature-date {
    flex-basis: 73px;
    min-height: 80px;
  }

  .notice-feature-date strong {
    font-size: 27px;
  }

  .notice-feature-copy strong {
    font-size: 16px;
  }

  .notice-feature-copy p {
    display: none;
  }

  .schedule-card {
    padding: 25px 20px;
  }

  .schedule-header {
    align-items: flex-start;
  }

  .story-visual {
    min-height: 280px;
  }

  .contact-banner-inner {
    padding: 28px 25px;
  }

  .contact-banner-inner > div:first-child {
    align-items: flex-start;
  }

  .contact-banner-inner h2 {
    font-size: 20px;
  }

  .contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 17px;
    font-size: 23px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-top {
    padding: 44px 0 35px;
  }

  .footer-bottom .container {
    align-items: flex-start !important;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .youth-popup-layer {
    align-items: flex-end;
    padding: 12px;
  }

  .youth-popup-card {
    max-height: calc(100vh - 24px);
    border-radius: 22px;
  }

  .youth-popup-heading {
    padding: 20px 19px 15px;
  }

  .youth-popup-heading h2 {
    font-size: 18px;
  }

  .youth-popup-footer {
    padding-right: 15px;
    padding-left: 19px;
  }

  .visual-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .visual-primary-btn {
    min-width: 175px;
    height: 50px;
  }

  .quick-arrow {
    display: none;
  }

  .program-thumbnail {
    min-height: 390px;
  }

  .thumb-copy strong {
    font-size: 30px;
  }

  .main-notice-list a {
    min-height: 54px;
  }

  .main-notice-list time {
    display: none;
  }

  .mini-calendar {
    padding-right: 8px;
    padding-left: 8px;
  }

  .story-visual {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ===== 서브페이지 본문 여백 (헤더/푸터와 간격) ===== */
.user-page-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.user-page-heading {
  margin-bottom: 2rem;
}

/* 서브내비가 있는 페이지는 헤더와 본문 사이 간격을 살짝 줄여 균형 */
.user-subnav + .user-page-section,
.user-subnav ~ .user-page-section {
  padding-top: 2.5rem;
}

@media (max-width: 767.98px) {
  .user-page-section {
    padding-top: 2.25rem;
    padding-bottom: 3rem;
  }
}
