@charset "utf-8";
:root {
  --main-dark-gray: #262b32;
  --main-gray: #6b7278;
  --main-light-gray: #adb6bd;
  --main-red: #e54837;
  --main-blue: #005eff;
}

.mob {
  display: none;
}
.sec_container {
  max-width: 1596px;
  width: 100%;
  margin: 0 auto;
}

/* Hero Swiper Styles */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#hero .heroSwiper {
  width: 100%;
  height: 100vh;
}

#hero .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#hero .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 41.1458vw;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(19, 22, 33, 0) 0%,
    rgba(19, 22, 33, 0.5) 15%,
    #131621 100%
  );
}

#hero .slide_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#hero .slide_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hero .slide_content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1596px;
  margin: 0 auto;
  width: 84%;
  padding-top: 24.074vh;
}
#hero .badge {
  display: inline-block;
  background: #fff;
  color: rgba(229, 72, 55, 1);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 10px;
  line-height: 1.5;
  margin-bottom: 16px;
  margin-left: 6px;
}

.badge.redtxt {
  color: var(--main-red);
}
.badge.bluetxt {
  color: var(--main-blue);
}
.badge.red {
  background: var(--main-red);
  color: #fff;
}
.badge.blue {
  background: var(--main-blue);
  color: #fff;
}

#hero .slide_title {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 16px;
  display:block;
}

#hero .slide_desc {
  font-size: 20px;
  font-weight: 800;
}

/* Slider Navigation Container */
#hero .slider-nav {
  position: absolute;
  left: calc(50% - min(42% , 806.4px));
  bottom: 108px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Swiper Navigation Arrows */
#hero .swiper-button-prev,
#hero .swiper-button-next {
  position: static;
  margin: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  transition: all 0.3s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#hero .swiper-button-prev::after,
#hero .swiper-button-next::after {
  display: none;
}

#hero .swiper-button-prev {
  background-image: url('/resources/assets/images/svg/chevron_left.svg');
}

#hero .swiper-button-next {
  background-image: url('/resources/assets/images/svg/chevron_right.svg');
}

#hero .swiper-button-prev:hover,
#hero .swiper-button-next:hover {
  opacity: 0.7;
}

/* Swiper Pagination */
#hero .swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 8px;
}

#hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.5;
  margin: 0 1px;
  transition: all 0.3s ease;
}

#hero .swiper-pagination-bullet-active {
  opacity: 1;
}

#operation .link_img_wrapper {
  display: flex;
  width: 100%;
}
#operation .link_img {
  position: relative;
  width: 320px;
  display: inline-block;
  height: 210px;
  overflow: hidden;
}
#operation .link_img:not(:last-child){
  border-right:1px solid #E9EBEF;
}
#operation .img_mask,
#operation .img_hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in;
}
#operation .img_mask {
  opacity: 1;
}
#operation .img_hover {
  opacity: 0;
}
#operation .img_mask img,
#operation .img_hover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#operation .img_mask.active {
  opacity: 1;
}
#operation .link_img:hover .img_mask.active {
  opacity: 0;
}
#operation .link_img:hover .img_hover {
  opacity: 1;
}

#now .sec_container {
  padding: 120px 0;
}
#now .sec_head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
}
#now .sec_head .tit {
  max-width: 373px;
  width: 24%;
}

#now .tab-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
#now .tab-menu ul li {
  padding: 0 0px 6px;
  line-height: 1.5;
  margin: 0 2px;
  position: relative;
  cursor: pointer;
}
#now .tab-menu ul li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  background: var(--main-red);
  opacity: 0;
  transition: 0.5s all;
}

#now .tab-menu ul li p {
  color: var(--main-light-gray);
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  margin: 0 2px;
}
#now .tab-menu ul li.active p {
  color: var(--main-dark-gray);
}
#now .tab-menu ul li.active::before {
  opacity: 1;
}

