@charset "utf-8";

@font-face {
  font-family: "GmarketSans";
  font-weight: 500;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansMedium.woff") format("woff");
}

@font-face {
  font-family: "GmarketSans";
  font-weight: 700;
  font-style: normal;
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2001@1.1/GmarketSansBold.woff") format("woff");
}

:root {
  --color_background: #f4f4f4;
  --color_primary: #004098;
  --color_secondary: #0073cf;
  --color_text: #111111;
  --color_text_dim: #333333;
  --color_border: #dddddd;
  --color_white: #ffffff;
  --color_header_blue: #06275e;
  --color_highlight: #17479e;
}

* {
  box-sizing: border-box;
}


.page_wrap {
  min-height: 100vh;
  overflow-x: hidden;
}

.section_inner {
  width: min(1800px, calc(100% - 240px));
  margin: 0 auto;
}

.layer_notice {
  background: var(--color_primary);
  color: var(--color_white);
  height: 60px;
}

.layer_notice.notice_hide {
  display: none;
}

.layer_notice_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  height: 100%;
}

.notice_title {
  margin: 0;
  font-family: "GmarketSans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.notice_date {
  margin: 0;
  font-family: "GmarketSans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: -0.02em;
}

.notice_date_mobile {
  display: none;
}

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

.notice_link_item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.notice_link_item svg {
  width: 16px;
  height: 16px;
}

.notice_link_item path {
  stroke-width: 1.2;
}

.notice_close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.9);
}

.notice_close svg {
  width: 100%;
  height: 100%;
}

.notice_close path {
  stroke-width: 1.2;
}

.header_main {
  position: relative;
  z-index: 80;
  height: 100px;
  background: var(--color_white);
}
.header_sub {
  border-bottom:1px solid var(--color_border);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  height: 100%;
}

.logo_link img {
  width: 120px;
  height: auto;
}

.nav_main {
  margin-left: auto;
  margin-right: auto;
}

.nav_list {
  display: flex;
  align-items: center;
  gap: 82px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav_link {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

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

.action_icon_button {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color_border);
  border-radius: 50%;
  color: #a8a8a8;
  display: grid;
  place-items: center;
}

.action_icon_button svg {
  width: 24px;
  height: 24px;
}

.action_icon_button path {
  stroke-width: 1.5;
}

.menu_toggle {
  display: none;
  width: 27px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.menu_toggle span {
  width: 100%;
  height: 2px;
  background: #1b2c5d;
  border-radius: 2px;
}

.header_search_layer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 70;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease, visibility 0.26s ease;
  border-bottom:1px solid var(--color_border);
}

.header_main.is_search_open .header_search_layer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header_search_form {
  position: relative;
  width: min(760px, 100%);
  margin: 0 auto;
}

.header_search_blind {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}

.header_search_input {
  width: 100%;
  height: 60px;
  padding: 0 76px 0 30px;
  border: 1px solid #ddd;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;outline: none;
}

.header_search_input::placeholder {
  color: #9ea8bb;
  font-weight: 400;
}

/* .header_search_input:focus-visible {
  outline: none;
  border-color: #004098;
  box-shadow: 0 0 0 4px rgba(0, 64, 152, 0.12), 0 8px 20px rgba(6, 39, 94, 0.1);
} */

.header_search_submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #004098;
  color: #ffffff;
  display: grid;
  place-items: center;
  transition: background-color 0.2s ease;
}

.header_search_submit svg {
  width: 22px;
  height: 22px;
}

.header_search_submit path {
  stroke-width: 1.8;
}

.header_search_submit:hover,
.header_search_submit:focus-visible {
  background: #0b4db2;
}

