@charset "UTF-8";
.main-container {
  margin-top: 2.5625rem;
}
@media (max-width: 900px) {
  .main-container {
    margin-top: 2rem;
  }
}

.banner {
  position: relative;
  height: 29.25rem;
}
@media (max-width: 900px) {
  .banner {
    padding: 50px 0;
    height: auto;
  }
}
.banner__background {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../images/building-image.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  border-radius: 0.75rem;
}
@media (max-width: 900px) {
  .banner__background {
    border-radius: 0.5rem;
  }
}
.banner__mask-group {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
}
@media (max-width: 900px) {
  .banner__mask-group {
    border-radius: 0.5rem;
  }
}
.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 54.375rem;
  height: 100%;
  margin: 0 auto;
  gap: 0.625rem;
  position: relative;
  z-index: 10;
  padding: 0 1.25rem;
}
@media (max-width: 900px) {
  .banner__content {
    padding: 0 1rem;
    gap: 0.5rem;
  }
}
.banner__content h1 {
  margin-bottom: 1.5rem;
  display: block;
  text-align: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  word-break: keep-all;
}
@media (max-width: 900px) {
  .banner__content h1 {
    margin-bottom: 1rem;
    line-height: 1.5;
  }
}
.banner__content h1 span {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .banner__content h1 span {
    font-size: 1.25rem;
    letter-spacing: 0.5px;
  }
}
.banner__content p {
  color: #ffffff;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 900px) {
  .banner__content p {
    font-size: 0.875rem;
    text-align: center;
  }
}
.banner__search-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
@media (max-width: 900px) {
  .banner__search-container {
    margin: 1rem 0 0;
    width: 100%;
  }
}
.banner .banner__description {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  line-height: 1;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .banner .banner__description {
    font-size: 0.875rem;
    margin-top: 0.375rem;
  }
}
.banner .banner__description span {
  display: inline-block;
  margin: 0 3px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 900px) {
  .banner .banner__description span {
    font-size: 1rem;
    margin: 0 0.125rem;
  }
}

.search-tabs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 900px) {
  .search-tabs {
    gap: 0.75rem;
  }
}
.search-tabs__tab {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 11.25rem;
  height: 3.875rem;
  padding: 0.5rem 2rem;
  border: 0.0625rem solid #ffffff;
  border-radius: 3.125rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 1.1875rem;
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  .search-tabs__tab {
    width: 8.75rem;
    height: 3.125rem;
    font-size: 1rem;
    padding: 0.375rem 1.25rem;
  }
}
.search-tabs__tab:hover {
  background-color: rgba(60, 121, 194, 0.8);
  transform: translateY(-0.125rem);
}
.search-tabs__tab--active {
  background-color: #3c79c2;
}
.search-tabs__tab--active .search-tabs__indicator {
  opacity: 1;
}
.search-tabs__indicator {
  position: absolute;
  top: 0.5625rem;
  right: 2.375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #ffac21;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (max-width: 900px) {
  .search-tabs__indicator {
    width: 0.3125rem;
    height: 0.3125rem;
    top: 0.375rem;
    right: 0.375rem;
  }
}
.search-tabs__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  width: 100%;
  height: 2.3125rem;
}
@media (max-width: 900px) {
  .search-tabs__content {
    height: 1.875rem;
    gap: 0.5rem;
  }
}
.search-tabs__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .search-tabs__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.search-tabs__text {
  white-space: nowrap;
}

.search-input {
  width: 100%;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .search-input {
    width: 100%;
  }
}
.search-input__form {
  width: 100%;
}
.search-input__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid #58616a;
  border-radius: 0.625rem;
  gap: 1rem;
  min-height: 4.5rem;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .search-input__container {
    padding: 0 1rem;
    min-height: 3.75rem;
    gap: 0.75rem;
  }
}
@media (max-width: 900px) {
  .search-input__container {
    padding: 0 12px;
    gap: 8px;
    min-height: 48px;
  }
}
.search-input__field {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
  min-width: 0;
}
@media (max-width: 900px) {
  .search-input__field {
    font-size: 1.125rem;
  }
}
@media (max-width: 900px) {
  .search-input__field {
    font-size: 16px;
    font-weight: 500;
  }
}
.search-input__field::placeholder {
  color: #8a949e;
}
.search-input__field:focus {
  outline: none;
}
.search-input__button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .search-input__button {
    width: 2.25rem;
    height: 2.25rem;
  }
}
@media (max-width: 900px) {
  .search-input__button {
    width: 32px;
    height: 32px;
  }
}
.search-input__button:hover {
  background-color: rgba(60, 121, 194, 0.1);
}
.search-input__button:focus {
  outline: 0.125rem solid #3c79c2;
  outline-offset: 0.125rem;
}
.search-input__button img,
.search-input__button svg {
  width: 100%;
  height: 100%;
}

