:root {
  --green: #2f8f6f;
  --green-dark: #1f6f55;
  --mint: #e9f7f1;
  --yellow: #ffd86b;
  --orange: #ff9f43;
  --text: #222;
  --sub: #666;
  --line: #e5e5e5;
  --bg: #fafafa;
  --radius: 20px;
  --shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
}
button {
  font-family: inherit;
  border: 0;
  cursor: pointer;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo-image{
  display:block;
  height:64px;
  width:auto;
  object-fit:contain;
}
.gnb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(36px, 5vw, 90px);
  font-size: 17px;
  font-weight: 800;
}
.nav-item {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
}
.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.gnb a:hover {
  color: #f4ab45;
}
.depth-menu {
  position: absolute;
  top: 88px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 170px;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.has-depth:hover .depth-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.depth-menu a {
  display: block;
  padding: 11px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.depth-menu a:hover {
  background: rgba(244,171,69,.14);
  color: #f4ab45;
}
.hamburger {
  display:none;
  place-items:center;
  line-height:1;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #f4ab45;
  color: #fff;
  font-size: 24px;
  margin-left: auto;
}
.hamburger i{
  display:block;
  font-style:normal;
  transform:translateY(-2px);
}
.hero {
  position: relative;
  overflow: hidden;
  background: var(--mint);
}
.hero-slider {
  position: relative;
  height: 760px;
  user-select: none;
  cursor: grab;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s;
  background-size: cover;
  background-position: center;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0.06)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
}
.hero h1 {
  margin: 0 0 18px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  text-shadow:
  0 4px 18px rgba(0,0,0,.28),
  0 2px 6px rgba(0,0,0,.22);
}
.hero p {
  margin: 0 0 34px;
  font-size: clamp(17px, 2.2vw, 22px);
  color: #fff;
  font-weight: 700;
  text-shadow:
    0 3px 14px rgba(0,0,0,.42),
    0 1px 4px rgba(0,0,0,.35);
}
.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-controls-wrap{
  position:absolute;
  left:50%;
  bottom:32px;
  transform:translateX(-50%);
  z-index:5;

  display:flex;
  align-items:center;
  gap:12px;
}

.hero-controls{
  position:static;
  transform:none;
}

.hero-pause-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:34px;
  height:34px;

  border-radius:999px;

  background:rgba(255,255,255,.24);
  backdrop-filter:blur(6px);

  color:#fff;
  font-size:14px;
  font-weight:900;

  transition:.2s ease;
}

.hero-pause-btn:hover{
  background:rgba(255,255,255,.4);
}
.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  z-index:10;

  display:flex;
  align-items:center;
  justify-content:center;

  width:58px;
  height:58px;

  border-radius:999px;

  background:rgba(255,255,255,.18);
  backdrop-filter:blur(8px);

  color:#fff;
  font-size:42px;
  font-weight:300;

  cursor:pointer;
  transition:.2s ease;
}

.hero-arrow:hover{
  background:rgba(255,255,255,.3);
}

.hero-prev{
  left:28px;
}

.hero-next{
  right:28px;
}

