@import "./fonts.css";
@import url("variables.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  /* 부드럽게 이동 */
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Pretendard", sans-serif;
  /* background-color: #fff; */
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
  letter-spacing: -0.32px;
  font-optical-sizing: auto;
}
ul,
li {
  list-style: none;
}
a {
  /* display: block; */
  color: #1a1a1a;
  text-decoration: none;
}
img {
  border: 0;
  vertical-align: middle;
}

section {
  width: 100%;
  /* max-width: 1440px; */
  max-width: 1440px;
  height: auto;
  margin: 0 auto;
  padding: 40px 0;
}

/* layout */
.container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------------- header start ----------------*/
/* 1. 헤더 영역 */
.header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.813);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(20px);
}
.header-container {
  width: 100%;
  max-width: 1440px;
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding: 24px 16px;
  grid-template-columns: auto 1fr auto;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo a {
  display: flex;
  gap: var(--spacing-sm);
  align-items: center;
  justify-content: center;
}
.header-container .logo a img {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
}

/* 1-1 search box */
.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s;
}
.search-box input {
  width: 100%;
  padding: 10px 10px 10px 40px;
  border: 1px solid rgb(199, 199, 199); /* 하단 선만 남기고 싶을 때 */
  background: transparent;
  font-size: 12px;
  border-radius: var(--radius-xl);
}
.search-box:has(input:focus) {
  max-width: 900px;
}
.search-box input:focus {
  width: 100%;
  border: 1px solid rgb(199, 199, 199); /* 하단 선만 남기고 싶을 때 */
  background-color: #ffffff;
  font-size: 12px;
  transition: border-color 0.3s; /* 부드러운 색상 변경 효과 */
  border-radius: var(--radius-xl);
}
.search-box input:focus-visible {
  width: 100%;
  border-color: rgb(199, 199, 199);
  outline: none;
  background-color: var(--background);
}

.search-box .search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  color: var(--muted-foreground);
  transform: translateY(-50%);
}

.search-icon i:hover {
  font-size: var(--font-size-base);
  color: var(--primary);
  cursor: pointer;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  display: none;
  padding: var(--spacing-md);
  border: 1px solid rgb(199, 199, 199);
  box-shadow: var(--shadow-md);
  z-index: 100;
  background-color: var(--background);
  border-radius: var(--radius-lg);
}
.search-box input:focus + .search-dropdown {
  display: block;
}