.notice-section {
  width: 100%;
  padding: 3.75rem 0;
  padding-bottom: 0;
}
.notice-section .notice-section__list-container {
  overflow: hidden;
}
@media (max-width: 900px) {
  .notice-section {
    padding: 2rem 0;
    padding-bottom: 0;
  }
}
.notice-section__content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .notice-section__content {
    flex-direction: column;
    gap: 1rem;
  }
}
.notice-section__left {
  flex: 1;
  min-width: 43.0625rem;
  max-width: 43.0625rem;
}
@media (max-width: 900px) {
  .notice-section__left {
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
.notice-section__right {
  flex: 1;
  border-radius: 0.75rem;
}
@media (max-width: 900px) {
  .notice-section__right {
    max-width: 100%;
    width: 100%;
  }
}
.notice-section__right .quick-links {
  border-radius: 12px;
  background: #f3f3f3;
}
.notice-section__header {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.notice-section__titles {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
}
.notice-section__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 900px) {
  .notice-section__title {
    font-size: 1.5rem;
  }
}
.notice-section__title--notice {
  position: relative;
}
.notice-section__title--notice .notice-section__indicator {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: transparent;
  border-radius: 50%;
  margin-left: 0.25rem;
}
.notice-section__more-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: #333;
  transition: opacity 0.2s ease;
}
.notice-section__more-btn:hover {
  opacity: 0.8;
}
.notice-section__more-btn:focus {
  outline: 0.125rem solid #3c79c2;
  outline-offset: 0.125rem;
}
.notice-section__more-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.notice-section__controls {
  margin-bottom: 1rem;
}
.notice-section__filter {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.notice-section__nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.notice-section__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 0.96875rem;
}
.notice-section__list-container .notice-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 0.96875rem;
  overflow: hidden;
  max-height: 18.75rem;
  min-height: 18.75rem;
}
.notice-section__list-container .notice-list .notice-item {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
  min-height: 3.75rem;
}
.notice-section__list-container .notice-list .notice-item.hidden {
  display: none;
}
.notice-section__list-container .notice-list .notice-item.fade-out {
  opacity: 0;
  transform: translateY(-10px);
}
.notice-section__list-container .notice-list .notice-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.notice-section__list-container .notice-list .notice-empty {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 15rem;
  padding: 2.5rem 1.25rem;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #ecf2fe;
}
.notice-section__list-container .notice-list .notice-empty p {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #6b7280;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 900px) {
  .notice-section__list-container .notice-list .notice-empty p {
    font-size: 0.9375rem;
  }
}