@media(max-width:768px){
  .hero-arrow{
    display:none;
  }
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}
.dot.active {
  width: 34px;
  background: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--yellow);
  color: #222;
}
.btn-secondary {
  background: #fff;
  color: var(--green-dark);
}
.section-pad {
  padding: 90px 0;
}
.white-section {
  background: #fff;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}
.section-kicker {
  margin: 0 0 8px;
  color: #f4ab45;
  font-weight: 900;
}
.section-title {
  margin: 0;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}
.section-desc {
  margin: 12px 0 0;
  color: var(--sub);
  font-size: 17px;
}
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.link-card {
  min-height: 280px;
  padding: 34px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.link-card:hover {
  transform: translateY(-6px);
}
.link-card.overview {
  background: linear-gradient(135deg, #e9f7f1, #fff);
}
.link-card.notice {
  background: linear-gradient(135deg, #fff5d8, #fff);
}
.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  font-size: 28px;
  margin-bottom: 26px;
}
.card-icon.orange {
  background: var(--orange);
}
.link-card h3 {
  margin: 0 0 10px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 28px;
  letter-spacing: -0.03em;
}
.link-card p {
  margin: 0 0 28px;
  color: var(--sub);
}
.arrow-link {
  font-weight: 900;
  color: var(--green-dark);
}
.page-hero {
  position: relative;
  overflow: hidden;

  height: 44vw;
  min-height: 320px;
  max-height: 520px;

  display: flex;
  align-items: center;

  color: #fff;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.28),
    rgba(0,0,0,.14)
  );
  z-index:0;
}

.page-hero .container{
  position:relative;
  z-index:1;
}
.page-hero h2 {
  margin: 0 0 12px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(34px, 5vw, 56px);
  letter-spacing: -0.05em;
  text-shadow:
  0 4px 18px rgba(0,0,0,.34),
  0 2px 8px rgba(0,0,0,.28);
}
.page-hero p {
  margin: 0;
  font-size: 18px;
  opacity: 0.92;
  text-shadow:
  0 2px 10px rgba(0,0,0,.32);
}
.guide-sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.guide-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.guide-sub-btn:hover,
.guide-sub-btn.active {
  background: var(--yellow);
  color: #222;
  border-color: transparent;
}
.sub-block {
  padding: 70px 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.sub-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 44px;
  align-items: start;
}
.sub-title {
  margin: 0 0 10px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.sub-text {
  margin: 0;
  color: var(--sub);
}
.image-box {
  border-radius: var(--radius);
  overflow: hidden;
  background: #eee;
  box-shadow: var(--shadow);
}
.map-frame {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 22px;
  border-radius: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.day-badge {
  display: grid;
  place-items: center;
  height: 64px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.timeline-item h4 {
  margin: 0 0 8px;
  font-size: 20px;
}
.timeline-item p {
  margin: 0;
  color: var(--sub);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 18px;
  background: #ddd;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.btn-center {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.board {
  border-top: 2px solid #222;
  background: #fff;
}
.board-row {
  display: grid;
  grid-template-columns: 90px 1fr 150px;
  gap: 20px;
  padding: 20px 12px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.board-head {
  font-weight: 900;
  background: #f7f7f7;
}
.board-title {
  font-weight: 800;
}
.board-date,
.board-num {
  color: var(--sub);
}
.detail-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-top: 2px solid #222;
}
.detail-head {
  padding: 32px 20px;
  border-bottom: 1px solid var(--line);
}
.detail-head h3 {
  margin: 0 0 14px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.04em;
  line-height: 1.25;
}
.detail-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--sub);
  font-size: 15px;
}
.detail-content {
  padding: 42px 20px 54px;
  color: #333;
  font-size: 17px;
}
.detail-content p {
  margin: 0 0 18px;
}
.detail-content ul {
  margin: 12px 0 24px;
  padding-left: 22px;
}
.notice-img {
  margin: 34px 0;
}
.notice-link a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
}
.detail-file {
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--sub);
}
.detail-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}
.detail-nav a {
  padding: 18px 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}
.detail-actions {
  text-align: center;
  margin-top: 28px;
}
.write-area {
  display: none;
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--mint);
}
.write-area.open {
  display: block;
}
.board-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}
.form-grid {
  display: grid;
  gap: 12px;
}
input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.write-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.write-head h3 {
  margin: 0;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 26px;
}
.write-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 24px;
  border: 1px solid var(--line);
}
.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  border: 1px dashed #b7cfc4;
  border-radius: 12px;
  background: #fff;
  color: var(--sub);
  font-weight: 700;
}
.file-upload-label input {
  padding: 0;
  border: 0;
  border-radius: 0;
}
.file-help,
.form-note {
  color: var(--sub);
  font-size: 14px;
}
.write-btn-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.qna-status {
  margin-left: 8px;
  color: var(--green);
  font-size: 13px;
}
.board-row.qna-clickable {
  cursor: pointer;
}
.board-row.qna-clickable:hover {
  background: #fafafa;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  padding: 22px 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}
summary {
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
}
details p {
  margin: 14px 0 0;
  color: var(--sub);
}
.qna-modal,
.main-popup {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.qna-modal.open,
.main-popup.show {
  display: flex;
}
.qna-modal-box,
.popup-box {
  position: relative;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}
.popup-box {
  width: min(440px, 100%);
}
.qna-modal-close,
.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.qna-detail-head {
  padding: 34px 34px 24px;
  border-bottom: 1px solid var(--line);
}
.qna-detail-status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}
.qna-detail-head h3 {
  margin: 0 0 10px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
}
.qna-detail-head p {
  margin: 0;
  color: var(--sub);
}
.qna-detail-body {
  padding: 30px 34px 36px;
}
.qna-detail-body strong {
  display: block;
  margin-bottom: 10px;
}
.qna-detail-body p {
  margin: 0 0 26px;
  white-space: pre-line;
}
.qna-detail-file {
  display: none;
  margin-bottom: 26px;
  padding: 16px 18px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--sub);
}
.qna-answer-box {
  padding: 20px;
  border-radius: 18px;
  background: var(--mint);
}
.qna-answer-box p {
  margin-bottom: 0;
}
.popup-content {
  padding: 24px 24px 18px;
}
.popup-content strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: 24px;
  line-height: 1.3;
}
.popup-content p {
  margin: 0;
  color: var(--sub);
  font-size: 15px;
}
.popup-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.popup-actions button {
  height: 56px;
  background: #fff;
  font-weight: 800;
  font-size: 15px;
}
.popup-actions button + button {
  border-left: 1px solid var(--line);
}
.footer{
  background:#603d27;
  padding:42px 20px;
  color:rgba(255,255,255,.92);
}