/* Webzine Board */
.webzine_board {
  display: flex;
  flex-wrap: wrap;
  gap: 160px 20px;
}
.webzine_board .board_cont .cont {
  display: block;
  position: relative;
}
.webzine_board .board_cont .cont .badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  text-transform: uppercase;
  margin-left: 0;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 8px;
  line-height: 1.5;
}
/* 4가지 타입 너비 */
.webzine_board .board_cont.verticalSmall {
  width: 303px;
  display: flex;
  align-items: flex-start;
}
.webzine_board .board_cont.verticalLarge {
  width: 465px;
}
.webzine_board .board_cont.horizonSmall {
  width: 303px;
}
.webzine_board .board_cont.horizonLarge {
  width: 465px;
}
.webzine_board .thumnail {
  overflow: hidden;
}
.webzine_board .thumnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s all;
}
.webzine_board .board_cont .cont:hover .thumnail img {
  transform: scale(1.05);
}
/* 세로형 썸네일 */
.webzine_board .board_cont.verticalSmall .thumnail {
  width: 303px;
  height: 465px;
}
.webzine_board .board_cont.verticalLarge .thumnail {
  width: 465px;
  height: 624px;
}
/* 가로형 썸네일 */
.webzine_board .board_cont.horizonSmall .thumnail {
  width: 303px;
  height: 303px;
}
.webzine_board .board_cont.horizonLarge .thumnail {
  width: 465px;
  height: 465px;
}
.webzine_board .infoarea .info_tit {
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--main-dark-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.webzine_board .infoarea .cata {
  font-size: 16px;
  line-height: 1.5;
  color: var(--main-red);
  font-weight: 700;
}
.webzine_board .infoarea .hits {
  display: flex;
  justify-content: center;
  gap: 2px;
  line-height: 1.5;
}
.webzine_board .heart {
  width: 24px;
  height: 24px;
  display:none;
}
.webzine_board .hitcount {
  font-size: 16px;
  font-weight: 700;
  display:none;
}
.webzine_board .infoarea .info_desc h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-dark-gray);
  margin-top: 8px;
  word-break: keep-all;
}
.webzine_board .infoarea .info_desc p {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-light-gray);
}

/* 더보기 버튼 */
.more_btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin: 20px 0px 0 auto;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(173, 182, 189, 1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.more_btn span {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(173, 182, 189, 1);
}
.more_btn svg {
  width: 24px;
  height: 24px;
  color: rgba(173, 182, 189, 1);
  transition: transform 0.3s ease;
}
.more_btn:hover span {
  color: var(--main-dark-gray);
}
.more_btn:hover svg {
  color: var(--main-dark-gray);
}
.more_btn.active svg {
  transform: rotate(180deg);
}

/* 추가 웹진 보드 */
.webzine_more {
  margin-top: 160px;
}

/* Notice Section */
#notice {
  background: rgba(229, 72, 55, 1);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Notice Background Text */
.notice_bg_text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.notice_bg_text span {
  position: absolute;
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 319px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}
.notice_bg_text .bg_text1 {
  top: -115px;
  left: -43px;
}
.notice_bg_text .bg_text2 {
  top: 39px;
  left: 1068px;
  /* transform: translate(-50%, -50%); */
}
.notice_bg_text .bg_text3 {
  bottom: -113px;
  left: 50%;
  transform: translateX(-50%);
}
#notice .sec_container {
  position: relative;
}
.notice_title {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.notice_tab_menu {
  margin-bottom: 42px;
}
.notice_tab_menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.notice_tab_menu ul li {
  cursor: pointer;
  padding: 0 2px 6px;
 position: relative;
}
.notice_tab_menu ul li p {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  transition: color 0.3s ease;
}

.notice_tab_menu ul li.active p {
  color: #fff;
}
.notice_tab_menu ul li:hover p {
  color: #fff;
}
.notice_tab_menu ul li::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  width: 100%;
  background:#fff;
  opacity: 0;
  transition: 0.5s all;
}
.notice_tab_menu ul li.active::before{
 opacity: 1;
}
/* Notice Slider */
.notice_slider_wrap {
  position: relative;
  padding: 0 60px;
}
.noticeSwiper {
  overflow: hidden;
}
.noticeSwiper .swiper-slide {
  width: 380px;
}