.notice-item {
  padding: 0 1.5rem;
  height: 3.75rem;
  border: 1px solid #c3c9c9;
  border-radius: 0.75rem;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  transition: all 0.2s ease;
}
@media (max-width: 900px) {
  .notice-item {
    height: auto;
    min-height: 5rem;
    padding: 1rem 1.25rem;
  }
}
.notice-item:hover {
  border-color: #3c79c2;
}
.notice-item:hover .notice-item__title {
  font-weight: 700;
  color: #191a1a;
}
.notice-item__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 0.75rem;
}
@media (max-width: 900px) {
  .notice-item__content {
    align-items: center;
    gap: 0.5rem;
  }
}
.notice-item__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8125rem;
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .notice-item__info {
    align-items: center;
    gap: 0.25rem;
    width: 100%;
  }
}
.notice-item__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  height: 2rem;
  min-width: auto;
  padding: 0 1rem;
  border-radius: 2rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
}
.notice-item__tag--000000 {
  background: #008f37;
}
.notice-item__tag--128121 {
  background: #F2CC3D;
}
.notice-item__tag--128005 {
  background: #4ade80;
}
.notice-item__tag--128058 {
  background: #7fa7d7;
}
.notice-item__tag--128115 {
  background: #a3cf62;
}
.notice-item__tag--128047 {
  background: #a855f7;
}
.notice-item__tag--128099 {
  background: #ef6601;
}
.notice-item__tag--128104 {
  background: #ffacc1;
}
.notice-item__tag--128108 {
  background: #06b6d4;
}
.notice-item__tag--128109 {
  background: #f59e0b;
}
.notice-item__tag--128038 {
  background: #10b981;
}
.notice-item__tag--128011 {
  background: #8b5cf6;
}
.notice-item__tag--128100 {
  background: #f97316;
}
.notice-item__tag--128086 {
  background: #ec4899;
}
.notice-item__tag--728143 {
  background: #14b8a6;
}
.notice-item__tag--728211 {
  background: #84cc16;
}
.notice-item__tag--128082 {
  background: #6366f1;
}
.notice-item__tag--728210 {
  background: #d946ef;
}
.notice-item__tag--728220 {
  background: #189ba7;
}
.notice-item__tag--728222 {
  background: #7b19d7;
}
.notice-item__tag--912345 {
  background: #22d3ee;
}
.notice-item__tag--912346 {
  background: #fb7185;
}
.notice-item__tag--912347 {
  background: #34d399;
}
.notice-item__tag--912348 {
  background: #fbbf24;
}
.notice-item__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .notice-item__title {
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.notice-item__title:hover {
  font-weight: 700;
}
.notice-item__date {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .notice-item__date {
    font-size: 0.875rem;
  }
}

.quick-links {
  padding: 1rem;
  box-sizing: border-box;
}
.quick-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .quick-links__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}

.quick-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 9.5rem;
  background: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
@media (max-width: 900px) {
  .quick-link {
    height: 7.5rem;
    padding: 0.75rem;
  }
}
.quick-link:hover {
  background: #f9f9f9;
  border-color: #c0c0c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: #6494ce;
}
.quick-link:hover .quick-link__text {
  color: #3c79c2 !important;
}
.quick-link__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  width: 4.1875rem;
  height: 3.125rem;
  margin-bottom: 1.125rem;
}
@media (max-width: 900px) {
  .quick-link__icon {
    width: 2.5rem;
    height: 1.875rem;
    margin-bottom: 0.625rem;
  }
}
.quick-link__icon svg {
  width: 100%;
  height: 100%;
}
.quick-link__text {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.1875rem;
  font-weight: 600;
  text-align: center;
  color: #7d8181;
}
@media (max-width: 900px) {
  .quick-link__text {
    font-size: 0.875rem;
    line-height: 1.3;
  }
}