.footer .container{
  max-width:1200px;
  margin:0 auto;
}

.footer p{
  margin:10px 0 0;
  font-size:15px;
  font-weight:600;
  line-height:1.7;
  letter-spacing:-0.02em;
}

.footer p:first-child{
  margin-top:0;
}

.footer-copy{
  margin-top:6px !important;
  font-size:14px !important;
  opacity:.78;
}

.footer-divider{
  display:inline-block;
  margin:0 14px;
  opacity:.5;
}

@media(max-width:768px){
  .footer{
    padding:34px 20px;
  }

  .footer p{
    font-size:14px;
    line-height:1.6;
  }

  .footer-divider{
    margin:0 8px;
  }

  .footer-copy{
    font-size:13px !important;
  }
}
@media (max-width: 900px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .nav {
    height: 66px;
    gap: 14px;
  }
  .hamburger {
    display: grid;
    place-items: center;
  }
  .nav-item > a{
    justify-content:flex-start;
    gap:8px;
  }
  .gnb {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 24px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }
  .gnb.open {
    display: flex;
  }
  .nav-item {
    height: auto;
    display: block;
  }
  .nav-item > a {
    height: auto;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }
  .depth-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 4px 0 10px 12px;
    min-width: auto;
    background: transparent;
  }
  .has-depth:hover .depth-menu {
    transform: none;
  }
  .depth-menu a {
    padding: 10px 8px;
    color: var(--sub);
  }
  .hero-slider {
    height: 560px;
  }
  .hero-slide:before {
    background: rgba(0, 0, 0, 0.46);
  }
  .split-cards,
  .sub-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-pad {
    padding: 64px 0;
  }
  .section-head {
    display: block;
  }
  .board-row {
    grid-template-columns: 60px 1fr;
  }
  .board-date {
    grid-column: 2;
  }
  .board-head {
    display: none;
  }
}
@media (max-width: 520px) {
  .logo-image{
    height:42px;
  }
  .hero-slider {
    height: 520px;
  }
  .btn {
    width: 100%;
  }
  .link-card {
    min-height: auto;
    padding: 26px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    grid-template-columns: 1fr;
  }
  .board-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .board-date {
    grid-column: auto;
  }
  .detail-nav {
    grid-template-columns: 1fr;
  }
  .qna-modal,
  .main-popup {
    align-items: flex-start;
    padding: 72px 16px 24px;
  }
  .qna-modal-box,
  .popup-box {
    max-height: calc(100vh - 96px);
    border-radius: 20px;
  }
}

/* Recommended structure: guide tab sections */
.guide-section {
  display: none;
}
.guide-section.active {
  display: block;
}
.guide-sub-btn {
  cursor: pointer;
}

/* Notice detail single-page state */
.notice-detail-panel {
  display: none;
}
.notice-detail-panel.active {
  display: block;
}
.notice-list-panel.hidden {
  display: none;
}