/* Notice Card */
.notice_card {
  display: flex;
  flex-direction: column;
  background: url('/resources/assets/images/main/notice_default.png') no-repeat;
  background-size: cover;
  padding: 16px 20px;
  height: 330px;
  position: relative;
  transition: background 0.3s ease;
}
.notice_card:hover {
  background-image: url('/resources/assets/images/main/notice_hover.png');
}
.card_date {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 8px;
  flex: 1;
  /* margin-bottom: 40px; */
}
.card_date .date_left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.card_date .year {
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: #020403;
}
.card_date .month {
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.5px;
  color: #020403;
}
.card_date .day {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 28px;
  letter-spacing: -0.06em;
   color: #262B32;
}
.card_content {
  /* margin-bottom: 20px; */
}
.card_title {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 150%;
  letter-spacing: -0.04em;
  vertical-align: bottom;
  color: rgba(38, 43, 50, 1);
  margin-bottom: 8px;
  word-break: keep-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card_desc {
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(107, 114, 120, 1);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card_footer {
  /* position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--main-light-gray);
}
.card_cate {
  font-size: 14px;
  font-weight: 700;
  color: var(--main-gray);
  font-family: 'SUIT';
  font-weight: 800;
  font-size: 14px;
  leading-trim: NONE;
  letter-spacing: -0.04em;
}
.share_btn {
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--main-light-gray);
  transition: color 0.3s ease;
}
.share_btn:hover {
  color: var(--main-dark-gray);
}

/* Notice Pagination (모바일 전용) */
.notice_pagination {
  display: none;
}

/* Notice Navigation */
.notice_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice_nav svg {
  width: 48px;
  height: 48px;
}
.notice_prev {
  left: 0;
}
.notice_next {
  right: 0;
}

/* Notice More Button */
.notice_more {
  margin-right: 56px;
  border-bottom-color: #fff;
}
.notice_more span {
  color: #fff;
}
.notice_more svg {
  color: #fff;
}
.notice_more:hover span {
  color: rgba(255, 255, 255, 0.7);
}
.notice_more:hover svg {
  color: rgba(255, 255, 255, 0.7);
}

/* Business Section */
#business {
  background: rgba(2, 4, 3, 1);
}

#business .business_wrapper {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

#business .business_text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

#business .business_content {
  max-width: 626px;
  width: 100%;
}

#business .business_title {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 12px;
}

#business .business_desc {
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 72px;
}

#business .business_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

#business .business_list li {
  border-top: 1px solid rgba(255, 255, 255, 1);
}

#business .business_list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 1);
}

#business .business_list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

#business .business_list li a span {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #fff;
}

#business .business_list li a svg {
  transition: transform 0.3s ease;
}

#business .business_list li a:hover svg {
  transform: translateX(5px);
}

#business .business_image {
  width: 50%;
  position: relative;
  overflow: hidden;
}

#business .business_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Archive Section */
#archive {
  background: rgba(251, 252, 253, 1);
  padding: 80px 0;
}

#archive .sec_container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.archive_title {
  font-family: 'SUIT', sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: var(--main-dark-gray);
  margin-bottom: 40px;
}

.archive_search {
  position: relative;
  width: 100%;
  max-width: 626px;
  margin-bottom: 24px;
}

.archive_input {
  width: 100%;
  padding: 13px 50px 13px 0px;
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(38, 43, 50, 1);
  background: #fff;
  border: none;
  border-bottom: 2px solid rgba(38, 43, 50, 1);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.archive_input::placeholder {
  color: rgba(38, 43, 50, 1);
}

.archive_input:focus {
  border-color: var(--main-dark-gray);
}

.archive_search_btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.archive_search_btn:hover svg circle,
.archive_search_btn:hover svg path {
  stroke: var(--main-red);
}

.archive_tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: unset;
  margin-bottom: 40px;
}

