.news_page {
   color: var(--color-text-primary);
   background: #fff;
}

.news_main {
   width: 100%;
}

.news_visual {
   display: flex;
   align-items: center;
   min-height: 520px;
   padding: 200px 0 100px;
   background: #fff;
}

.news_visual_inner,
.news_content_inner {
   width: min(1500px, calc(100% - 120px));
   margin: 0 auto;
}

.news_visual_inner {
   display: flex;
   align-items: center;
   justify-content: center;
   min-height: 280px;
   border-bottom: 1px solid var(--color-line-strong);
}

.news_visual_heading {
   padding-bottom: 100px;
   text-align: center;
   animation: newsVisualReveal 1.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.news_visual_label,
.news_content_label {
   display: block;
   color: var(--color-brand);
   font-size: 15px;
   font-weight: 400;
   letter-spacing: 0.14em;
}

.news_visual_title {
   margin: 24px 0 40px;
   font-size: clamp(52px, 4.5vw, 76px);
   font-weight: 700;
   line-height: 1.12;
}

.news_visual_desc {
   margin: 0;
   color: var(--color-text-muted);
   font-size: clamp(16px, 1.05vw, 19px);
   line-height: 1.4;
   word-break: keep-all;
}

@keyframes newsVisualReveal {
   from {
      opacity: 0;
      transform: translateY(36px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.news_content {
   padding: 100px 0 170px;
   background: #fff;
}

.news_content_head {
   display: grid;
   grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
   align-items: end;
   gap: 80px;
   opacity: 0;
   transform: translateY(28px);
   transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_content_head.is_visible,
.news_categories.is_visible,
.news_list.is_visible,
.news_pagination.is_visible {
   opacity: 1;
   transform: translateY(0);
}

.news_content_head h2 {
   margin: 20px 0 0;
   font-size: clamp(38px, 3.1vw, 54px);
   font-weight: 700;
   line-height: 1.25;
   word-break: keep-all;
}

.news_search {
   position: relative;
   display: grid;
   grid-template-columns: minmax(0, 1fr) 40px 84px;
   border-bottom: 1px solid var(--color-text-primary);
}

.news_search .blind {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
}

.news_search input {
   width: 100%;
   min-width: 0;
   height: 64px;
   padding: 0 8px;
   border: 0;
   outline: 0;
   color: var(--color-text-primary);
   background: transparent;
   font-family: inherit;
   font-size: 16px;
}

.news_search input::placeholder {
   color: var(--color-text-disabled);
}

.news_search input::-webkit-search-cancel-button {
   display: none;
   -webkit-appearance: none;
}

.news_search input::-ms-clear {
   display: none;
}

.news_search_submit,
.news_search_clear {
   border: 0;
   color: var(--color-text-primary);
   background: transparent;
   font-family: inherit;
   cursor: pointer;
}

.news_search_submit {
   font-size: 15px;
   font-weight: 600;
}

.news_search_clear {
   position: relative;
   align-self: center;
   justify-self: center;
   width: 32px;
   height: 32px;
   padding: 0;
   border-radius: 50%;
   color: var(--color-text-muted);
   transition: color 0.35s ease, background-color 0.35s ease;
}

.news_search_clear::before,
.news_search_clear::after {
   content: "";
   position: absolute;
   top: 50%;
   left: 50%;
   width: 15px;
   height: 1px;
   background: currentColor;
}

.news_search_clear::before {
   transform: translate(-50%, -50%) rotate(45deg);
}

.news_search_clear::after {
   transform: translate(-50%, -50%) rotate(-45deg);
}

.news_search_clear:hover,
.news_search_clear:focus-visible {
   color: var(--color-text-primary);
   background: var(--color-bg-base);
}

.news_search_clear:focus-visible,
.news_search_submit:focus-visible {
   outline: 1px solid var(--color-brand);
   outline-offset: 2px;
}

.news_search:focus-within {
   border-color: var(--color-brand);
}

.news_categories {
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   margin-top: 92px;
   border-bottom: 1px solid var(--color-line);
   opacity: 0;
   transform: translateY(22px);
   transition: opacity 0.85s 0.08s ease, transform 0.85s 0.08s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_category {
   position: relative;
   width: 100%;
   padding: 22px 0;
   border: 0;
   color: var(--color-text-disabled);
   background: transparent;
   font-family: inherit;
   font-size: 17px;
   font-weight: 500;
   text-align: center;
   cursor: pointer;
   transition: color 0.35s ease;
}

.news_category::after {
   content: "";
   position: absolute;
   right: 0;
   bottom: -1px;
   left: 0;
   height: 2px;
   background: var(--color-brand);
   transform: scaleX(0);
   transform-origin: left center;
   transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_category:hover,
.news_category.is_active {
   color: var(--color-text-primary);
   font-weight: 600;
}

.news_category.is_active::after {
   transform: scaleX(1);
}

.news_list {
   opacity: 0;
   transform: translateY(24px);
   transition: opacity 0.9s 0.16s ease, transform 0.9s 0.16s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_item {
   border-bottom: 1px solid var(--color-line);
}

.news_item[hidden] {
   display: none;
}

.news_item_link {
   display: grid;
   grid-template-columns: 70px 130px minmax(0, 1fr) 120px 32px;
   align-items: center;
   gap: 28px;
   min-height: 126px;
   padding: 28px 16px;
   color: var(--color-text-primary);
   text-decoration: none;
}

.news_number {
   color: rgba(102, 155, 69, 0.9);
   font-size: 15px;
   font-weight: 400;
   font-family: "Bahnschrift", "Pretendard", sans-serif;
}

.news_type,
.news_date {
   color: var(--color-text-disabled);
   font-size: 15px;
   font-weight: 500;
}

.news_title {
   font-size: clamp(19px, 1.35vw, 23px);
   font-weight: 600;
   line-height: 1.5;
   word-break: keep-all;
   transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_date {
   text-align: right;
}

.news_arrow {
   position: relative;
   width: 28px;
   height: 28px;
   color: var(--color-text-muted);
}

.news_arrow::before {
   content: "";
   position: absolute;
   top: 50%;
   left: 5px;
   width: 15px;
   height: 1px;
   background: currentColor;
   transform: translateY(-50%);
   transition: width 0.4s ease;
}

.news_arrow::after {
   content: "";
   position: absolute;
   top: 50%;
   right: 6px;
   width: 7px;
   height: 7px;
   border-top: 1px solid currentColor;
   border-right: 1px solid currentColor;
   transform: translateY(-50%) rotate(45deg);
}

.news_item_link:focus-visible {
   outline: none;
   box-shadow: inset 3px 0 0 var(--color-brand);
}

.news_empty {
   margin: 0;
   padding: 110px 0;
   border-bottom: 1px solid var(--color-line);
   color: var(--color-text-muted);
   text-align: center;
}

.news_pagination {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: 70px;
   opacity: 0;
   transform: translateY(16px);
   transition: opacity 0.8s 0.22s ease, transform 0.8s 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.news_page_button {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   padding: 0;
   border: 0;
   color: var(--color-text-disabled);
   background: transparent;
   font-family: inherit;
   font-size: 15px;
   cursor: pointer;
   transition: color 0.3s ease, background-color 0.3s ease;
}

.news_page_button.is_active {
   color: var(--color-text-light);
   background: var(--color-brand);
}

.news_page_button:disabled {
   opacity: 0.35;
   cursor: default;
}

.news_page_button:focus-visible {
   outline: 1px solid var(--color-brand);
   outline-offset: 2px;
}

.news_page_button.is_prev,
.news_page_button.is_next {
   position: relative;
}

.news_page_button.is_prev::before,
.news_page_button.is_next::before {
   content: "";
   width: 8px;
   height: 8px;
   border-top: 1px solid currentColor;
   border-right: 1px solid currentColor;
}

.news_page_button.is_prev::before {
   transform: rotate(-135deg);
}

.news_page_button.is_next::before {
   transform: rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
   .news_item_link:hover .news_title {
      color: var(--color-brand);
      transform: translateX(6px);
   }

   .news_item_link:hover .news_arrow::before {
      width: 19px;
   }

   .news_page_button:not(:disabled):not(.is_active):hover {
      color: var(--color-text-primary);
      background: var(--color-bg-base);
   }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
   .news_visual {
      min-height: 480px;
      padding: 150px 0 70px;
   }

   .news_visual_inner,
   .news_content_inner {
      width: calc(100% - 48px);
   }

   .news_visual_inner {
      min-height: 250px;
   }

   .news_visual_heading {
      padding-bottom: 54px;
   }

   .news_visual_title {
      font-size: clamp(48px, 7vw, 62px);
   }

   .news_content {
      padding: 100px 0 130px;
   }

   .news_content_head {
      grid-template-columns: 1fr;
      gap: 52px;
   }

   .news_categories {
      margin-top: 70px;
   }

   .news_item_link {
      grid-template-columns: 48px 96px minmax(0, 1fr) 96px 28px;
      gap: 16px;
      min-height: 112px;
      padding-right: 8px;
      padding-left: 8px;
   }
}

@media screen and (max-width: 599px) {
   .news_visual {
      min-height: 390px;
      padding: 110px 0 48px;
   }

   .news_visual_inner,
   .news_content_inner {
      width: calc(100% - 40px);
   }

   .news_visual_inner {
      min-height: 230px;
   }

   .news_visual_heading {
      padding-bottom: 40px;
   }

   .news_visual_label,
   .news_content_label {
      font-size: 12px;
   }

   .news_visual_title {
      margin: 16px 0 18px;
      font-size: 38px;
   }

   .news_visual_desc {
      font-size: 14px;
      line-height: 1.7;
   }

   .news_visual_desc_break {
      display: none;
   }

   .news_content {
      padding: 80px 0 110px;
   }

   .news_content_head {
      grid-template-columns: 1fr;
      gap: 38px;
   }

   .news_content_head h2 {
      margin-top: 14px;
      font-size: 32px;
   }

   .news_search {
      grid-template-columns: minmax(0, 1fr) 36px 62px;
   }

   .news_search input {
      height: 56px;
      font-size: 14px;
   }

   .news_search_submit {
      font-size: 14px;
   }

   .news_categories {
      display: flex;
      gap: 20px;
      margin-top: 54px;
      overflow-x: auto;
      scrollbar-width: none;
   }

   .news_categories::-webkit-scrollbar {
      display: none;
   }

   .news_category {
      flex: 0 0 32%;
      width: 32%;
      padding: 17px 0;
      font-size: 15px;
   }

   .news_page_en .news_category {
      flex-basis: 38%;
      width: 38%;
      white-space: nowrap;
   }

   .news_list {
      margin-top: 10px;
   }

   .news_item_link {
      grid-template-columns: 44px minmax(0, 1fr) 28px;
      grid-template-rows: auto auto auto;
      column-gap: 16px;
      row-gap: 7px;
      min-height: 142px;
      padding: 26px 4px;
   }

   .news_number {
      grid-column: 1;
      grid-row: 1 / 4;
      align-self: center;
      font-size: 14px;
   }

   .news_type {
      grid-column: 2;
      grid-row: 1;
      font-size: 13px;
   }

   .news_title {
      grid-column: 2;
      grid-row: 2;
      font-size: 18px;
      line-height: 1.35;
   }

   .news_date {
      grid-column: 2;
      grid-row: 3;
      font-size: 12px;
      text-align: left;
   }

   .news_arrow {
      grid-column: 3;
      grid-row: 1 / 4;
      align-self: center;
   }

   .news_pagination {
      margin-top: 54px;
   }

   .news_page_button {
      width: 38px;
      height: 38px;
   }
}

@media (prefers-reduced-motion: reduce) {
   .news_visual_heading,
   .news_content_head,
   .news_categories,
   .news_list,
   .news_pagination,
   .news_title,
   .news_arrow::before {
      animation: none;
      transition: none;
   }

   .news_content_head,
   .news_categories,
   .news_list,
   .news_pagination {
      opacity: 1;
      transform: none;
   }
}