/* Guide correct layout: visual / title / menu / content */
.guide-visual-only {
  height: 220px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.02)),
    url("https://images.unsplash.com/photo-1548199973-03cce0bbc87b?auto=format&fit=crop&w=1600&q=80")
      center 42% / cover no-repeat;
}

.guide-title-area {
  background: #fff;
  text-align: center;
  padding: 48px 0 26px;
}

.guide-title-area h2 {
  margin: 0 0 10px;
  font-family: "Paperlogy", "Pretendard", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: #222;
}

.guide-title-area p {
  margin: 0;
  color: var(--sub);
  font-size: 16px;
  font-weight: 600;
}

.guide-sub-nav-wrap {
  position: static !important;
  top: auto !important;
  z-index: 20;
  padding: 0 !important;
  background: #f8efdf;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 52px;
  margin: 0 !important;
  padding: 0;
  flex-wrap: nowrap;
}

.guide-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.guide-sub-btn:hover,
.guide-sub-btn.active {
  background: transparent !important;
  color: var(--orange) !important;
}

.guide-section .sub-block {
  padding-top: 72px;
}

.guide-content-center{
  max-width:960px;
  margin:0 auto;
  text-align:center;
}

.guide-content-center .sub-title{
  margin-bottom:18px;
}

.guide-content-center .sub-text{
  max-width:760px;
  margin:0 auto 42px;
  line-height:1.8;
}

.guide-media{
  width:100%;
}

.guide-media img,
.guide-media iframe{
  width:100%;
  border:0;
  border-radius:24px;
  overflow:hidden;
  display:block;
}

.guide-media iframe{
  min-height:520px;
}

@media (max-width: 900px) {
  .guide-visual-only {
    height: 160px;
  }

  .guide-title-area {
    padding: 38px 0 22px;
  }

  .guide-sub-nav {
    justify-content: center;
    gap: 22px;
    overflow-x: auto;
    min-height: 50px;
  }

  .guide-sub-nav::-webkit-scrollbar {
    display: none;
  }

  .guide-sub-btn {
    flex: 0 0 auto;
    min-height: 50px;
  }
}

/* Unified guide hero with other subpages */
.guide-sub-nav-wrap {
  position: static !important;
  top: auto !important;
  z-index: 20;
  padding: 0 !important;
  background: #f4ead9;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.guide-sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 52px;
  margin: 0 !important;
  padding: 0;
  flex-wrap: nowrap;
}

.guide-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.guide-sub-btn:hover,
.guide-sub-btn.active {
  background: transparent !important;
  color: var(--orange) !important;
}

.guide-section .sub-block {
  padding-top: 72px;
}

@media (max-width: 900px) {
  .guide-sub-nav {
    justify-content: center !important;
    gap: 22px;
    overflow-x: auto;
    min-height: 50px;
    padding: 0 20px;
  }

  .guide-sub-nav::-webkit-scrollbar {
    display: none;
  }

  .guide-sub-btn {
    flex: 0 0 auto;
    min-height: 50px;
  }
}

/* Per-page hero visuals */
.page-hero.hero-guide{
  background:
    url("https://ecimg.cafe24img.com/pg2720b82469806068/blueys31/pet/info.png")
    center center / cover no-repeat;
}

.page-hero.hero-gallery{
  background:
    url("https://ecimg.cafe24img.com/pg2720b82469806068/blueys31/pet/gallery.png")
    center center / cover no-repeat;
}

.page-hero.hero-notice{
  background:
    url("https://ecimg.cafe24img.com/pg2720b82469806068/blueys31/pet/notice.png")
    center center / cover no-repeat;
}

.page-hero.hero-qna,
.page-hero.hero-faq{
  background:
    url("https://ecimg.cafe24img.com/pg2720b82469806068/blueys31/pet/help.png")
    center center / cover no-repeat;
}

.page-hero.hero-guide h2,
.page-hero.hero-gallery h2,
.page-hero.hero-notice h2,
.page-hero.hero-qna h2,
.page-hero.hero-faq h2 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.page-hero.hero-guide p,
.page-hero.hero-gallery p,
.page-hero.hero-notice p,
.page-hero.hero-qna p,
.page-hero.hero-faq p {
  color: rgba(255, 255, 255, 0.92);
}

.home-gallery-grid {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px;
}