.archive_tag {
  padding: 6px 10px;
  background: rgba(38, 43, 50, 1);
  font-family: 'SUIT', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.archive_tag:hover {
  /* background: var(--main-red); */
}

.archive_links {
  display: flex;
  gap: 8px;
}

.archive_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px;
  width: 180px;
  border: 1px solid rgba(38, 43, 50, 1);
  text-decoration: none;
  transition: all 0.3s ease;
}

.archive_link span {
  font-family: 'SUIT', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: rgba(38, 43, 50, 1);
}

.archive_link:hover {
  border-color: var(--main-red);
}

.archive_link:hover span {
  color: var(--main-red);
}

.archive_link:hover svg path {
  fill: var(--main-red);
}

/* Fixed Post Content */
#fixedPostContent {
  position: fixed;
  bottom: 65px;
  right: calc(50% - min(930px, calc(50vw - 30px)));
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 12px;
}
#fixedPostContent .post_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  background: #fff;
  border-radius: 99px;
  box-shadow: 0px 2px 10px 0px #00000040;
  height: 50px;
  width: 122px;
}
#fixedPostContent .icon_mask {
  width: 42px;
  height: 42px;
  margin-right: 4px;
}
#fixedPostContent h2 {
  font-size: 16px;
  color: var(--main-red);
  line-height: 1;
}
#fixedPostContent .icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#fixedPostContent .icon img{
  width:16px;
  height:16px;
  display:block;
}
#fixedPostContent .scroll_btn {
  border-radius: 999px;
  background-color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 2px 10px 0px #00000040;
  border: none;
  cursor: pointer;
}
#fixedPostContent .scroll_btn img {
  width: 48%;
}

/* ==========================================================================
   RESPONSIVE STYLES
   해상도별로 정리: 1440px > 1024px > 768px 이하
   ========================================================================== */
   @media screen and (max-width: 1640px) {
    .sec_container{
      max-width: 95%;
    }
    #now .sec_head .tit{
      display: block;
      margin-bottom: 30px;
      width: 69.897%;
      max-width: 320px;
    }

     /* Webzine Board */
  .webzine_board {
    gap: 120px 20px;
  }
  .webzine_board .board_cont.verticalSmall,
  .webzine_board .board_cont.horizonSmall {
    width: calc(25% - 15px);
  }
  .webzine_board .board_cont.verticalLarge,
  .webzine_board .board_cont.horizonLarge {
    width: calc(25% - 15px);
  }
  .webzine_board .board_cont .thumnail {
    width: 100% !important;
    height: auto !important;
  }
  .webzine_board .board_cont.verticalSmall .thumnail{
    aspect-ratio: 1 / 1.3;

  }
  .webzine_board .board_cont.verticalLarge .thumnail {
    aspect-ratio: 1 / 1.536;
  }
  .webzine_board .board_cont.horizonSmall .thumnail,
  .webzine_board .board_cont.horizonLarge .thumnail {
    aspect-ratio: 1 / 1;
  }
  }

/* ==========================================================================
   1440px (Large Desktop)
   ========================================================================== */
@media screen and (max-width: 1440px) {
  /* Container */
  .sec_container {
    padding: 0 16px;
  }

  /* Hero */
  #hero .slide_title {
    font-size: 42px;
  }

  /* Operation */
  #operation .link_img {
    width: calc(100% / 6);
    height: 180px;
  }

  /* Now Section */
  #now .tit h2 {
    font-size: 48px;
  }

 

  /* Notice */
  .notice_bg_text span {
    font-size: 260px;
  }
  .notice_slider_wrap {
    padding: 0 50px;
  }
  .noticeSwiper .swiper-slide {
    width: 340px;
  }
  .notice_card {
    height: 300px;
  }
  .card_title {
    font-size: 26px;
  }

  /* Business */
  #business .business_text {
    padding: 60px 50px;
  }
  #business .business_title {
    font-size: 36px;
  }
  #business .business_desc {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1200px) {
      /* Operation */
  #operation .link_img_wrapper {
    flex-wrap: wrap;
  }
  #operation .link_img {
    width: 33.3%;
    flex-shrink: 0;
    padding-bottom: 33.3%;
    height: 0;
  }
  #operation .link_img > div {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}