.search-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--muted-foreground);
}
.clear-search {
}
.recent-searches {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-md);
  padding: 16px 0;
  border-bottom: 1px solid #fcfcfc;
}
.recent-search-tag {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 4px 8px;
  box-shadow: (10, 10, 10, 0.3);
  background-color: #f6f6f6;
  border-radius: 100px;
}
.search-query {
}
.remove-btn-wrap {
}
.remove-btn {
  margin: 0;
  padding: 0;

  border: none;
  background: none;
  cursor: pointer;
  /* 기본 스타일 제거 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.remove-btn i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #eaeaea;
  font-size: 12px;
  border-radius: 1000px;
}

/* dropdown 주요행사 부분 */
.dropdown-event-container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: var(--muted-foreground);
}
.dropdown-event-card-container {
  width: 100%;
  display: flex;
  gap: 4px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.dropdown-event-title {
  width: 100%;
  border-bottom: 1px solid #c5c5c5;
}
.dropdown-event-card {
  width: calc(25% - 8px);
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.dropdown-event-card span {
  padding: 8px 0 8px 0;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--primary);
}
.dropdown-event-card a {
}
.dropdown-event-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* user-menu */
.user-menu {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.user-menu .a {
}
.user-menu .ticket {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background-color: #0078cd;
  color: #ffffff;
  border-radius: 100px;
}
.user-menu .header-login {
  font-size: 16px;
}
.user-menu .header-login:hover {
  font-weight: 500;
  cursor: pointer;
}

.user-menu .header-signup {
  font-size: 16px;
}
.user-menu .header-signup:hover {
  font-weight: 500;
  cursor: pointer;
}

/* 메뉴버튼 */
.nav {
  position: relative;
}
.menu-list {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.menu-list li {
  position: relative;
}
.menu-list li a {
  padding: 0 16px;
  color: #525252;
  text-align: center;
}
.menu-list li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  display: block;
  background-color: #1a1a1a;
  /* background-color: #0066ff; */
  transition: width 0.3s linear;
}
.menu-list li:hover a {
  font-weight: 600;
  /* color: #1a1a1a; */
  color: #0066ff;
}
.menu-list li:hover a::after {
  width: 100%;
  background-color: #0066ff;
}
/* mobile menu */
.mb-menu-wrap {
  display: none;
}

/* ---------------- body start -----------------*/
/* hero-section */
/* .bg-wrapper {
  background-image: url("../assets/images/bg-wrapper.png");
  background-size: cover;
} */

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-container {
  width: 100%;
  height: auto;
  display: flex;

  gap: 20px;
  align-items: center;
  justify-content: space-between;
  /* padding: 40px 40px; */
  flex-wrap: wrap;
}

/* 개별 메뉴 아이템 */

.mainmenu {
  position: relative;
  width: 20%;
  min-width: 0;
  height: 500px;
  flex: 1; /* 4개 메뉴 균등 분배 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  /* 핵심: 상태 변화를 부드럽게 설정 (0.3초 동안) */
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
}
.mainmenu a {
  width: 70%;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-bottom: 2px solid #000000;
  font-size: var(--font-size-base);
  font-weight: 400;
}
.mainmenu p {
  width: 70%;
  display: flex;
  justify-content: center;
  padding: 12px 0;
  border-bottom: 2px solid #000000;
  font-size: var(--font-size-base);
  font-weight: 400;
}
.hero-container #eoulcenter {
}
#eoulCenter img {
  position: absolute;
  bottom: -10px;
  left: -200px; /* 왼쪽 밀착 (약간 띄우려면 10px 등 활용) */
  width: auto;
  height: 300px;
  /* 위치 및 크기 조정의 핵심 */
  transition: transform 0.3s ease;
  object-fit: contain;
  transform-origin: center; /* 확대되는 기준점 (중앙) */
}

#academy img {
  position: absolute;
  bottom: -20px;
  left: 10px; /* 왼쪽 밀착 (약간 띄우려면 10px 등 활용) */
  width: auto;
  height: 350px;
  /* 위치 및 크기 조정의 핵심 */
  transition: transform 0.3s ease;
  object-fit: contain;
  transform-origin: center;
}

#news img {
  position: absolute;
  bottom: 30px;
  left: 10px;
  width: auto;
  height: 250px;
  /* 위치 및 크기 조정의 핵심 */
  transition: transform 0.3s ease;
  object-fit: contain;
  transform-origin: center;
}

#library img {
  position: absolute;
  bottom: -10px;
  left: -80px; /* 왼쪽 밀착 (약간 띄우려면 10px 등 활용) */
  width: auto;
  height: 250 px;
  /* 위치 및 크기 조정의 핵심 */
  transition: transform 0.3s ease;
  object-fit: contain;
  transform-origin: center;
}

.hero-container .mainmenu img:hover {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  opacity: 100%;
}