.white-section .section-head{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.white-section .section-head .btn{
  margin-top:18px;
}

.home-gallery-grid .gallery-item {
  aspect-ratio: 4 / 3;
}

@media (max-width: 900px) {
  .home-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 520px) {
  .home-gallery-grid {
    grid-template-columns: 1fr !important;
  }
}
.footer{
  background:#603d27;
  padding:42px 20px;
  color:rgba(255,255,255,.92);
}

.footer .container{
  position:relative;
  max-width:1200px;
  margin:0 auto;
}

.footer p{
  margin:10px 0 0;
  font-size:15px;
  font-weight:600;
  line-height:1.7;
  letter-spacing:-0.02em;
}

.footer p:first-child{
  margin-top:0;
}

.footer-copy{
  margin-top:6px !important;
  font-size:14px !important;
  opacity:.78;
}

.footer-divider{
  display:inline-block;
  margin:0 14px;
  opacity:.5;
}

/* 인스타 로고 */
.footer-sns{
  position:absolute;
  right:40px;
  top:50%;
  transform:translateY(-50%);
}

.footer-sns a{
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  opacity:.92;
  transition:opacity .2s ease;
}

.footer-sns a:hover{
  opacity:1;
}

.footer-sns img{
  width:30px;
  height:30px;
  border-radius:8px;
  object-fit:cover;
}

/* 모바일 */
@media(max-width:768px){

  .footer{
    padding:34px 20px;
  }

  .footer p{
    font-size:14px;
    line-height:1.6;
  }

  .footer-copy{
    font-size:13px !important;
  }

  .footer-divider{
    margin:0 8px;
  }

  .footer-sns{
    position:static;
    transform:none;
    margin-top:18px;
  }

  .footer-sns a{
    justify-content:flex-start;
  }
}

/* Guide content centered layout - unified */
.guide-content-center {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.guide-content-center .sub-title {
  margin: 0 0 18px;
}

.guide-content-center .sub-text {
  max-width: 760px;
  margin: 0 auto 42px;
  line-height: 1.8;
}

.guide-media {
  width: 100%;
  margin: 0 auto;
}

.guide-media img,
.guide-media iframe {
  width: 100%;
  display: block;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guide-media iframe {
  min-height: 520px;
}

.guide-timeline-media {
  text-align: left;
}

.guide-timeline-media .timeline {
  max-width: 880px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .guide-content-center {
    max-width: 100%;
  }

  .guide-content-center .sub-text {
    margin-bottom: 32px;
  }

  .guide-media iframe {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .guide-media img,
  .guide-media iframe {
    border-radius: 18px;
  }

  .guide-media iframe {
    min-height: 360px;
  }
}

.program-sample-image{
  margin-top:28px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:#fff;
}

.program-sample-image img{
  width:100%;
  display:block;
  aspect-ratio:1754 / 1240;
  object-fit:contain;
  background:#fff;
}

.main-link-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  min-height:320px;
}

.main-link-box{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:56px 24px;
}

.main-link-box h3{
  margin:0 0 18px;
  font-family:"Paperlogy","Pretendard",sans-serif;
  font-size:clamp(30px,4vw,44px);
  font-weight:900;
  letter-spacing:-0.05em;
}

.main-link-box p{
  margin:0 0 28px;
  font-size:17px;
  font-weight:700;
  line-height:1.6;
}

.main-link-overview{
  background:#f7a93d;
  color:#111;
}

.main-link-notice{
  background:#9a5f2e;
  color:#fff;
}

.main-more-btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  height:48px;
  padding:0 18px 0 24px;
  border-radius:999px;
  background:rgba(255,255,255,.75);
  color:#111;
  font-size:22px;
  font-weight:900;
  line-height:1;
}

.main-more-btn span{
  display:grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:34px;
  line-height:1;
}

.main-more-btn span i{
  display:block;
  font-style:normal;
  transform:translateY(-2px);
}

@media(max-width:768px){
  .main-link-grid{
    grid-template-columns:1fr;
  }

  .main-link-box{
    min-height:240px;
    padding:44px 20px;
  }
}

.main-link-box{
  position:relative;
  min-height:320px;
  transition:transform .25s ease;
}

.main-link-box:hover{
  transform:translateY(-4px);
}

.main-link-overview{
  background:#f4ab45;
  color:#111;
}

.main-link-overview p{
  color:rgba(0,0,0,.72);
}

.main-link-notice{
  background:#996233;
  color:#fff;
}

.main-link-notice p{
  color:rgba(255,255,255,.82);
}

.main-more-btn{
  text-decoration:none;
  transition:.2s ease;
}

.main-more-btn:hover{
  transform:translateY(-2px);
}

/* Main ABOUT & NOTICE full-width split banner */
.about-notice-section{
  padding:0 !important;
  margin:0;
}

.about-notice-section > .container{
  display:none;
}

.about-notice-section .main-link-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  min-height:320px;
}

.about-notice-section .main-link-box{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  min-height:320px;
  padding:56px 24px;
  text-align:center;
  transition:none;
}

.about-notice-section .main-link-box:hover{
  transform:none;
}

.about-notice-section .main-link-overview{
  background:#f4ab45;
  color:#111;
}

.about-notice-section .main-link-overview p{
  color:rgba(0,0,0,.72);
}

.about-notice-section .main-link-notice{
  background:#996233;
  color:#fff;
}

.about-notice-section .main-link-notice p{
  color:rgba(255,255,255,.82);
}

.about-notice-section .main-more-btn{
  text-decoration:none;
}

@media(max-width:768px){
  .about-notice-section .main-link-grid{
    grid-template-columns:1fr;
  }

  .about-notice-section .main-link-box{
    min-height:240px;
    padding:44px 20px;
  }
}
/* GNB hover: orange text + single paw icon */
.nav-item > a{
  position:relative;
  transition:color .2s ease;
}

.nav-item > a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:8px;

  width:18px;
  height:18px;

  transform:translateX(-50%) translateY(4px);

  background-image:url("https://cdn-icons-png.flaticon.com/512/1076/1076928.png");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;

  opacity:0;
  transition:.2s ease;
  pointer-events:none;

  filter:
    brightness(0)
    saturate(100%)
    invert(72%)
    sepia(77%)
    saturate(690%)
    hue-rotate(334deg)
    brightness(101%)
    contrast(92%);
}