.event-section {
  width: 100%;
  padding: 3.75rem 0;
  padding-bottom: 0;
  background-image: url("../images/bg-event-section.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 900px) {
  .event-section {
    padding: 2rem 0;
    padding-bottom: 0;
  }
}
.event-section .container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .event-section .container {
    flex-direction: column;
    gap: 1rem;
  }
}
.event-section .event-section__left {
  flex: 1;
  max-width: 52.875rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left {
    max-width: 100%;
  }
}
.event-section .event-section__left .event-section__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-section__header {
    gap: 1rem;
  }
}
.event-section .event-section__left .event-section__filter {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-section__filter {
    gap: 1rem;
  }
}
.event-section .event-section__left .event-section__nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.25rem;
  align-items: center;
}
.event-section .event-section__left .event-section__content {
  margin-top: 1.5rem;
}
.event-section .event-section__left .event-section__list-container .event-list .event-card,
.event-section .event-section__left .event-section__list-container .program-list .event-card,
.event-section .event-section__left .event-section__list-container .movie-list .event-card {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.event-section .event-section__left .event-section__list-container .event-list .event-card.hidden,
.event-section .event-section__left .event-section__list-container .program-list .event-card.hidden,
.event-section .event-section__left .event-section__list-container .movie-list .event-card.hidden {
  display: none;
}
.event-section .event-section__left .event-section__list-container .event-list .event-card.fade-in,
.event-section .event-section__left .event-section__list-container .program-list .event-card.fade-in,
.event-section .event-section__left .event-section__list-container .movie-list .event-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.event-section .event-section__left .event-section__list-container .event-list .event-empty,
.event-section .event-section__left .event-section__list-container .program-list .event-empty,
.event-section .event-section__left .event-section__list-container .movie-list .event-empty {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  min-height: 15rem;
  padding: 2.5rem 1.25rem;
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #9da2a2;
}
.event-section .event-section__left .event-section__list-container .event-list .event-empty p,
.event-section .event-section__left .event-section__list-container .program-list .event-empty p,
.event-section .event-section__left .event-section__list-container .movie-list .event-empty p {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #6b7280;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-section__list-container .event-list .event-empty p,
  .event-section .event-section__left .event-section__list-container .program-list .event-empty p,
  .event-section .event-section__left .event-section__list-container .movie-list .event-empty p {
    font-size: 0.9375rem;
  }
}
.event-section .event-section__left .event-cards {
  list-style: none;
  padding: 0;
  margin: 0;
}
.event-section .event-section__left .event-card {
  margin-bottom: 1.125rem;
}
.event-section .event-section__left .event-card__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  border: 0.125rem solid transparent;
  background: #ffffff;
  padding: 1.28125rem;
  gap: 0.75rem;
  transition: all 0.2s ease;
  position: relative;
  border: 1px solid var(--color-gray-gray03, #9da2a2);
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__link {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
}
.event-section .event-section__left .event-card__link:hover {
  border-color: #6494ce;
}
.event-section .event-section__left .event-card__tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  color: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  height: 2rem;
  padding: 0 0.75rem;
  border-radius: 2rem;
  flex-shrink: 0;
  min-width: 5.25rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__tag {
    align-self: flex-start;
  }
}
.event-section .event-section__left .event-card__tag--000000 {
  background: #008f37;
}
.event-section .event-section__left .event-card__tag--128121 {
  background: #F2CC3D;
}
.event-section .event-section__left .event-card__tag--128005 {
  background: #4ade80;
}
.event-section .event-section__left .event-card__tag--128058 {
  background: #7fa7d7;
}
.event-section .event-section__left .event-card__tag--128115 {
  background: #a3cf62;
}
.event-section .event-section__left .event-card__tag--128047 {
  background: #a855f7;
}
.event-section .event-section__left .event-card__tag--128099 {
  background: #ef6601;
}
.event-section .event-section__left .event-card__tag--128104 {
  background: #ffacc1;
}
.event-section .event-section__left .event-card__tag--128108 {
  background: #06b6d4;
}
.event-section .event-section__left .event-card__tag--128109 {
  background: #f59e0b;
}
.event-section .event-section__left .event-card__tag--128038 {
  background: #10b981;
}
.event-section .event-section__left .event-card__tag--128011 {
  background: #8b5cf6;
}
.event-section .event-section__left .event-card__tag--128100 {
  background: #f97316;
}
.event-section .event-section__left .event-card__tag--128086 {
  background: #ec4899;
}
.event-section .event-section__left .event-card__tag--728143 {
  background: #14b8a6;
}
.event-section .event-section__left .event-card__tag--728211 {
  background: #84cc16;
}
.event-section .event-section__left .event-card__tag--128082 {
  background: #6366f1;
}
.event-section .event-section__left .event-card__tag--728210 {
  background: #d946ef;
}
.event-section .event-section__left .event-card__tag--728220 {
  background: #189ba7;
}
.event-section .event-section__left .event-card__tag--728222 {
  background: #7b19d7;
}
.event-section .event-section__left .event-card__tag--912345 {
  background: #22d3ee;
}
.event-section .event-section__left .event-card__tag--912346 {
  background: #fb7185;
}
.event-section .event-section__left .event-card__tag--912347 {
  background: #34d399;
}
.event-section .event-section__left .event-card__tag--912348 {
  background: #fbbf24;
}
.event-section .event-section__left .event-card__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
.event-section .event-section__left .event-card__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__title {
    font-size: 1rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: initial;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    min-height: 45px;
  }
}
.event-section .event-section__left .event-card__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 4.5625rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__info {
    flex-direction: column;
    gap: 1rem;
  }
}
.event-section .event-section__left .event-card__info-left, .event-section .event-section__left .event-card__info-right {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.event-section .event-section__left .event-card__info-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.3125rem;
  align-items: center;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__info-item {
    flex-wrap: wrap;
  }
}
.event-section .event-section__left .event-card__label {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  flex-shrink: 0;
  min-width: 4.25rem;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__label {
    font-size: 0.9375rem;
    min-width: 3.75rem;
  }
}
.event-section .event-section__left .event-card__value {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: #4b4d4d;
  flex: 1;
}
@media (max-width: 900px) {
  .event-section .event-section__left .event-card__value {
    font-size: 0.9375rem;
  }
}
.event-section .event-section__left .event-card__highlight {
  font-weight: 700;
  color: #fcc975;
}
.event-section .event-section__right {
  flex: 1;
  max-width: 25.625rem;
}
@media (max-width: 900px) {
  .event-section .event-section__right {
    max-width: 100%;
  }
}
.event-section .event-section__right .new-content-shortcuts__title {
  font-size: 2rem;
  font-weight: 700;
  color: #191a1a;
  margin-bottom: 28px;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-shortcuts__title {
    font-size: 1.5rem;
  }
}
.event-section .event-section__right .new-content-shortcuts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.event-section .event-section__right .new-content-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  padding: 1.25rem;
  border-radius: 1rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  height: 10.25rem;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-item {
    height: 7.5rem;
    padding: 1rem;
  }
}
.event-section .event-section__right .new-content-item:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.event-section .event-section__right .new-content-item__image {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  width: 10.25rem;
  height: 10.25rem;
  flex-shrink: 0;
  margin-right: 1rem;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-item__image {
    width: 5rem;
    height: 5rem;
    margin-right: 0.75rem;
  }
}
.event-section .event-section__right .new-content-item__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.event-section .event-section__right .new-content-item__content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.event-section .event-section__right .new-content-item__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  color: #191a1a;
  padding-right: 0rem !important;
}
.event-section .event-section__right .new-content-item__title span {
  color: #f98512;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-item__title {
    font-size: 1.25rem;
  }
}
.event-section .event-section__right .new-content-item__arrow {
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background: #ffffff;
  border-radius: 50%;
  color: #ffffff;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-item__arrow {
    width: 1.75rem;
    height: 1.75rem;
    right: 0.75rem;
  }
}
.event-section .event-section__right .new-content-item__arrow svg {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 900px) {
  .event-section .event-section__right .new-content-item__arrow svg {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.info-section {
  padding: 64px 0;
  background: #ffffff;
}
@media (max-width: 900px) {
  .info-section {
    padding: 32px 0;
  }
}
.info-section__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 2.5rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 900px) {
  .info-section__header {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (max-width: 900px) {
  .info-section__left, .info-section__right {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    align-items: center !important;
  }
}
.info-section__left, .info-section__right {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
@media (max-width: 900px) {
  .info-section__left, .info-section__right {
    align-items: flex-start;
    gap: 1rem;
  }
}
.info-section__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin: 0;
}
@media (max-width: 900px) {
  .info-section__title {
    font-size: 1.5rem;
  }
}
.info-section__title span {
  color: #3c79c2;
}
.info-section__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 2.5rem;
}
.info-section__content .info-section__map-area {
  flex: 1;
  max-width: 50%;
}
@media (max-width: 900px) {
  .info-section__content .info-section__map-area {
    max-width: 100%;
    min-height: auto;
  }
}
.info-section__content .info-section__right-area {
  max-width: 50%;
  flex: none;
  width: 50%;
}
@media (max-width: 900px) {
  .info-section__content .info-section__right-area {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .info-section__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.info-section__map-area {
  position: relative;
  flex: 1;
}
@media (max-width: 900px) {
  .info-section__map-area {
    width: 100%;
  }
}
.info-section__schedule-area {
  flex: 1;
  margin-top: 1.5rem;
  min-height: 727px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #d1d5db;
}
@media (max-width: 900px) {
  .info-section__schedule-area {
    padding: 1.25rem;
    margin-top: 1rem;
    min-height: auto;
  }
}

.library-map {
  position: relative;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0.75rem;
  padding: 2rem;
  box-sizing: border-box;
  min-height: 723px;
  display: flex;
  align-items: center;
}
@media (max-width: 900px) {
  .library-map {
    padding: 1rem;
    min-height: auto;
  }
}
.library-map__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.library-map__image {
  width: 100%;
  height: auto;
  display: block;
}
.library-map__markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.library-map__logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.library-marker {
  position: absolute;
  width: 24px;
  height: 24px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.2s ease;
}
@media (max-width: 900px) {
  .library-marker {
    width: 20px;
    height: 20px;
  }
}
.library-marker:hover {
  transform: scale(1.1);
}
.library-marker__icon {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
}
.library-marker__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  background-image: url("../../assets/images/marker-icon.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.library-marker--db .library-marker__icon {
  background-color: #063a74;
}
.library-marker--pu .library-marker__icon {
  background-color: #8e63aa;
}
.library-marker--or .library-marker__icon {
  background-color: #ef6601;
}
.library-marker--g .library-marker__icon {
  background-color: #a3cf62;
}
.library-marker--gy .library-marker__icon {
  background-color: #979a9a;
}
.library-marker.is-active {
  z-index: 100;
}

.library-popup {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 101;
  pointer-events: none;
  transform: translate(-50%, -100%);
  margin-top: -12px;
}
.library-popup__location-icon {
  position: relative;
  top: 10px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.library-popup__location-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.library-popup__info {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #18304d;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  min-width: 150px;
}
.library-popup__logo {
  width: 40px;
  height: 40px;
  background-color: white;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.library-popup__logo img {
  width: 100%;
  height: auto;
  display: block;
}
.library-popup__name {
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: white;
  white-space: nowrap;
  margin: 0;
}
@media (max-width: 900px) {
  .library-popup__info {
    min-width: 120px;
    gap: 6px;
    padding: 6px;
  }
  .library-popup__logo {
    width: 32px;
    height: 32px;
  }
  .library-popup__name {
    font-size: 13px;
  }
  .library-popup__location-icon {
    width: 32px;
    height: 46px;
  }
}

.holiday-notice {
  border-radius: 8px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .holiday-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.holiday-notice__icon {
  font-size: 16px;
  display: flex;
  align-items: center;
}
.holiday-notice__text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3396d6;
}
@media (max-width: 900px) {
  .holiday-notice__text {
    font-size: 1.25rem;
    flex: none;
  }
}
.holiday-notice__legends {
  display: flex;
  gap: 0.75rem;
  color: #000;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .holiday-notice__legends {
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
  }
}
.holiday-notice__legend {
  display: flex;
  align-items: center;
  gap: 4px;
}
.holiday-notice__dot {
  width: 16px;
  height: 16px;
  border-radius: 4px;
}
@media (max-width: 900px) {
  .holiday-notice__dot {
    width: 14px;
    height: 14px;
  }
}
.holiday-notice__dot--red {
  background: #ff5252;
}
.holiday-notice__dot--orange {
  background: #fcce82;
}
.holiday-notice__dot--gray {
  background: #e0e0e0;
}

.calendar {
  background: #ffffff;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}
.calendar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .calendar__header {
    gap: 12px;
  }
}
.calendar__selects {
  display: flex;
  gap: 4px;
  align-items: center;
}
@media (max-width: 900px) {
  .calendar__selects {
    justify-content: center;
  }
}
.calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar__weekday {
  padding: 0.5rem 0;
  border: 1px solid #e0e0e0;
  border-right: none;
  background: #f8f9fa;
  color: #191a1a;
  text-align: center;
  font-family: "Pretendard GOV";
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
  border-bottom: none;
}
@media (max-width: 900px) {
  .calendar__weekday {
    font-size: 0.875rem;
    padding: 0.375rem 0;
  }
}
.calendar__weekday:last-child {
  border-right: 1px solid #e0e0e0;
}
.calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.calendar__day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s;
  padding: 12px 0;
  border: 1px solid #e0e0e0;
  margin-left: -1px;
  margin-top: -1px;
}
@media (max-width: 900px) {
  .calendar__day {
    padding: 6px 0;
    font-size: 12px;
  }
}
.calendar__day:nth-child(7n+1) {
  margin-left: 0;
}
.calendar__day:nth-child(-n+7) {
  margin-top: 0;
}
.calendar__day--prev {
  color: #d1d5db;
}
.calendar__day--today {
  background: #3c79c2;
  color: #ffffff;
  font-weight: 600;
}
.calendar__day--holiday {
  background: #ff5252;
  color: #ffffff;
}
.calendar__day--closed {
  background: #fcce82;
  color: #000;
}
.calendar__day--open {
  background: #f8f9fa;
  color: #000;
}
.calendar__day:hover:not(.calendar__day--prev):not(.calendar__day--today):not(.calendar__day--holiday):not(.calendar__day--closed) {
  background: #f3f4f6;
}

.library-hours {
  background: #ffffff;
  padding: 20px 0;
  padding-bottom: 0;
}
.library-hours .library-hours-swiper {
  width: 100%;
  overflow: hidden;
}
.library-hours .library-hours-swiper .swiper-wrapper {
  width: 100%;
}
.library-hours .library-hours-swiper .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}
.library-hours__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .library-hours__title {
    font-size: 16px;
  }
}
.library-hours__grid {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  margin-top: 24px;
}
@media (max-width: 900px) {
  .library-hours__grid {
    flex-direction: column;
    gap: 12px;
  }
}
.library-hours__section {
  flex: 1;
  padding: 16px;
  background: #ecf2f9;
  border-radius: 8px;
  min-height: 7.375rem;
}
.library-hours__section.is-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.library-hours__section.is-empty .library-hours__section-title {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .library-hours__section {
    padding: 12px;
  }
}
.library-hours__section-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 900px) {
  .library-hours__section-title {
    font-size: 14px;
  }
}
.library-hours__floor {
  background: #3c79c2;
  color: #fff;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 100%;
  padding: 0.5rem 0.9375rem;
  border-radius: 16px;
  margin-left: auto;
}
@media (max-width: 900px) {
  .library-hours__floor {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
  }
}
.library-hours__time {
  color: #191a1a;
  font-family: "Pretendard GOV";
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .library-hours__time {
    font-size: 0.875rem;
  }
}
.library-hours__time span {
  color: #244874;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 10px;
}
@media (max-width: 900px) {
  .library-hours__time span {
    font-size: 0.875rem;
    margin-left: 5px;
  }
}
.library-hours .library-hours-wrp {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.625rem;
  width: 100%;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}
.library-hours__pagination {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}
@media (max-width: 900px) {
  .library-hours__pagination {
    justify-content: center;
  }
}
.library-hours__page-info {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 14px;
  color: #6b7280;
  border-radius: var(--radius-max, 1000px);
  border: 1px solid var(--color-border-gray-light, #cdd1d5);
  background: var(--color-surface-white, #fff);
  width: 80px;
  padding: 6px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e2124;
  font-family: "Pretendard GOV";
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 150%;
  gap: 5px;
}
@media (max-width: 900px) {
  .library-hours__page-info {
    width: 70px;
    font-size: 0.9375rem;
  }
}
.library-hours__page-info .library-hours__page-info-current {
  color: var(--color-blue-BU600, #0071ba);
  font-family: "Pretendard GOV";
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: var(--typo-font-New-group-New-group-0, 0);
}
@media (max-width: 900px) {
  .library-hours__page-info .library-hours__page-info-current {
    font-size: 0.9375rem;
  }
}
.library-hours__page-info .library-hours__page-info-total {
  color: var(--color-text-basic, #1e2124);
  font-family: "Pretendard GOV";
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 900px) {
  .library-hours__page-info .library-hours__page-info-total {
    font-size: 0.9375rem;
  }
}
.library-hours__nav {
  display: flex;
  gap: 8px;
}
.library-hours__nav-btn {
  background: none;
  border: 1px solid #d1d5db;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s;
}
@media (max-width: 900px) {
  .library-hours__nav-btn {
    width: 28px;
    height: 28px;
  }
}
.library-hours__nav-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.banner-section {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  padding: 1.5rem 0;
  border-top: 1px solid #d1d5db;
}
@media (max-width: 900px) {
  .banner-section {
    padding: 1.25rem 0;
  }
}
@media (max-width: 900px) {
  .banner-section {
    padding: 16px 0;
  }
}
.banner-section .inner .banner-section__content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25rem;
  }
}
.banner-section .inner .banner-section__content .banner-section__left {
  flex: 0 0 15%;
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content .banner-section__left {
    width: 100%;
    text-align: center;
    align-items: center;
    flex: 1;
    justify-content: center;
    display: flex;
  }
}
.banner-section .inner .banner-section__content .banner-section__right {
  flex: 1;
  max-width: 85%;
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content .banner-section__right {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content .banner-section__right {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 12px;
  }
}
.banner-section .inner .banner-section__content .banner-section__item {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content .banner-section__item {
    max-width: 300px;
    margin: 0 auto;
  }
}
.banner-section .inner .banner-section__content .banner-section__item .banner-section__link {
  display: block;
  transition: transform 0.2s ease;
  max-height: 62px;
}
.banner-section .inner .banner-section__content .banner-section__item .banner-section__link img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8px;
  border: 1px solid #c9cccc;
  max-height: 62px;
}
@media (max-width: 900px) {
  .banner-section .inner .banner-section__content .banner-section__item .banner-section__link img {
    max-height: 40px;
  }
}

/* 신규 컨텐츠 아이템 배경색 클래스들 */
.new-content-item {
  /* 기본 배경색은 기존 스타일을 유지 */
  /* 각 컨텐츠별 배경색 클래스 */
}
.new-content-item--life-library {
  background-color: #aecdff;
}
.new-content-item--school-books {
  background-color: #a5d5dc;
}
.new-content-item--infant-books {
  background-color: #ffee99;
}
.new-content-item--infant-books .new-content-item__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.new-content-item--infant-books .new-content-item__title .title-line1 {
  color: #FF8C00 !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
}
.new-content-item--infant-books .new-content-item__title .title-line2 {
  color: #191A1A !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}
.new-content-item--infant-books .new-content-item__title .title-line3 {
  color: #2251A5 !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
}
.new-content-item--attendance-event {
  background-color: #ffc4c4;
}
.new-content-item--attendance-event .new-content-item__title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.new-content-item--attendance-event .new-content-item__title .title-line3 {
  color: #2251A5 !important;
  font-size: 1.75rem !important;
  font-weight: 700 !important;
}
.new-content-item--attendance-event .new-content-item__title .title-line2 {
  color: #191A1A !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
}

.size-40x40 {
  width: 40px !important;
  height: 40px !important;
}

.calendar .ui-select__wrapper {
  position: relative;
}
.calendar .ui-select__wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url(../../assets/images/icon/arrow-drop-down.svg) no-repeat center center;
  transition: transform 0.3s ease;
}
.ui-select__element:focus ~ .calendar .ui-select__wrapper::after, .calendar .ui-select__wrapper:has(.ui-select__element:focus)::after {
  transform: translateY(-50%) rotate(180deg);
}
.calendar .calendar__selects .ui-select__element {
  font-size: 19px;
}
.calendar .calendar__selects .ui-select__arrow {
  display: none;
}

/* 신규 컨텐츠 아이템 배경색 클래스들 */
.new-content-item {
  /* 기본 배경색은 기존 스타일을 유지 */
  /* 각 컨텐츠별 배경색 클래스 */
}
.new-content-item--life-library {
  background-color: #aecdff;
}
.new-content-item--life-library::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/banner_img-01.png") no-repeat center left/contain;
  min-height: 100px;
}
.new-content-item--school-books {
  background-color: #d6c9f2;
}
.new-content-item--school-books::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/banner_img-02.png") no-repeat center left/contain;
  min-height: 100px;
}
.new-content-item--infant-books {
  background-color: #ffee99;
}
.new-content-item--infant-books::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/banner_img-03.png") no-repeat center left/contain;
  min-height: 100px;
}
.new-content-item--attendance-event {
  background-color: #b6d6f2;
}
.new-content-item--attendance-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/banner_img-04.png") no-repeat center left/contain;
  min-height: 100px;
}

/*# sourceMappingURL=home.css.map */