/* 마우스를 올렸을 때 (Hover) */
#eoulCenter:hover {
  /* 추가 효과: 그림자를 넣어 입체감 부여 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* 추가 효과: 색상을 살짝 밝게 변경 */
  background-color: #f5d621;
  /* 1.05배로 살짝 확대 (값은 취향에 따라 조정하세요) */
  transform: scale(1.05);
}
#academy:hover {
  /* 추가 효과: 그림자를 넣어 입체감 부여 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* 추가 효과: 색상을 살짝 밝게 변경 */
  background-color: #21a4f5;
  /* 1.05배로 살짝 확대 (값은 취향에 따라 조정하세요) */
  transform: scale(1.05);
}
#news:hover {
  /* 추가 효과: 그림자를 넣어 입체감 부여 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* 추가 효과: 색상을 살짝 밝게 변경 */
  background-color: #75c044;
  /* 1.05배로 살짝 확대 (값은 취향에 따라 조정하세요) */
  transform: scale(1.05);
}
#library:hover {
  /* 추가 효과: 그림자를 넣어 입체감 부여 */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* 추가 효과: 색상을 살짝 밝게 변경 */
  background-color: #ff2e37;
  /* 1.05배로 살짝 확대 (값은 취향에 따라 조정하세요) */
  transform: scale(1.05);
}
/* 히어로 스와이퍼 */

.hero-carousel {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: none;
  flex: 2; /* hero는 mainmenu의 2배 너비 */
  /* min-width: 200px;
  max-width: 400px;
  flex: 1; */
  overflow: hidden;
  border-radius: var(--radius-xl);
  object-fit: contain;
}
.swiper {
  position: relative;
  width: 100%;

  height: 100%;
}

.swiper-slide {
  position: relative;
  width: 100%;
  /* background: #444; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hover-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 100%;
  font-size: 24px;
  font-weight: 600;

  color: #fff;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.swiper-slide:hover .hover-text {
  width: 100%;
  background-color: #1a1a1a;
  opacity: 1;
  transform: translateY(0);
}

/* ========== introduce section =============*/
.introduce {
  position: relative;
  /* width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  background-color: #eeeeee; */
}

.intro-container {
  position: relative;
  width: 100%;
  max-width: 1440px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  /* max-width: 1280px; */
  margin: 0 auto;
  padding: 0 40px;
  overflow: visible;
}

.intro-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.intro-logo {
  position: relative;
  width: 250px;
  height: auto;
  display: flex;
  /* justify-content: center; */
  /* margin: 80px 0 30px 0; */
}
.intro-logo img {
  width: 250px;
}
.intro-container-right h3 {
  padding: 40px 0;
}
.intro-container-right span {
  width: 729px;
  height: auto;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
}

.about-eoul-img {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
}
.about-eoul-img img {
  position: relative;
  width: 150vw;
  z-index: -1;
  inset: 0;
  left: 60%;
  transform: translateX(-50%);
  object-fit: cover;
}

.eoul-band-container {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  position: relative;
}

.eoul-band-track {
  width: max-content;

  gap: 170px;
  display: flex;
  align-items: center;

  animation: bandFlow 15s linear infinite;
}

.eoul-band-track img {
  width: 100vw;
  flex-shrink: 0;

  object-fit: cover;
}

/* 반복 흐름 */
@keyframes bandFlow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ========== calender section =============* */
.calender {
}

.calender-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
}

.calender .calender-top h2 {
  font-size: 40px;
  line-height: 1;
}
.calender-bottom {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}
.calender .calender-bottom .category-wrap {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
}

.box.yellow {
  width: 16px;
  height: 16px;
  background-color: #f1c40f;
  border-radius: 4px;
}
.box.green {
  width: 16px;
  height: 16px;
  background-color: #1d9507;
  border-radius: 4px;
}
.box.blue {
  width: 16px;
  height: 16px;
  background-color: #0078cd;
  border-radius: 4px;
}

.calender .container .calender-tabs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
}
#sat {
  color: rgb(29, 119, 255);
}
#sun {
  color: #ff2e37;
}
.calender-tabs .tab-btn {
  width: 100%;
  margin: 0;
  padding: 16px 0;
  border: none;
  background: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0px;
}
.calender-tabs .tab-btn:hover {
  border-right: 0px solid #333;
  border-left: 0px solid #333;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 8px;
}