.nav-item:hover > a{
  color:#f4ab45;
}

.nav-item:hover > a::after{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.guide-sub-nav-wrap{
  scroll-margin-top:76px;
}

@media (min-width: 900px){
  .guide-sub-nav-wrap{
    min-height:78px;
    padding:14px 0;
  }

  .guide-sub-nav{
    min-height:78px;
    gap:42px;
  }

  .guide-sub-btn{
    height:54px;
    padding:0 26px;
    font-size:17px;
    border-radius:999px;
  }
}

.qna-board-head,
#qnaBoard .board-row{
  grid-template-columns:80px 1fr 140px 150px;
}

.qna-pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:28px;
}

.qna-page-btn{
  width:40px;
  height:40px;
  border-radius:999px;
  background:#f3eadf;
  color:#333;
  font-weight:900;
}

.qna-page-btn.active{
  background:#f4ab45;
  color:#fff;
}

.qna-search{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:24px;
  flex-wrap:wrap;
}

.qna-search select,
.qna-search input{
  height:46px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:0 16px;
  background:#fff;
}

.qna-search input{
  width:min(320px,100%);
}

@media(max-width:768px){
  .qna-board-head{
    display:none;
  }

  #qnaBoard .board-row{
    grid-template-columns:1fr;
    gap:6px;
  }

  .qna-search{
    justify-content:stretch;
  }

  .qna-search select,
  .qna-search input,
  .qna-search button{
    width:100%;
  }
}

.qna-status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  height:28px;
  padding:0 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  line-height:1;
  margin-left:10px;
}

/* 답변대기 */
.qna-status.pending{
  background:#f4ead9;
  color:#9a5f2e;
}

/* 답변완료 */
.qna-status.done{
  background:#f4ab45;
  color:#fff;
}

@media (max-width:900px){

  .nav-item > a::after{
    position:static !important;
    left:auto !important;
    bottom:auto !important;
    transform:none !important;
    width:16px;
    height:16px;
    margin-left:6px;
  }

  .nav-item:hover > a::after{
    transform:none !important;
  }

}

/* Apply page tab sections */
.apply-section {
  display: none;
}