.header_search_toggle {
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

/* .header_main.is_search_open .header_search_toggle {
  border-color: rgba(0, 64, 152, 0.36);
  color: #004098;
  background: rgba(0, 64, 152, 0.05);
} */

@media (max-width: 1279px) {
  .header_search_layer {
    padding: 12px 0 16px;
  }

  .header_search_input {
    height: 56px;
    padding: 0 70px 0 24px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .header_search_layer {
    padding: 10px 0 14px;
    transform: translateY(-10px);
  }

  .header_search_input {
    height: 52px;
    padding: 0 58px 0 20px;
    font-size: 16px;
  }

  .header_search_submit {
    right: 7px;
    width: 38px;
    height: 38px;
  }

  .header_search_submit svg {
    width: 20px;
    height: 20px;
  }
}

.section_visual {
  padding-top: 0;
}

.visual_slide {
  position: relative;
  border-radius: 80px;
}

.visual_slide_item {
  position: relative;
  height: 420px;
  padding: 80px 120px;
  border-radius: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.visual_slide_background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.visual_slide_link {
  position: absolute;
  inset: 0;
  display: block;
}

.visual_slide_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual_bg_01 {
  background: url("../images/mainvisual.png") center center no-repeat;
}

.visual_bg_02 {
  background: url("../images/mainvisual.png") center center no-repeat;
  filter: saturate(1.15) brightness(0.92);
}

.visual_bg_03 {
  background: url("../images/mainvisual.png") center center no-repeat;
  filter: hue-rotate(-10deg) saturate(1.25);
}

.visual_slide_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(103deg, rgba(0, 29, 114, 0.95) 4.46%, rgba(0, 29, 114, 0.2) 78.5%);
}

.visual_text_group {
  position: relative;
  z-index: 2;
  max-width: 840px;
  color: var(--color_white);
}

.visual_title {
  margin: 0;
  font-family: "GmarketSans", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.visual_desc {
  margin: 16px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.visual_brand {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  z-index: 2;
  color: rgba(123, 166, 223, 0.75);
  font-family: "GmarketSans", sans-serif;
  font-size: 84px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.visual_slide_control {
  position: absolute;
  right: 24px;
  bottom: 14px;
  z-index: 50;
  width: 203px;
  height: 62px;
  padding: 0 24px;
  border-radius: 50px;
  background: var(--color_header_blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual_slide_prev,
.visual_slide_next {
  width: 24px;
  height: 24px;
  color: var(--color_white);
  display: grid;
  place-items: center;
}

.visual_slide_prev svg,
.visual_slide_next svg {
  width: 100%;
  height: 100%;
}

.visual_slide_prev path,
.visual_slide_next path {
  stroke-width: 1.5;
}

.visual_slide::after {
  content: "";
  display:block;width:301px;height:150px;z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url("../images/mainslide_btn_bg.png") right bottom no-repeat;
}

@media (max-width: 767px) {
  .visual_slide::after {width: 243px;height: 123px;background-size:cover;}
}

.visual_slide_fraction {
  margin: 0;
  color: var(--color_white);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.visual_slide_pagination {
  position: absolute;
  left: 40px;
  bottom: 30px;
  z-index: 5;
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.visual_slide_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
}

.visual_slide_pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: #ffffff;
}

.section_candidate {
  padding-top: 130px;
}

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

.section_title {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section_title strong {
  color: var(--color_highlight);
  font-weight: 700;
}

.region_filter {
  display: flex;
  align-items: center;
  gap: 22px;
}

.region_filter_current {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color_primary);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.region_filter_current svg {
  width: 19px;
  height: 24px;
}

.region_filter_divider {
  width: 1px;
  height: 24px;
  background: #d0d0d0;
}

.region_filter_placeholder {
  margin: 0;
  color: #9e9e9e;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.region_filter_selector {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.region_filter_trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.region_filter_button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color_border);
  border-radius: 50%;
  color: #9e9e9e;
  display: grid;
  place-items: center;
}

.region_filter_button svg {
  width: 20px;
  height: 20px;
}

.region_filter_button path {
  stroke-width: 1.4;
}

.region_filter_placeholder,
.region_filter_button,
.region_filter_button svg {
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.region_filter_selector.open .region_filter_placeholder {
  color: #111;
}

.region_filter_selector.open .region_filter_button {
  border-color: rgba(0, 64, 152, 0.22);
  background: rgba(0, 64, 152, 0.06);
  color: var(--color_primary);
}

.region_filter_selector.open .region_filter_button svg {
  transform: rotate(180deg);
}

.region_filter_trigger:focus-visible {
  outline: none;
}

.region_filter_trigger:focus-visible .region_filter_placeholder {
  color: var(--color_primary);
}

.region_filter_trigger:focus-visible .region_filter_button {
  border-color: var(--color_primary);
  box-shadow: 0 0 0 4px rgba(0, 64, 152, 0.12);
  color: var(--color_primary);
}

.region_filter_popover {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 20;
  width: 110%;
  max-width: calc(100vw - 40px);
  padding: 12px;
  border: 1px solid rgba(0, 64, 152, 0.08);
  border-radius: 24px;
  background: var(--color_white);
  box-shadow: 0 24px 48px rgba(6, 39, 94, 0.16);
  height:60vh;
  overflow-y:auto;
}

.region_filter_list {
  overflow: visible;
}

.region_filter_option {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  text-align: left;
  color: var(--color_text_dim);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.region_filter_option:hover,
.region_filter_option:active {
  background: rgba(0, 64, 152, 0.06);
  color: var(--color_primary);
}

.region_filter_option:focus-visible {
  outline: none;
  background: rgba(0, 64, 152, 0.08);
  color: var(--color_primary);
}

.region_filter_option.active {
  background: rgba(0, 64, 152, 0.1);
  color: var(--color_primary);
  font-weight: 700;
}

.card_slide {
  overflow: hidden;
}

.card_slide .swiper-wrapper {
  align-items: stretch;
}

.card_slide .swiper-slide {
  height: auto;
}

.card_slide_item {
  height: 479px;
  border: 1px solid var(--color_border);
  border-radius: 30px;
  overflow: hidden;
  background: var(--color_white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card_body {
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.candidate_thumb_wrap {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
  background: #e4eef7;
}

.candidate_thumb_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate_meta {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.candidate_badge {
  margin: 0;
  padding: 10px 16px;
  border: 1px solid var(--color_secondary);
  border-radius: 999px;
  color: var(--color_secondary);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.candidate_name {
  margin: 0;
  color: var(--color_text);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.candidate_slogan {
  margin: 0;
  color: var(--color_text_dim);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.card_action_row {
  height: 72px;
  border-top: 1px solid var(--color_border);
  display: grid;
  grid-template-columns: 1fr 1fr 60px;
}

.card_action_button {
  border-left: 1px solid var(--color_border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color_text_dim);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.card_action_button:first-child {
  border-left: 0;
}


.card_action_button path {
  stroke-width: 1.2;
}

.card_action_button .card_action_youtube {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.card_slide_control {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card_slide_pagination {
  width: auto;
}

.card_slide_pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 4px !important;
  background: #bfd6f0;
  opacity: 1;
  transition: all 0.3s ease;
}

.card_slide_pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--color_primary);
}

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

.card_slide_prev,
.card_slide_next {
  width: 48px;
  height: 48px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  color: #1d3569;
  background: var(--color_white);
  display: grid;
  place-items: center;
}

.card_slide_prev svg,
.card_slide_next svg {
  width: 24px;
  height: 24px;
}

.card_slide_prev path,
.card_slide_next path {
  stroke-width: 1.5;
}

.section_vote {
  padding-top: 140px;
  padding-bottom: 120px;
}

.section_vote_head {
  margin-bottom: 53px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.vote_period_badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 40px 10px 10px;
  border-radius: 30px;
  background: #e3f2ff;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--color_text_dim);
  white-space: nowrap;
}

.vote_period_icon {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  background: var(--color_primary);
  color: var(--color_white);
  display: inline-grid;
  place-items: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.vote_period_title {
  color: var(--color_primary);
  font-weight: 700;
}

.vote_banner_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.vote_banner_item {
  position: relative;
  height: 290px;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.vote_banner_light {
  background: var(--color_secondary);
}

.vote_banner_dark {
  background: var(--color_primary);
}

.vote_banner_text {
  position: relative;
  z-index: 2;
  color: var(--color_white);
}

.vote_banner_title {
  margin: 0;
  font-family: "GmarketSans", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.vote_banner_desc {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.vote_banner_ballot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 374px);
  z-index: 2;
}

.vote_banner_logo {
   position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 374px);
  z-index: 2;
}


.footer_inner {
  border-top: 1px solid var(--color_border);
  padding: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer_logo img {
  width: 94px;
}

.footer_info {
  margin: 0;
  color: #818181;
  font-size: 14px;
  line-height: 1.5;
  font-style: normal;
}

.footer_info p {
  margin: 0;
}

@media (max-width: 1279px) {
  .section_inner {
    width: calc(100% - 80px);
  }

  .layer_notice_inner {
    gap: 14px;
  }

  .notice_title,
  .notice_date {
    font-size: 18px;
  }

  .header_inner {
    gap: 28px;
  }

  .nav_list {
    gap: 44px;
  }

  .nav_link {
    font-size: 16px;
  }

  .action_icon_button {
    width: 52px;
    height: 52px;
  }

  .section_candidate {
    padding-top: 100px;
  }

  .section_head {
    margin-bottom: 36px;
  }

  .section_title {
    font-size: 42px;
  }

  .region_filter_popover {
    top: calc(100% + 12px);
    width: 280px;
  }

  .region_filter_current,
  .region_filter_placeholder {
    font-size: 24px;
  }

  .visual_slide_item {
    height: 380px;
    border-radius: 60px;
    padding: 64px 72px;
  }

  .visual_slide {
    border-radius: 60px;
  }

  .visual_title {
    font-size: 44px;
  }

  .visual_desc {
    font-size: 21px;
  }

  .visual_brand {
    right: 72px;
    bottom: 78px;
    font-size: 66px;
  }

  .visual_slide_control {
    right: 20px;
    bottom: 12px;
    width: 190px;
    height: 56px;
  }

  .visual_slide_fraction {
    font-size: 16px;
  }

  .card_slide_item {
    height: 450px;
  }

  .card_body {
    padding-top: 32px;
  }

  .candidate_badge {
    font-size: 16px;
  }

  .candidate_name {
    font-size: 34px;
  }

  .candidate_slogan {
    font-size: 16px;
  }

  .section_vote {
    padding-top: 110px;
    padding-bottom: 100px;
  }

  .section_vote_head {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }

  .vote_period_badge {
    font-size: 20px;
    padding: 10px 24px 10px 10px;
  }

  .vote_banner_grid {
    gap: 24px;
  }

  .vote_banner_item {
    height: 250px;
    border-radius: 40px;
    padding: 0 40px;
  }

  .vote_banner_title {
    font-size: 30px;
  }

  .vote_banner_desc {
    font-size: 18px;
  }



  .footer_inner {
    padding-top: 48px;
  }
}

@media (max-width: 767px) {
  .section_inner {
    width: calc(100% - 40px);
  }

  .layer_notice {
    height: 46px;
  }

  .layer_notice_inner {
    justify-content: space-between;
    gap: 12px;
  }

  .notice_title {
    font-size: 16px;
  }

  .notice_date_desktop,
  .notice_link_group,
  .notice_close {
    display: none;
  }

  .notice_date_mobile {
    display: block;
    font-size: 16px;
  }

  .header_main {
    height: 66px;
  }

  .header_inner {
    position: relative;
    height: 66px;
    gap: 12px;
  }

  .logo_link img {
    width: 75px;
  }

  .header_action {
    display: none;
  }

  .menu_toggle {
    display: flex;
    margin-left: auto;
  }

  .nav_main {
    display: none;
    position: absolute;
    right: 0;
    top: 66px;
    width: 210px;
    background: var(--color_white);
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    z-index: 100;
  }

  .menu_open .nav_main {
    display: block;
  }

  .nav_list {
    padding: 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav_link {
    font-size: 18px;
  }

  .visual_slide {
    border-radius: 50px;
  }

  .visual_slide_item {
    height: 400px;
    border-radius: 50px;
    padding: 60px 30px;
    align-items: flex-start;
  }

  .visual_title {
    font-size: 32px;
  }

  .visual_desc {
    margin-top: 16px;
    font-size: 18px;
  }

  .visual_brand {
    right: 20px;
    bottom: 300px;
    font-size: 56px;
    width: 240px;
  }

  .visual_slide_control {
    right: 26px;
    bottom: 14px;
    width: 139px;
    height: 52px;
    padding: 0 16px;
  }

  .visual_slide_fraction {
    font-size: 16px;
  }

  .visual_slide_pagination {
    left: 26px;
    bottom: 20px;
  }

  .section_candidate {
    padding-top: 56px;
  }

  .section_head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .section_title {
    font-size: 28px;
  }

  .region_filter {
    gap: 14px;
    flex-wrap: wrap;
  }

  .region_filter_trigger {
    gap: 12px;
  }

  .region_filter_popover {
    top: calc(100% + 10px);
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border-radius: 20px;
  }

  .region_filter_option {
    padding: 12px 14px;
    font-size: 16px;
  }

  .region_filter_current,
  .region_filter_placeholder {
    font-size: 20px;
  }

  .card_slide_item {
    height: auto;
    min-height: 422px;
  }

  .card_body {
    padding: 31px 16px 0;
    gap: 22px;
  }

  .candidate_thumb_wrap {
    width: 120px;
    height: 120px;
  }

  .candidate_meta {
    gap: 14px;
  }

  .candidate_badge {
    width: 100%;
    white-space: normal;
    text-align: center;
    padding: 8px 10px;
    font-size: 12px;
  }

  .candidate_name {
    font-size: 32px;
  }

  .candidate_slogan {
    font-size: 14px;
  }

  .card_action_row {
    height: 56px;
    grid-template-columns: 1fr 56px 56px;
  }

  .card_action_button {
    font-size: 14px;
  }

  .card_action_youtube {
    display: none;
  }

  .card_slide_control {
    margin-top: 24px;
  }

  .card_slide_prev,
  .card_slide_next {
    width: 40px;
    height: 40px;
  }

  .section_vote {
    padding-top: 78px;
    padding-bottom: 60px;
  }

  .section_vote_head {
    margin-bottom: 40px;
  }

  .vote_period_badge {
    width: 100%;
    flex-wrap: wrap;
    padding: 8px 14px 8px 8px;
    gap: 8px;
    font-size: 14px;
  }

  .vote_period_icon {
    width: 28px;
    height: 28px;
    font-size: 20px;
  }

  .vote_period_text {
    margin-left: 1rem;
  }

  .vote_banner_grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vote_banner_item {
    height: 320px;
    border-radius: 30px;
    padding: 40px 30px 0;
    align-items: flex-start;
  }

  .vote_banner_title {
    font-size: 28px;
  }

  .vote_banner_desc {
    font-size: 16px;
  }

  .vote_banner_ballot {
    width: 64%;
    right: -4px;
  }

  .footer_main {
    padding-bottom: 40px;
  }

  .footer_inner {
    padding-top: 40px;
  }

  .footer_info {
    font-size: 12px;
  }
}

/* list.html */

.candidate_page_section {
  padding: 44px 0 160px;
}

.candidate_page_inner {
  width: min(1628px, calc(100% - 120px));
  margin: 0 auto;
}

.candidate_breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9e9e9e;
}

.candidate_breadcrumb_home {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.candidate_breadcrumb_home svg {
  width: 18px;
  height: 18px;
}

.candidate_breadcrumb_arrow {
  width: 20px;
  height: 20px;
}

.candidate_breadcrumb_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.candidate_page_head {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 44px;
}

.candidate_page_title {
  margin: 0;
  color: #111111;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.candidate_page_cards {
  margin-top: 74px;
  position: relative;
}

.candidate_card_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.candidate_card_grid>li {
  min-width: 0;
}

.candidate_card {
  --candidate_color: #004098;
  height: 479px;
  border-radius: 30px;
  background: var(--candidate_color);
  padding: 10px 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: box-shadow 0.28s ease, background-color 0.28s ease;
}

.candidate_card_inner {
  background: #ffffff;
  border-radius: 20px;
  min-height: 0;
  height: 100%;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex: 1;
  transition: padding 0.28s ease, gap 0.28s ease;
}

.candidate_thumb_box {
  width: 140px;
  height: 140px;
  max-height: 140px;
  border-radius: 20px;
  background: #e4eef7;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.28s ease, opacity 0.22s ease, margin 0.28s ease, transform 0.28s ease;
}

.candidate_thumb_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.candidate_card_badge {
  margin: 0;
  max-width: 100%;
  border: 1px solid var(--candidate_color);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--candidate_color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
}

.candidate_card_name {
  margin: 0;
  color: #111111;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.candidate_card_desc {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.04em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 3.6em;
}

.candidate_card_summary {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  color: #ffffff;
  transition: max-height 0.32s ease, padding 0.32s ease, opacity 0.24s ease;
}

.candidate_card_summary_title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.candidate_card_summary_text {
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.candidate_card_action {
  height: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px;
  align-items: center;
  transition: grid-template-columns 0.28s ease;
}

.candidate_card_link,
.candidate_card_share {
  height: 100%;
  color: #ffffff;
}

.candidate_card_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.candidate_card_share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.candidate_card_link svg,
.candidate_card_share svg {
  width: 24px;
  height: 24px;
}

.candidate_card_link path,
.candidate_card_share path {
  stroke-width: 1.2;
}

@media (min-width: 1280px) {
  .candidate_card:hover,
  .candidate_card:focus-within {
    box-shadow: 0 16px 28px rgba(6, 39, 94, 0.16);
  }

  .candidate_card:hover .candidate_card_inner,
  .candidate_card:focus-within .candidate_card_inner {
    flex: 0 0 auto;
    padding: 30px 16px;
    height:fit-content;
  }
  .candidate_card:hover .candidate_card_desc,
  .candidate_card:focus-within .candidate_card_desc {
    min-height:fit-content;
  }

  .candidate_card:hover .candidate_thumb_box,
  .candidate_card:focus-within .candidate_thumb_box {
    max-height: 0;
    opacity: 0;
    margin: 0;
    transform: translateY(-8px);
    margin-top: -16px;
  }

  .candidate_card:hover .candidate_card_summary,
  .candidate_card:focus-within .candidate_card_summary {
    max-height: 176px;
    opacity: 1;
    padding: 0 20px 30px;
  }

  .candidate_card:hover .candidate_card_action,
  .candidate_card:focus-within .candidate_card_action {
    grid-template-columns: minmax(0, 1fr) 60px;
  }
}

.candidate_page_more {
  position: absolute;
  top: 292px;
  right: -38px;
  width: 32px;
  height: 32px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  color: #cccccc;
  display: grid;
  place-items: center;
}

.candidate_page_more svg {
  width: 16px;
  height: 16px;
}

.candidate_page_more path {
  stroke-width: 1.4;
}

.candidate_color_navy {
  --candidate_color: #06275e;
}

.candidate_color_blue {
  --candidate_color: #004098;
}

.candidate_color_sky {
  --candidate_color: #0074ba;
}

.candidate_color_deep_sky {
  --candidate_color: #004d7c;
}

.candidate_color_purple {
  --candidate_color: #5c2ba2;
}

.candidate_color_deep_purple {
  --candidate_color: #432b7c;
}

.page_wrap_list .footer_inner {
  padding: 60px 120px;
}

@media (max-width: 1279px) {
  .candidate_page_section {
    padding: 38px 0 130px;
  }

  .candidate_page_inner {
    width: calc(100% - 80px);
  }

  .candidate_page_title {
    font-size: 42px;
  }

  .candidate_page_cards {
    margin-top: 56px;
  }

  .candidate_card_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .candidate_page_more {
    display: none;
  }

  .page_wrap_list .footer_inner {
    padding: 52px 80px;
  }
}

@media (max-width: 767px) {
  .candidate_page_section {
    padding: 22px 0 54px;
  }

  .candidate_page_inner {
    width: calc(100% - 40px);
  }

  .candidate_breadcrumb {
    gap: 6px;
  }

  .candidate_breadcrumb_home {
    width: 16px;
    height: 16px;
  }

  .candidate_breadcrumb_home svg,
  .candidate_breadcrumb_arrow {
    width: 16px;
    height: 16px;
  }

  .candidate_breadcrumb_text {
    font-size: 16px;
    letter-spacing: -0.02em;
  }

  .candidate_page_head {
    margin-top: 20px;
    gap: 20px;
  }

  .candidate_page_title {
    font-size: 28px;
    letter-spacing: -0.04em;
  }

  .candidate_page_head .region_filter {
    width: 100%;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .candidate_page_cards {
    margin-top: 34px;
  }

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

  .candidate_card {
    height: 420px;
  }

  .candidate_card_inner {
    padding: 20px 16px 18px;
  }

  .candidate_card_badge {
    width: fit-content;
    font-size: 13px;
    white-space: normal;
    line-height: 1.2;
    padding: 8px 12px;
  }

  .candidate_card_name {
    font-size: 32px;
    letter-spacing: -0.04em;
  }

  .candidate_card_desc {
    font-size: 16px;
    letter-spacing: -0.04em;
  }

  .candidate_card_summary {
    padding: 0 16px;
  }

  .candidate_card_summary_title {
    font-size: 16px;
  }

  .candidate_card_summary_text {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
  }

  .candidate_card_action {
    height: 72px;
    grid-template-columns: minmax(0, 1fr) 56px;
  }

  .candidate_card_link {
    font-size: 12px;
    gap: 6px;
  }

  .candidate_card_link svg,
  .candidate_card_share svg {
    width: 20px;
    height: 20px;
  }

  .candidate_card.is_touch_active .candidate_card_inner {
    flex: 0 0 auto;
    padding: 30px 16px;
    height:fit-content
  }

  .candidate_card.is_touch_active .candidate_thumb_box {
    max-height: 0;
    opacity: 0;
    margin: 0;
    transform: translateY(-8px);
    margin-top:-16px;
  }
  .candidate_card.is_touch_active .candidate_card_desc {
    min-height:fit-content;
  }

  .candidate_card.is_touch_active .candidate_card_summary {
    max-height: 178px;
    opacity: 1;
    padding: 0 16px 24px;
  }

  .candidate_card.is_touch_active .candidate_card_action {
    grid-template-columns: minmax(0, 1fr) 56px;
  }

.page_wrap_list .footer_inner {
    padding: 40px 20px 0;
  }
}

/* view.html (figma rematch) */

.candidate_view_section {
  padding: 44px 0 160px;
}

.candidate_view_inner {
  width: min(1400px, calc(100% - 240px));
  margin: 0 auto;
}

.candidate_view_breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9e9e9e;
}

.candidate_view_breadcrumb_home {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.candidate_view_breadcrumb_home svg {
  width: 18px;
  height: 18px;
}

.candidate_view_breadcrumb_arrow {
  width: 24px;
  height: 24px;
}

.candidate_view_breadcrumb_arrow path {
  stroke-width: 1.4;
}

.candidate_view_breadcrumb_link,
.candidate_view_breadcrumb_text {
  color: #9e9e9e;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.candidate_view_hero {
  position: relative;
  margin-top: 80px;
  height: 383px;
  border-radius: 80px;
  background: #06275E;
  overflow:visible;
}

.candidate_view_hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 382px;
  height: 150px;
  background: url("../images/view_top_white_bg.png") right top / cover no-repeat;
  pointer-events: none;
}

.candidate_view_hero_pattern {
  position: absolute;
  left: 0;
  top: 0;
  width: 489px;
  height: 100%;
  background: url("../images/view_top_img.png") left center / cover no-repeat;
}

.candidate_view_hero_person {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 350px;
  max-width: 26vw;
  transform: translateX(-37%);
  z-index: 3;
}

.candidate_view_hero_slogan_wrap {
  position: absolute;
  left: 142px;
  top: 108px;
  z-index: 4;
}

.candidate_view_hero_slogan {
  margin: 0;
  color: #ffffff;
  font-family: "GmarketSans", sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.4);
  transform: skewX(-12deg);
}

.candidate_view_hero_identity {
  position: absolute;
  right: 84px;
  bottom: 44px;
  z-index: 4;
}

.candidate_view_hero_identity_sub {
  margin: 0;
  color: #ffffff;
  font-family: "GmarketSans", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 5px 5px 4px rgba(0, 0, 0, 0.2);
  transform: skewX(-12deg);
}

.candidate_view_name {
  margin: 0;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  line-height: 1;
}

.candidate_view_name_num {
  color: #00a9ee;
  font-family: "GmarketSans", sans-serif;
  font-size: 142px;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.02em;
}
/* 00A1E4 */

.candidate_view_name_text {
  color: #ffffff;
  font-family: "GmarketSans", sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 3px #06275e;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.candidate_view_hero_badge {
  position: absolute;
  top: 16px;
  right: 22px;
  margin: 0;
  height: 62px;
  padding: 0 24px;
  border-radius: 50px;
  border: 1px solid #06275e;
  background: #ffffff;
  color: #06275e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  z-index: 5;
}

.candidate_view_content {
  width: min(1200px, 100%);
  margin: 92px auto 0;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.candidate_view_intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.candidate_view_intro_main {
  width: min(800px, 100%);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.candidate_view_text_block {
  margin: 0;
}

.candidate_view_block_title {
  margin: 0;
  color: #004098;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.candidate_view_block_text {
  margin: 20px 0 0;
  color: #333333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.candidate_view_intro_side {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.candidate_view_facts_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.candidate_view_fact_group {
  margin: 0;
}

.candidate_view_fact_title {
  margin: 0;
  color: #004098;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.candidate_view_fact_text {
  margin: 12px 0 0;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

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

.candidate_view_social_link {
  width: 40px;
  height: 40px;
  border: 1px solid #dddddd;
  border-radius: 999px;
  color: #b6b6b6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  min-width:auto;
  padding: 0;
}


.candidate_view_social_link path,
.candidate_view_social_link rect,
.candidate_view_social_link circle {
  stroke-width: 1.6;
}

.candidate_view_social_link:hover,
.candidate_view_social_link:focus-visible {
  border-color: #a8a8a8;
}

.candidate_view_video {
  margin: 0;
}

.candidate_view_video_heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.candidate_view_video_embed {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 359;
  border-radius: 50px;
  overflow: hidden;
  background: #072052 url("https://www.figma.com/api/mcp/asset/e2894063-4003-49ec-9058-69e3f626dcb1") center / cover no-repeat;
}

.candidate_view_video_embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.candidate_view_video_overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 36px 26px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(6, 39, 94, 0.06) 38%, rgba(3, 17, 55, 0.74) 100%);
}

.candidate_view_video_logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 63px;
  transform: translate(-50%, -45%);
}

.candidate_view_video_date {
  margin: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
}

.candidate_view_video_title_text {
  margin: 8px 0 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.24);
}

.candidate_view_media_image {
  margin: 0;
}

.candidate_view_image_heading {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.candidate_view_image_embed {
  position: relative;
  width: 100%;
  aspect-ratio: 640 / 359;
  border-radius: 50px;
  overflow: hidden;
  background: #072052;
}

.candidate_view_image_embed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.candidate_view_policy {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding:0;border:none;
}

.candidate_view_policy_title {
  margin: 0;
  color: #06275e;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
}

.candidate_view_policy_item {
  margin: 0;
}

.candidate_view_policy_name {
  margin: 0;
  color: #333333;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.04em;
}

.candidate_view_policy_text {
  margin: 10px 0 0;
  color: #333333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.candidate_view_cta {
  margin: 0;
  border-radius: 200px;
  background: #0073cf;
  padding: 40px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.candidate_view_cta_text {
  margin: 0;
}

.candidate_view_cta_title {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.candidate_view_cta_strong {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.candidate_view_cta_button {
  height: 64px;
  padding: 0 20px;
  border-radius: 50px;
  background: #004098;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  transition: background-color 0.2s ease;
}

.btn_wrap {display: flex;justify-content: center;gap:4px;margin-top: 60px;}

.line_btn {
  height: 64px;
  padding: 0 60px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
  color: #818181;
  border:1px solid #ddd;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  transition: all 0.2s ease;
}

.gray_btn {
  height: 64px;
  padding: 0 60px;
  border-radius: 10px;
  display: inline-block;
  width: fit-content;
  color: #fff;
  background: #004098;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.04em;
  transition: all 0.2s ease;
}

.line_btn:hover {border: 1px solid #111;color: #111;}

.candidate_view_cta_button svg {
  width: 20px;
  height: 20px;
}

.candidate_view_cta_button path {
  stroke-width: 1.6;
}

.candidate_view_cta_button:hover,
.candidate_view_cta_button:focus-visible {
  background: #0b4db2;
}

.page_wrap_view .footer_inner {
  padding: 60px 120px;
}

@media (max-width: 1279px) {
  .candidate_view_section {
    padding: 38px 0 130px;
  }

  .candidate_view_inner {
    width: calc(100% - 80px);
  }

  .candidate_view_breadcrumb_link,
  .candidate_view_breadcrumb_text {
    font-size: 18px;
  }

  .candidate_view_hero {
    margin-top: 24px;
    height: 332px;
  }

  .candidate_view_hero::after {
    width: 300px;
    height: 118px;
  }

  .candidate_view_hero_pattern {
    width: 390px;
  }

  .candidate_view_hero_person {
    width: 300px;
    max-width: none;
    transform: translateX(-41%);
  }

  .candidate_view_hero_slogan_wrap {
    left: 88px;
    top: 92px;
  }

  .candidate_view_hero_slogan {
    font-size: 48px;
  }

  .candidate_view_hero_identity {
    right: 44px;
    bottom: 30px;
  }

  .candidate_view_hero_identity_sub {
    font-size: 24px;
  }

  .candidate_view_name_num {
    font-size: 112px;
  }

  .candidate_view_name_text {
    font-size: 68px;
    -webkit-text-stroke: 2px #fff;
    color:#06275e;
  }

  .candidate_view_hero_badge {
    top: 14px;
    right: 14px;
    height: 54px;
    padding: 0 18px;
    font-size: 16px;
  }

  .candidate_view_content {
    margin-top: 72px;
    gap: 72px;
  }

  .candidate_view_intro {
    gap: 48px;
  }

  .candidate_view_intro_main {
    gap: 56px;
  }

  .candidate_view_block_text {
    margin-top: 16px;
    font-size: 20px;
  }

  .candidate_view_intro_side {
    width: 260px;
  }

  .candidate_view_fact_text {
    font-size: 16px;
  }

  .candidate_view_video_embed {
    border-radius: 40px;
  }

  .candidate_view_video_overlay {
    padding: 0 26px 20px;
  }

  .candidate_view_video_logo {
    width: 78px;
    height: 53px;
  }

  .candidate_view_video_date {
    font-size: 24px;
  }

  .candidate_view_video_title_text {
    font-size: 40px;
  }

  .candidate_view_image_embed {
    border-radius: 40px;
  }

  .candidate_view_policy_name {
    font-size: 22px;
  }

  .candidate_view_policy_text {
    font-size: 18px;
  }

  .candidate_view_cta {
    border-radius: 60px;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
  }

  .candidate_view_cta_title {
    font-size: 20px;
  }

  .candidate_view_cta_strong {
    font-size: 32px;
  }

  .page_wrap_view .footer_inner {
    padding: 52px 80px;
  }
}

@media (max-width: 767px) {
  .candidate_view_section {
    padding: 22px 0 54px;
  }

  .candidate_view_inner {
    width: calc(100% - 40px);
  }

  .candidate_view_breadcrumb {
    gap: 6px;
  }

  .candidate_view_breadcrumb_home {
    width: 16px;
    height: 16px;
  }

  .candidate_view_breadcrumb_home svg,
  .candidate_view_breadcrumb_arrow {
    width: 16px;
    height: 16px;
  }

  .candidate_view_breadcrumb_link,
  .candidate_view_breadcrumb_text {
    font-size: 16px;
  }

  .candidate_view_hero {
    margin-top: 20px;
    height: 402px;
  }

  .candidate_view_hero::after {
    display: none;
  }

  .candidate_view_hero_pattern {
    width: 263px;
    background: url("../images/view_top_img_m.png") left center no-repeat;
  }

  .candidate_view_hero_person {
    width: 180px;
    left: auto;
    right: 0;
    transform: none;
  }

  .candidate_view_hero_slogan_wrap {
    left: 34px;
    top: 174px;
  }

  .candidate_view_hero_slogan {
    font-size: 24px;
  }

  .candidate_view_hero_identity {
    left: 30px;
    top: 52px;
    right: auto;
    bottom: auto;
  }

  .candidate_view_hero_identity_sub {
    font-size: 18px;
  }

  .candidate_view_name {
    gap: 10px;
  }

  .candidate_view_name_num {
    font-size: 64px;
  }

  .candidate_view_name_text {
    font-size: 56px;
    -webkit-text-stroke: 1.5px #fff;
    color:#06275e;
  }

  .candidate_view_hero_badge {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    height: auto;
    padding: 14px 24px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    backdrop-filter: blur(2px);
    white-space: nowrap;
  }

  .candidate_view_content {
    margin-top: 40px;
    gap: 60px;
  }

  .candidate_view_intro {
    flex-direction: column;
    gap: 60px;
  }

  .candidate_view_intro_side {
    order: -1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: start;
    column-gap: 20px;
    row-gap: 0;
    padding-bottom: 60px;
    border-bottom: 1px solid #dddddd;
  }

  .candidate_view_facts_list {
    gap: 40px;
  }

  .candidate_view_fact_title {
    font-size: 20px;
  }

  .candidate_view_fact_text {
    margin-top: 16px;
    font-size: 16px;
    white-space: normal;
  }

  .candidate_view_social {
    margin-top: 0;
    flex-direction: column;
  }

  .candidate_view_intro_main {
    width: 100%;
    gap: 60px;
  }

  .candidate_view_block_title {
    font-size: 20px;
  }

  .candidate_view_block_text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.5;
  }

  .candidate_view_video_embed {
    border-radius: 30px;
  }

  .candidate_view_video_overlay {
    padding: 0 18px 16px;
  }

  .candidate_view_video_logo {
    width: 55px;
    height: 38px;
  }

  .candidate_view_video_date {
    font-size: 16px;
  }

  .candidate_view_video_title_text {
    margin-top: 4px;
    font-size: 34px;
  }

  .candidate_view_image_embed {
    border-radius: 30px;
  }

  .candidate_view_policy {
    gap: 24px;
  }

  .candidate_view_policy_title {
    font-size: 20px;
  }

  .candidate_view_policy_name {
    font-size: 18px;
  }

  .candidate_view_policy_text {
    font-size: 16px;
  }

  .candidate_view_cta {
    border-radius: 50px;
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .candidate_view_cta_title {
    font-size: 18px;
  }

  .candidate_view_cta_strong {
    margin-top: 10px;
    font-size: 28px;
  }

  .candidate_view_cta_button {
    height: 58px;
    font-size: 18px;
  }

  .line_btn {
    height: 58px;
    font-size: 18px;
  }
  .gray_btn {
    height: 58px;
    font-size: 18px;
  }

  .page_wrap_view .footer_inner {
    padding: 40px 20px 0;
  }
}

/* notice list / view */

.nav_link_active {
    color: var(--color_primary);
    font-weight: 700;
}

.main_page_notice {
    padding: 44px 0 140px;
}

.notice_list_inner,
.notice_view_inner {
    width: min(1628px, calc(100% - 120px));
    margin: 0 auto;
}

.notice_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9e9e9e;
}

.notice_breadcrumb_home {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
}

.notice_breadcrumb_home svg {
    width: 18px;
    height: 18px;
}

.notice_breadcrumb_arrow {
    width: 20px;
    height: 20px;
}

.notice_breadcrumb_link,
.notice_breadcrumb_text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.notice_list_head {
    margin-top: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.notice_page_title {
    margin: 0;
    color: #111111;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.notice_page_total {
    margin: 0;
    color: #8a93a5;
    font-size: 18px;
    font-weight: 500;
}

.notice_table_wrap {
    margin-top: 36px;
    border-top: 2px solid #1b3f86;
    border-bottom: 1px solid #dfe4ed;
    border-radius: 0;
    overflow: hidden;
    background: #ffffff;
}

.notice_blind {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.notice_table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.notice_col_num {
    width: 12%;
}

.notice_col_title {
    width: 68%;
}

.notice_col_date {
    width: 20%;
}

.notice_table th {
    height: 62px;
    background: #f7f9fd;
    color: #5d667a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    text-align: center;
}

.notice_table td {
    padding: 22px 20px;
    border-top: 1px solid #edf1f7;
    color: #1a1f2b;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.02em;
    text-align: center;
}

.notice_table tr:first-child td {
    border-top: 0;
}

.notice_table td[data_label="제목"] {
    text-align: left;
}

.notice_title_link {
    color: #1a1f2b;
    transition: color 0.2s ease;
}

.notice_table tbody tr:hover td {
    background: #fcfdff;
}

.notice_table tbody tr:hover .notice_title_link {
    color: var(--color_primary);
}

.notice_fixed td {
    background: #f5f9ff;
}

.notice_fixed:hover td {
    background: #edf4ff;
}

.notice_fixed_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e7f0ff;
    color: var(--color_primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.notice_pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.notice_page_button {
    min-width: 42px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #d7dce6;
    border-radius: 999px;
    color: #6c7487;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.notice_page_button:hover {
    border-color: var(--color_primary);
    color: var(--color_primary);
}

.notice_page_number.is_active {
    background: var(--color_primary);
    border-color: var(--color_primary);
    color: #ffffff;
}

.notice_page_prev,
.notice_page_next {
    min-width: 64px;
}

.notice_view_article {
    margin-top: 32px;
    border-top: 2px solid #1b3f86;
    border-bottom: 1px solid #dfe4ed;
    overflow: hidden;
    background: #ffffff;
}

.notice_view_head {
    padding: 36px 44px 28px;
    border-bottom: 1px solid #edf1f7;
}

.notice_view_title {
    margin: 0;
    color: #111111;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.03em;
}

.notice_view_date {
    margin: 14px 0 0;
    color: #7c8395;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.notice_view_body {
    padding: 44px;
    color: #2e3443;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: -0.02em;
}

.notice_view_body p {
    margin: 0 0 20px;
}

.notice_view_body p:last-child {
    margin-bottom: 0;
}

.notice_view_body h2 {
    margin: 36px 0 14px;
    color: #111111;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
}

.notice_view_body ul {
    margin: 0 0 20px;
    padding-left: 20px;
}

.notice_view_body li {
    margin-top: 8px;
}

.notice_view_body li:first-child {
    margin-top: 0;
}

.notice_view_move {
    margin-top: 24px;
    border: 1px solid #dfe4ed;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
}

.notice_move_item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    min-height: 68px;
    border-top: 1px solid #edf1f7;
}

.notice_move_item:first-child {
    border-top: 0;
}

.notice_move_label {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: #f7f9fd;
    color: #6e778b;
    font-size: 16px;
    font-weight: 600;
}

.notice_move_link {
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    color: #1a1f2b;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.02em;
    transition: color 0.2s ease;
}

.notice_move_link:hover {
    color: var(--color_primary);
}

.notice_view_button_row {
    margin-top: 36px;
    display: flex;
    justify-content: center;
}

.notice_view_list_button {
    min-width: 160px;
    height: 52px;
    padding: 0 32px;
    border-radius: 999px;
    background: var(--color_primary);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.notice_view_list_button:hover {
    background: #08337a;
}

.page_wrap_notice_list .footer_inner,
.page_wrap_notice_view .footer_inner {
    width: min(1628px, calc(100% - 120px));
    margin: 0 auto;
    padding: 60px 0 0;
}

@media (max-width: 1279px) {
    .main_page_notice {
        padding: 34px 0 110px;
    }

    .notice_list_inner,
    .notice_view_inner {
        width: calc(100% - 80px);
    }

    .notice_breadcrumb_link,
    .notice_breadcrumb_text {
        font-size: 18px;
    }

    .notice_page_title {
        font-size: 42px;
    }

    .notice_page_total {
        font-size: 16px;
    }

    .notice_table td {
        padding: 18px 16px;
        font-size: 16px;
    }

    .notice_view_title {
        font-size: 30px;
    }

    .notice_view_body {
        padding: 36px;
        font-size: 17px;
    }

    .notice_view_body h2 {
        font-size: 22px;
    }

    .notice_move_item {
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .page_wrap_notice_list .footer_inner,
    .page_wrap_notice_view .footer_inner {
        width: calc(100% - 80px);
    }
}


/* 공유 토스트 */
.share_toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(30, 30, 30, 0.9);
  color: #fff;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 9999;
  pointer-events: none;
}
.share_toast.share_toast_show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── 팝업 ── */
.front_popup_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.front_popup {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}
.front_popup_link {
  display: block;
}
.front_popup_img {
  display: block;
  width: 100%;
  height: auto;
}
.front_popup_actions {
  display: flex;
  border-top: 1px solid #eee;
}
.front_popup_actions button {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #555;
}
.front_popup_actions button + button {
  border-left: 1px solid #eee;
}
.front_popup_today:hover,
.front_popup_close:hover {
  background: #f5f5f5;
}

/* error.html */

.error_section {
  padding: 120px 0 160px;
  text-align: center;
}

.error_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.error_code {
  font-size: 80px;
  font-weight: 800;
  color: var(--color_primary);
  line-height: 1;
}

.error_title {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.error_desc {
  font-size: 16px;
  color: #666;
  margin-top: 4px;
}

.error_home_link {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--color_primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
}

.error_home_link:hover {
  opacity: 0.85;
}

@media (max-width: 767px) {
    .main_page_notice {
        padding: 22px 0 60px;
    }

    .notice_list_inner,
    .notice_view_inner {
        width: calc(100% - 40px);
    }

    .notice_breadcrumb {
        gap: 6px;
    }

    .notice_breadcrumb_home {
        width: 16px;
        height: 16px;
    }

    .notice_breadcrumb_home svg,
    .notice_breadcrumb_arrow {
        width: 16px;
        height: 16px;
    }

    .notice_breadcrumb_link,
    .notice_breadcrumb_text {
        font-size: 16px;
    }

    .notice_list_head {
        margin-top: 20px;
        align-items: center;
    }

    .notice_page_title {
        font-size: 32px;
    }

    .notice_page_total {
        font-size: 14px;
    }

    .notice_table_wrap {
        margin-top: 24px;
        border-radius: 14px;
    }

    .notice_table colgroup,
    .notice_table thead {
        display: none;
    }

    .notice_table tbody tr {
        display: block;
        padding: 14px 16px;
        border-top: 1px solid #edf1f7;
    }

    .notice_table tbody tr:first-child {
        border-top: 0;
    }

    .notice_table tbody td {
        width: 100%;
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 0;
        margin-top: 8px;
        border: 0;
        font-size: 15px;
        text-align: left;
        background: transparent;
    }

    .notice_table tbody td:first-child {
        margin-top: 0;
    }

    .notice_table tbody td::before {
        content: attr(data_label);
        flex: 0 0 34px;
        color: #8a93a5;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.5;
    }

    .notice_table tbody td[data_label="제목"] .notice_title_link {
        line-height: 1.5;
    }

    .notice_fixed_badge {
        min-width: 42px;
        height: 24px;
        font-size: 12px;
    }

    .notice_pagination {
        margin-top: 24px;
        gap: 6px;
    }

    .notice_page_button {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 14px;
    }

    .notice_page_prev,
    .notice_page_next {
        min-width: 52px;
    }

    .notice_view_article {
        margin-top: 24px;
        border-radius: 14px;
    }

    .notice_view_head {
        padding: 24px 20px 20px;
    }

    .notice_view_title {
        font-size: 24px;
        line-height: 1.5;
    }

    .notice_view_date {
        margin-top: 10px;
        font-size: 14px;
    }

    .notice_view_body {
        padding: 24px 20px;
        font-size: 16px;
        line-height: 1.75;
    }

    .notice_view_body h2 {
        margin: 28px 0 12px;
        font-size: 20px;
    }

    .notice_view_move {
        margin-top: 20px;
        border-radius: 12px;
    }

    .notice_move_item {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .notice_move_label {
        padding: 10px 16px;
        font-size: 14px;
    }

    .notice_move_link {
        min-height: auto;
        padding: 12px 16px;
        font-size: 15px;
    }

    .notice_view_button_row {
        margin-top: 24px;
    }

    .notice_view_list_button {
        width: 100%;
        min-width: 0;
        height: 48px;
        font-size: 16px;
    }

    .page_wrap_notice_list .footer_inner,
    .page_wrap_notice_view .footer_inner {
        width: calc(100% - 40px);
        padding-top: 40px;
    }
  .error_section {
    padding: 80px 0 120px;
  }

  .error_code {
    font-size: 56px;
  }

  .error_title {
    font-size: 20px;
  }

  .error_desc {
    font-size: 14px;
  }
}