/* calender swiper */
.calender-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  gap: 0;
  overflow: visible;
}
.calender-swiper {
  position: relative;
}
.calender-swiper .swiper-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}
.calender-swiper .swiper-slide {
  position: relative;

  width: 100%;
  height: auto;
  display: flex;
}

.calender-swiper .poster-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  /* text-align: left; */
  font-size: 14px;
}

.poster-card .poster-img-box {
  position: relative;
  width: 100%;
  border: 1px solid #d5d5d5;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4; /* 포스터 표준 비율 고정 (매우 중요) */
}
.poster-img-box img {
  width: 100% !important; /* 가로를 무조건 박스에 맞춤 */
  height: 100% !important; /* 세로를 무조건 박스에 맞춤 */
  display: block;
  overflow: hidden;
  object-fit: cover; /* 비율을 유지하며 넘치는 부분은 자름 */
}

/* 호버 시 나타날 검정 배경 */
.poster-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(97, 85, 0, 0.68); /* 반투명 검정 */
  color: white;
  transition: opacity 0.3s ease;
  opacity: 0; /* 평소엔 숨김 */
}
.poster-info {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.poster-info h3 {
  padding: 8px 0;
  border-bottom: 1px solid #6f6f6f;
}
.poster-info .details {
  padding: 8px 0;
}
.poster-title {
}

.poster-img-box:hover .poster-hover {
  opacity: 1; /* 마우스 올리면 나타남 */
}

.poster-card[data-category="exhibition"] .poster-hover {
  background: rgba(97, 85, 0, 0.68); /* 반투명 검정 */
}
.poster-card[data-category="show"] .poster-hover {
  background: rgba(12, 173, 0, 0.68);
}
.poster-card[data-category="festival"] .poster-hover {
  background: rgba(0, 68, 151, 0.68);
}

/* 예매 버튼 스타일 */
.reserve-btn {
  display: block;
  margin-top: 10px;
  padding: 10px;
  background: #1a1a1a;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
}

.swiper-nav-btn {
  position: absolute;
  top: 40%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-md);
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.85);
  color: var(--foreground);
  cursor: pointer;
  transform: translateY(-50%);
  border-radius: var(--radius-full);
}
.swiper-nav-prev {
  left: -22px;
}
.swiper-nav-next {
  right: -22px;
}

/* 이전에 만든 버튼 스타일 */
.swiper-calender-next,
.swiper-calender-prev {
  position: absolute;
  top: 50%;
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);

  z-index: 10;
  background-color: #ededed;
  cursor: pointer;
  transform: translateY(-50%); /* 세로 중앙 */

  border-radius: 50%;
}

.swiper-calender-next:hover,
.swiper-calender-prev:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* 오른쪽 버튼 */
.swiper-calender-next {
  right: -36px; /* swiper 밖으로 */
}

/* 왼쪽 버튼 */
.swiper-calender-prev {
  left: -36px; /* swiper 밖으로 */
}

.swiper-calender-wrap i {
  font-size: 32px;
}

/* ========== 라스트섹션 상단 =============* */
#info-title {
  padding: 0 0 16px 0;
}

.last {
}
.last .container {
  gap: 12px;
  flex-direction: column;
  padding-top: 20px;
}
.place h2 {
  color: #fff;
}

/* place slide 부분 */
/* place slide 부분 */
.placecarousel {
  width: 100%;
  padding-bottom: 24px;
}

/* swiper */
.place-swiper {
  position: relative;
  width: 100%;
  height: auto;

  display: flex;
  margin: 0 auto;
  border: 1px solid #fff;

  overflow: hidden;
  border-radius: 16px;
}

/* wrapper */
.place-swiper .swiper-wrapper {
  width: 100%;
  height: auto;

  display: flex;
}

/* slide */
.place-swiper .swiper-slide {
  position: relative;

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

  flex-shrink: 0;
}

/* 링크 */
.place-swiper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
}

/* 이미지 */
.place-swiper .swiper-slide img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