.apply-section.active {
  display: block;
}

/* Apply sub navigation */
.apply-sub-nav-wrap {
  position: static !important;
  top: auto !important;
  z-index: 20;
  padding: 0 !important;
  background: #f4ead9;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  scroll-margin-top: 76px;
}

.apply-sub-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: 52px;
  margin: 0 !important;
  padding: 0;
  flex-wrap: nowrap;
}

.apply-sub-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #111 !important;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  transition: color 0.2s ease;
  cursor: pointer;
}

.apply-sub-btn:hover,
.apply-sub-btn.active {
  background: transparent !important;
  color: var(--orange) !important;
}

/* Apply page hero visual */
.page-hero.hero-apply {
  background:
    url("https://ecimg.cafe24img.com/pg2720b82469806068/blueys31/pet/apply.png")
    center center / cover no-repeat;
}

.page-hero.hero-apply h2 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.page-hero.hero-apply p {
  color: rgba(255, 255, 255, 0.92);
}

/* Apply content spacing */
.apply-section .sub-block {
  padding-top: 72px;
}

@media (min-width: 900px) {
  .apply-sub-nav-wrap {
    min-height: 78px;
    padding: 14px 0;
  }

  .apply-sub-nav {
    min-height: 78px;
    gap: 42px;
  }

  .apply-sub-btn {
    height: 54px;
    padding: 0 26px;
    font-size: 17px;
    border-radius: 999px;
  }
}

@media (max-width: 900px) {
  .apply-sub-nav {
    justify-content: center !important;
    gap: 22px;
    overflow-x: auto;
    min-height: 50px;
    padding: 0 20px;
  }

  .apply-sub-nav::-webkit-scrollbar {
    display: none;
  }

  .apply-sub-btn {
    flex: 0 0 auto;
    min-height: 50px;
  }
}

.program-card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:52px;
}

.program-card{
  display:flex;
  flex-direction:column;

  overflow:hidden;
  border-radius:24px;

  background:#fff;
  border:1px solid var(--line);

  box-shadow:var(--shadow);

  transition:.25s ease;
}

.program-card:hover{
  transform:translateY(-6px);
}

.program-card-image{
  aspect-ratio:4 / 3;
  overflow:hidden;
}

.program-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.35s ease;
}

.program-card:hover .program-card-image img{
  transform:scale(1.05);
}

.program-card-body{
  display:flex;
  flex-direction:column;
  flex:1;

  padding:28px;
  text-align:left;
}