/* ==========================================================================
   1024px (Tablet Landscape / Small Desktop)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* Container */
  .sec_container {
    max-width: 100%;
    padding: 0 16px;
  }

  /* Hero */
  #hero .slide_content {
    width: 90%;
  }
  #hero .slide_title {
    font-size: 36px;
  }
  #hero .slide_desc {
    font-size: 16px;
  }

  /* Operation
  #operation .link_img {
    width: calc(100% / 3);
    height: 160px;
  } */


  /* Now Section */
  #now .sec_container {
    padding: 80px 32px;
  }
  #now .sec_head {
    margin-bottom: 60px;
  }
  #now .tit h2 {
    font-size: 42px;
  }
  #now .tab-menu ul {
    gap: 14px;
  }

  /* Webzine Board */
  .webzine_board {
    gap: 80px 16px;
  }
  .webzine_board .board_cont.verticalSmall,
  .webzine_board .board_cont.horizonSmall,
  .webzine_board .board_cont.verticalLarge,
  .webzine_board .board_cont.horizonLarge {
    width: calc(50% - 8px);
  }
  .more_btn {
    margin-top: 60px;
  }
  .webzine_more {
    margin-top: 80px;
  }

  /* Notice */
  #notice {
    padding: 80px 0;
  }
  .notice_title {
    font-size: 42px;
    margin-bottom: 32px;
  }
  .notice_bg_text span {
    font-size: 200px;
  }
  .notice_slider_wrap {
    padding: 0 40px;
  }
  .noticeSwiper .swiper-slide {
    width: 300px;
  }
  .notice_card {
    height: 280px;
    padding: 16px;
  }
  .card_title {
    font-size: 22px;
  }
  .card_desc {
    font-size: 14px;
  }

  /* Business */
  #business .business_wrapper {
    min-height: 500px;
  }
  #business .business_text {
    padding: 50px 40px;
  }
  #business .business_title {
    font-size: 32px;
  }
  #business .business_desc {
    font-size: 14px;
    margin-bottom: 40px;
  }
  #business .business_list li a span {
    font-size: 18px;
  }

  /* Archive */
  #archive {
    padding: 70px 0;
  }
  .archive_title {
    font-size: 36px;
    margin-bottom: 32px;
  }
  .archive_search {
    max-width: 500px;
  }
}