/* 공통 버튼 */
.place-swiper .swiper-button-next,
.place-swiper .swiper-button-prev {
  position: absolute;
  top: 0;

  width: 40px;
  height: 100%;

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

  margin-top: 0;
  z-index: 10;

  background-color: rgba(0, 0, 0, 0.7);

  transition: 0.3s;
}

/* hover */
.place-swiper .swiper-button-next:hover,
.place-swiper .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

/* prev 위치 */
.place-swiper .swiper-button-prev {
  left: 0;
}

/* next 위치 */
.place-swiper .swiper-button-next {
  right: 0;
}

/* 기본 swiper 화살표 제거 */
.place-swiper .swiper-button-next::after,
.place-swiper .swiper-button-prev::after {
  display: none;
}

/* Font Awesome 아이콘 */
.place-swiper .swiper-button-next i,
.place-swiper .swiper-button-prev i {
  font-size: 24px;
  color: #fff;
}

/* ----------라스트 섹션 하단--------------- */

.information {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
/*공지사항 */
.information .notice-container {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
.notice-container .notice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.notice-container .notice-header h2 {
}
.notice-container .notice-header {
  display: flex;
  justify-content: space-between;
}
.notice-container .notice-header h2 {
}
.notice-container .notice-header .more-btn {
  display: flex;
  align-items: center;
}
.notice-container .notice-header .fa-plus {
  font-size: 20px;
}

.notice-container .notice-table {
  width: 100%;
  display: table; /* flex로 되어있다면 다시 table로 설정하거나 제거 */
  table-layout: fixed; /* 핵심: 셀 너비를 고정하여 내부 텍스트가 삐져나가지 못하게 함 */
  border-collapse: collapse;
}
.notice-table td.title {
  width: 100%; /* 부모 너비를 다 쓰도록 설정 */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.notice-table a {
  overflow: hidden; /* 넘치는 부분 숨김 */
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* 북구tv */
.bukgu-tv-container {
  display: grid;
  gap: 8px;
}

.bukgu-tv {
}
.bukgu-tv iframe {
  overflow: hidden;
  border-radius: 8px;
}

/* 바로가기 영역*/
.shortcut-container {
  display: grid;
  gap: 8px;
}
.shortcut {
  display: grid;
  /* 아이템 사이의 여백 */
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  /* 세로로 3개: 콘텐츠 높이에 맞춰 자동으로 3줄 생성 */
  grid-template-rows: repeat(2, auto);
}
.shortcut .shortcut-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.shortcut .shortcut-wrap img {
  width: 100%;
  height: 50px;
  object-fit: contain;
}
.last-background {
  position: absolute;
  right: 0;
  width: 100%;
  height: 25%;
  display: flex;

  justify-content: center;
  z-index: -1;
  background-color: #0078cd;
}
/* 푸터 */
.footer {
  width: 100%;
  padding: 40px 0;
  background-color: #292929;
}
.footer .container {
  display: grid;
  gap: 200px;
  font-size: 12px;
  color: #d7d7d7;
  grid-template-columns: auto 1fr auto;
}
.footer .logo {
  width: 100%;
  flex: 1;
}
.footer .logo a {
}
.footer .logo img {
  width: 100%;
  object-fit: cover;
}
.footer .info {
  display: flex;
  flex: 1;
  max-width: 500px;
  gap: 40px;
  justify-content: space-between;
  flex-direction: column;
  font-size: 12px;
}
.info .info-top {
}
.info .info-top span {
}
.info .info-bottom {
  display: flex;
  gap: 5px;
  justify-content: space-between;
}
.info .info-bottom a {
}
.info .info-bottom a p {
}
.info .info-bottom a span {
  color: #d7d7d7;
}
.sns-wrap {
  flex: 1;

  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.footer .sns {
  display: flex;
  gap: 8px;
  justify-content: space-between;
}
.footer .sns a {
}
.footer .sns a img {
  width: 100%;
  height: 24px;
  object-fit: contain;
}
.copyright p {
}