.program-card-body h4{
  margin:0 0 14px;

  font-size:21px;
  font-weight:900;
  letter-spacing:-0.05em;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.program-desc{
  margin:0 0 24px;

  color:var(--sub);
  line-height:1.7;
}

.program-meta{
  display:grid;
  gap:14px;

  margin-top:auto;
  padding-top:20px;

  border-top:1px solid var(--line);
}

.program-meta div{
  display:flex;
  justify-content:space-between;
  gap:16px;
}

.program-meta strong{
  font-size:15px;
  font-weight:900;
}

.program-meta span{
  color:var(--sub);
  font-size:15px;
}

.program-apply-btn{
  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;
  height:52px;

  margin-top:24px;

  border-radius:14px;

  background:#f4ab45;
  color:#111;

  font-size:16px;
  font-weight:900;

  transition:.2s ease;
}

.program-apply-btn:hover{
  transform:translateY(-2px);
  background:#f19d27;
}

@media(max-width:900px){

  .program-card-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .program-card-body{
    padding:22px;
  }

  .program-card-body h4{
    font-size:20px;
  }

}

.lecture-head{
  text-align:center;
  margin-bottom:52px;
}

.lecture-list{
  display:grid;
  gap:32px;
}

.lecture-card{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:34px;
  align-items:center;

  position:relative;

  padding:34px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.lecture-profile{
  overflow:hidden;
  border-radius:22px;
  background:#f4ead9;
}

.lecture-profile img{
  width:100%;
  aspect-ratio:4 / 5;
  object-fit:cover;
}

.lecture-info h4{
  margin:0 0 24px;
  font-family:"Paperlogy","Pretendard",sans-serif;
  font-size:clamp(24px,3vw,34px);
  font-weight:900;
  letter-spacing:-0.05em;
}

.lecture-info dl{
  display:grid;
  gap:14px;
  margin:0;
}

.lecture-info dl div{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:16px;
}

.lecture-info dt{
  font-weight:900;
  color:#9a5f2e;
}

.lecture-info dd{
  margin:0;
  color:#444;
  font-weight:600;
  line-height:1.7;
}

.lecture-apply-btn{
  grid-column:1 / -1;

  display:flex;
  align-items:center;
  justify-content:center;

  width:220px;
  height:54px;

  margin:4px auto 0;

  margin-top:4px;
  border-radius:16px;

  background:#f4ab45;
  color:#111;

  font-size:17px;
  font-weight:900;

  transition:.2s ease;
}

.lecture-apply-btn:hover{
  transform:translateY(-2px);
  background:#f19d27;
}

.lecture-notice{
  margin:34px 0 0;
  padding:20px 24px;
  border-radius:18px;
  background:#f4ead9;
  color:#603d27;
  font-size:16px;
  font-weight:800;
  text-align:center;
}

@media(max-width:768px){
  .lecture-card{
    grid-template-columns:1fr;
    gap:24px;
    padding:24px;
  }

  .lecture-info dl div{
    grid-template-columns:1fr;
    gap:4px;
  }

  .lecture-profile img{
    aspect-ratio:4 / 3;
  }
}

@media (min-width: 1200px){

  .lecture-list{
    max-width:1000px;
    margin:0 auto;
  }

}

/* 행사 개요 */
.overview-concept{
  margin-bottom:90px;
}

.overview-kicker{
  margin:0 0 10px;
  color:#f4ab45;
  font-size:14px;
  font-weight:900;
  letter-spacing:.18em;
}

.overview-concept-text{
  margin:18px 0 0;
  font-size:22px;
  font-weight:700;
  color:#444;
}

.overview-logo-image{
  width:min(320px, 100%);
  margin:28px auto 34px;
}

.overview-logo-image img{
  width:100%;
  object-fit:contain;
}

.overview-info-wrap{
  width:100%;
  max-width:860px;

  margin:20px auto 0;

  padding:56px;

  border-radius:32px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);

  text-align:left;
}

.overview-info-head{
  margin-bottom:42px;
  text-align:center;
}

.overview-info-list{
  display:grid;
  gap:24px;
}

.overview-info-item{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:24px;
  padding-bottom:24px;
  border-bottom:1px solid #ececec;
}

.overview-info-item:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.overview-info-item strong{
  font-size:17px;
  font-weight:900;
  color:#111;
}

.overview-info-item span{
  color:#555;
  line-height:1.9;
  font-weight:600;
}

.overview-poster{
  width:100%;
  max-width:860px;

  margin:72px auto 0;
}

.overview-poster-head{
  margin-top:72px;
  margin-bottom:28px;
  text-align:center;
}

.overview-poster img{
  width:100%;
  border-radius:28px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

@media(max-width:768px){

  .overview-info-wrap{
    padding:32px 24px;
  }

  .overview-info-item{
    grid-template-columns:1fr;
    gap:8px;
  }

  .overview-concept{
    margin-bottom:64px;
  }

  .overview-concept-text{
    font-size:18px;
    line-height:1.6;
  }

}

.booth-guide-box{
  margin-top:40px;
  padding:36px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  text-align:left;
}

.booth-guide-box h4{
  margin:0 0 24px;
  font-family:"Paperlogy","Pretendard",sans-serif;
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.04em;
}

.booth-guide-list{
  display:grid;
  gap:18px;

  margin:0;
  padding:0;
  list-style:none;
}

.booth-guide-list li{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:20px;

  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.booth-guide-list li:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.booth-guide-list strong{
  color:#9a5f2e;
  font-size:16px;
  font-weight:900;
}

.booth-guide-list span{
  color:#444;
  line-height:1.8;
  font-weight:600;
}

#booth .program-apply-btn{
  width:260px;
  margin:40px auto 0;
}

@media(max-width:768px){

  .booth-guide-box{
    padding:26px 22px;
  }

  .booth-guide-box h4{
    font-size:24px;
  }

  .booth-guide-list li{
    grid-template-columns:1fr;
    gap:6px;
  }

  #booth .program-apply-btn{
    width:100%;
  }

}