/* ==========================================================================
   768px 이하 (Mobile / Tablet Portrait)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Hero */
  #fixedPostContent {
    display: none;
  }
  #hero .swiper-slide::before {
    display: none;
  }
  #hero .slide_content {
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-top: 0;
    padding-bottom: calc((114 / 708) * 100vh);
  }
  #hero .badge {
    width: fit-content;
  }
  #hero .slide_title {
    font-size: 28px;
  }
  #hero .slide_desc {
    font-size: 14px;
  }
  #hero .slider-nav{
    bottom: 40px;
    left: 16px;
  }



  /* Now Section */
  #now .sec_container {
    padding: 60px 0;
  }
  #now .sec_head {
    display: block;
    margin-bottom: 60px;
  }
  #now .sec_head .tit{
    margin: 0 auto;
    margin-bottom: 20px;
  }

  /* Webzine Board */
  .webzine_board {
    padding: 16px;
    gap: 40px 16px;
  }
  .webzine_board .board_cont.verticalSmall,
  .webzine_board .board_cont.horizonSmall,
  .webzine_board .board_cont.verticalLarge,
  .webzine_board .board_cont.horizonLarge {
    width: calc(50% - 8px);
  }
  /* .webzine_board .board_cont:first-child .thumnail {
    max-height: 218px;
  } */
  .webzine_board .infoarea .info_desc h3 {
    font-size: 14px;
  }
  .webzine_board .infoarea .cata {
    font-size: 14px;
  }
  .more_btn {
    margin: 20px 16px 0 auto;
  }
  .webzine_more {
    margin-top: 40px;
  }

  /* Notice */
  #notice {
    padding: 60px 0 66px;
  }
  .notice_title {
    font-size: 30px;
  }
  .notice_tab_menu {
    margin-bottom: 60px;
  }
  .notice_tab_menu ul {
    gap: 16px;
    flex-wrap: wrap;
  }
  .notice_tab_menu ul li p {
    font-size: 14px;
  }
  .notice_slider_wrap {
    padding: 0;
  }
  .noticeSwiper {
    /* width: calc(100% - 32px); */
  }
  .notice_card {
    height: 260px;
    padding: 20px;
  }
  .card_title {
    font-size: 18px;
  }
  .notice_nav {
    top: 100%;
    width: 32px;
    height: 32px;
    transform: translateY(-100%);
  }
  .notice_nav svg {
    width: 32px;
    height: 32px;
  }
  .notice_prev {
    left: 0;
  }
  .notice_next {
    right: 0;
  }
  .notice_more {
    display: none;
  }
  .notice_pagination {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    font-family: 'SUIT', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
    height: 24px;
  }
  .swiper-pagination-fraction {
  color: #FFFFFF80 !important;
 }
  .swiper-pagination-current {
    color: #fff  !important;
  }

  .notice_bg_text span {
    font-size: 173.75px;
  }
  .notice_bg_text .bg_text1 {
    top: 43.5px;
    left: -43.7px;
  }
  .notice_bg_text .bg_text2 {
    left: -30.44px;
    top: auto;
    bottom: -6.5px;
  }
  .notice_bg_text .bg_text3 {
    display: none;
  }
.card_date .year{
     font-size: 12px;
}
.card_date .day{
 font-size: 28px;
line-height: 24px;
}
  /* Business */
  .business_content:not(.mob) {
    display: none;
  }
  .business_content.mob {
    display: block;
  }
  #business .business_image {
    display: none;
    opacity: 0.5;
  }
  #business .business_text {
    position: relative;
    z-index: 1;
    padding: 0;
    width: 100%;
  }
  #business .title_area {
    padding: 60px 16px 75px;
    position: relative;
  }
  #business .title_area::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.5;
    background: url(/resources/assets/images/main/main_business_bg_img_mo.png) no-repeat center;
    background-size: cover;
  }
  #business .business_list {
    padding: 0 16px 60px;
  }
  #business .business_title {
    font-size: 28px;
  }
  #business .business_desc {
    font-family: 'SUIT';
    font-weight: 800;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: -0.04em;
    margin-bottom: 0;
  }
  #business .business_list li a {
    font-family: 'SUIT';
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -4%;
  }

  /* Archive */
  #archive {
    padding: 60px 0;
  }
  .archive_title {
    font-family: 'SUIT';
    font-weight: 800;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 30px;
  }
  .archive_search {
    max-width: 100%;
    padding: 0 20px;
    margin-bottom: 24px;
  }
  .archive_input {
    border-bottom: 2px solid rgba(38, 43, 50, 1);
    padding: 13px 34px 13px 0;
  }
  .archive_tags {
    max-width: 100%;
    padding: 0 20px;
  }
  .archive_links {
    flex-direction: column;
  }
  .archive_link {
    width: 240px;
    padding: 9px;
    font-family: 'SUIT';
  }
}
@media screen and (max-width: 375px) {
  .notice_tab_menu ul{
    gap: 12px;
  }
}
