@font-face {
    font-family: 'Pretendard-ExtraLight';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-SemiBold';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
  font-family: 'Paperozi-Bold';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/2408-3@1.0/Paperlogy-7Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

body {
  margin: 0;
  color: var(--news-text);
  background: var(--news-bg);
  line-height: 1.6;
}
body .main p {
  font-family: 'Pretendard-Regular';
  font-size: 1.6rem;
}

:root {
  --news-blue: #4E67C3;
  --news-deep-blue: #120A55;
  --news-line: #4F68C3;
  --news-text: #393939;
  --news-sub-text: #5b6475;
  --news-bg: #F3F9F9;
  --news-white: #ffffff;
  --news-light-panel: #f8fafc;
  --news-sidebar-bg: #f4f6fb;
  --news-highlight: #D5E9E6;
  --news-shadow: 0 12px 30px rgba(16, 26, 79, 0.08);
  --news-max-width: 1280px;
}

a:focus {
  outline: none;
}
button {
  cursor: pointer;
}

.vol-2026 .icon-bar, .vol-2026 .icon-bar-sub {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
}

.news-image img, .news-detail-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.news-wrap {
width: min(100%, var(--news-max-width));
margin: 0 auto;
background: var(--news-white);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-section {
display: grid;
grid-template-columns: 110px 1fr;
border-top: 1px solid var(--news-line);
background: var(--news-light-panel);
min-height: 560px;
}
.news-section:nth-child(1) {
border-top: none;
}

.news-sidebar {
background: var(--news-sidebar-bg);
border-right: 1px solid var(--news-line);
display: flex;
align-items: center;
justify-content: center;
padding-right: 12px;
overflow: hidden;
}

.news-sidebar-text {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
writing-mode: sideways-lr;
font-size: 3.2rem;
font-weight: 800;
color: var(--news-blue);
letter-spacing: -0.03em;
line-height: 1;
padding: 14px 6px;
z-index: 1;
}

.news-sidebar-text::before {
content: "";
position: absolute;
top: 6px;
bottom: 6px;
right: -6px;
width: 24px;
background: var(--news-highlight);
border-radius: 6px;
z-index: -1;
}

.news-body {
min-width: 0;
padding: 46px 48px;
}

.news-mobile-label {
display: none;
margin-bottom: 18px;
font-size: 0.95rem;
font-weight: 800;
color: var(--news-blue);
}

.news-view {
display: none;
animation: newsFade 0.25s ease;
}

.news-view.is-active {
display: block;
}
.news-view[hidden] {
display: none !important;
}

@keyframes newsFade {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.news-item {
display: grid;
grid-template-columns: 1.2fr 320px;
gap: 36px;
align-items: center;
padding: 8px 0;
}
.news-item.news-item-reverse {
grid-template-columns: 320px 1.2fr;
}

.news-content {
min-width: 0;
}

.news-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
flex-wrap: wrap;
}

.news-header-text {
flex: 1;
min-width: 240px;
}

.news-category {
display: inline-flex;
padding: 8px 14px;
border-radius: 999px;
background: rgba(90, 111, 214, 0.12);
color: var(--news-blue);
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 16px;
}

.news-header-text .news-title {
font-family: 'Paperozi-Bold';
margin: 0 0 3rem;
font-size: clamp(1.9rem, 3vw, 4rem);
line-height: 1.2;
letter-spacing: -0.04em;
color: var(--news-deep-blue);
word-break: keep-all;
}

.news-content .news-description {
margin: 8px 0 0;
font-size: 1.6rem;
color: var(--news-sub-text);
word-break: keep-all;
}

.news-image {
position: relative;
overflow: hidden;
background: #dde5f6;
box-shadow: var(--news-shadow);
aspect-ratio: 4 / 5;
isolation: isolate;
}

.news-image img {
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1);
transition: transform 0.55s ease;
will-change: transform;
}

.news-item:hover .news-image img {
transform: scale(1.06);
}

.news-btn-circle {
width: 108px;
height: 108px;
border: none;
border-radius: 50%;
background: var(--news-deep-blue);
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 4px;
text-align: center;
line-height: 1.2;
box-shadow: 0 10px 24px rgba(35, 45, 122, 0.18);
transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
flex-shrink: 0;
}

.news-btn-circle:hover {
transform: translateY(-4px) scale(1.04);
box-shadow: 0 16px 34px rgba(35, 45, 122, 0.26);
background: #3342a8;
}

.news-btn-plus {
font-size: 3.2rem;
font-weight: 400;
line-height: 1;
color: #9AD7CD;
}

.news-btn-text {
font-size: 1.4rem;
font-weight: 700;
line-height: 1.25;
word-break: keep-all;
}

/* 상세 영역 */
.news-detail-top {
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
margin-bottom: 22px;
}

.news-back-button {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 16px;
border: none;
border-radius: 999px;
background: #fff;
color: var(--news-deep-blue);
font-weight: 800;
box-shadow: 0 6px 16px rgba(16, 26, 79, 0.08);
transition: transform 0.2s ease;
}

.news-back-button:hover {
transform: translateY(-2px);
}

.news-detail-card {
position: relative;
background: rgba(255, 255, 255, 0.86);
border: 1px solid #8294D4;
overflow: hidden;
box-shadow: var(--news-shadow);
border-radius: 26px 26px 0 0;
overflow: visible;
z-index: 1;
}
.news-detail-card::after {
content: "";
position: absolute;
left: 8px;
right: 0;
width: calc(100% - 8px);
height: 8px;
bottom: -9px;
background: #C8D2EC;
z-index: 0;
}

.news-detail-header {
background: var(--news-deep-blue);
color: #fff;
padding: 20px 34px;
border-radius: 26px 26px 0 0;
}

.news-detail-title {
font-family: 'Paperozi-Bold';
margin: 0;
font-size: clamp(1.7rem, 3vw, 2.8rem);
line-height: 1.2;
letter-spacing: -0.04em;
word-break: keep-all;
}

.news-detail-hero {
margin: 0;
background: #dfe7f7;
}

.news-detail-hero img {
aspect-ratio: 16 / 7;
object-fit: cover;
}

.news-detail-body {
padding: 38px 44px 46px;
}

.news-detail-body .news-detail-paragraph {
margin: 0 0 26px;
color: #3a3f4b;
font-size: 1.6rem;
word-break: keep-all;
}

.news-detail-paragraph:last-child {
margin-bottom: 0;
}

.news-detail-actions {
display: flex;
justify-content: center;
margin-top: 38px;
}

.news-detail-link {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.5rem 5rem 0.5rem 3rem;
background: #1b1464;
color: #fff;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
font-size: clamp(14px, 2vw, 16px);
white-space: nowrap;
transition: background 0.3s ease, transform 0.2s ease;
}

.news-index {
display: flex;
align-items: flex-start;
gap: 12px;
margin: 3rem 0 1rem 0;
}
.news-index .news-index-num {
flex: 0 0 30px; /* 고정폭 */
font-family: 'Paperozi-Bold';
font-size: 2.0rem;
font-weight: 700;
color: #7fc4b5;
text-decoration: underline;
text-underline-offset: 3px;
letter-spacing: 1px;
}
.news-index .news-index-tit {
  font-family: 'Paperozi-Bold';
  font-size: 2.0rem;
  color: #4f6ac5;
  word-break: keep-all;
}

.news-index-title {
margin: 0;
font-size: 1.8rem;
font-weight: 800;
color: #4c5fd7;
line-height: 1.3;
word-break: keep-all;
}

.news-data-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 32px;
  align-items: start;
  padding: 3rem 5rem;
  background: repeating-linear-gradient(135deg,#4B66BB 0px,#4B66BB 4px, transparent 4px, transparent 10px), #4F6AC5;
  color: #ffffff;
}
.news-data-box .news-data-title {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.news-data-box .news-data-title p {
  text-align: left;
  margin-bottom: 0;
}
.news-data-box .news-data-title h3 {
  font-size: 1.8rem;
  color: #B4FFF9;
  font-family: 'Pretendard-SemiBold';
  word-break: keep-all;
}
.news-data-box .news-data-content p {
  font-size: 1.6rem;
}
.news-data-box .news-data-content p.text-dot {
margin-left: 5px;
text-indent: -11px;
}
.news-data-box img {
display: block;
width: auto;
height: auto;
}

/* 화살표 */
.news-detail-link::after {
content: "";
position: absolute;
right: 16px;
width: 10px;
height: 10px;
border-right: 3px solid #7fffd4;
border-bottom: 3px solid #7fffd4;
transform: rotate(-45deg);
transition: transform 0.3s ease;
}

/* ✨ hover 효과 */
.news-detail-link:hover {
background: #261f80; /* 살짝 밝은 네이비 */
transform: translateY(-3px); /* 위로 둥 뜸 */
}


.vol-2026 .main .note, .vol-2026 .main .note a {
  font-size: 1.6rem;
}

.maininfo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.maininfo .news-info-list div:last-child {
  display: flex;
}
.maininfo .news-info-list div:last-child a {
  flex: 1;
}
.maininfo .news-info-list div:last-child a img {
width: 100%;
  height: auto;
  display: block;
}

.vol-2026 .footer-box {
  width: min(100%, var(--news-max-width));
}

@media (min-width: 769px) and (max-width: 1024px) {
.news-section {
min-height: auto;
}
.news-sidebar-text {
font-size: 2.5rem;
}
.news-item {
grid-template-columns: 1.2fr 320px;
gap: 28px;
}
.news-item.news-item-reverse {
grid-template-columns: 320px 1.2fr;
gap: 28px;
}
.news-header {
margin-bottom: 2rem;
}
.news-header-text .news-title {
margin: 0 0 1rem;
}
.news-btn-circle {
width: 98px;
height: 98px;
}

.news-detail-body .news-detail-paragraph {
font-size: 1.6rem;
}

.news-image {
width: 100%;
max-width: 320px;
aspect-ratio: 4 / 5;
justify-self: end;
}

.news-data-box {
  grid-template-columns: 3fr 7fr;
  padding: 3rem 3rem;
}
  #member-info .news-data-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
.news-section {
grid-template-columns: 1fr;
}

.news-sidebar {
display: none;
}

.news-body {
padding: 28px 20px;
}

.news-mobile-label {
display: none;
}

.news-header {
margin-bottom: 2rem;
}
.news-header-text .news-title {
font-size: 2.5rem;
margin: 0 0 1rem;
}
.news-content .news-description {
font-size: 1.4rem;
}
.news-item, .news-item.news-item-reverse {
grid-template-columns: 1fr;
}
.news-item.news-item-reverse .news-image {
order: 2;
}
.news-item.news-item-reverse .news-content {
order: 1;
}

.news-btn-circle {
width: 92px;
height: 92px;
}

.news-btn-plus {
font-size: 1.7rem;
}

.news-btn-text {
font-size: 1.3rem;
}

.news-detail-header {
padding: 16px 20px;
border-radius: 20px 20px 0 0;
}

.news-detail-body {
padding: 26px 20px 32px;
}

.news-detail-hero img {
aspect-ratio: 4 / 3;
}

.news-detail-top {
align-items: flex-start;
flex-direction: column;
}
.news-detail-body .news-detail-paragraph {
font-size: 1.4rem;
}
.news-index .news-index-tit {
  font-size: 1.8rem;
}

.news-data-box {
  grid-template-columns: 1fr;
  padding: 3rem 2rem;
}
.news-data-box .news-data-title h3 {
  font-size: 1.6rem;
}
.news-data-box .news-data-title p {
  font-size: 1.6rem;
}
.news-data-box .news-data-content p, .news-data-box .news-data-content p span {
  font-size: 1.4rem;
}
.news-data-box img {
display: block;
width: 100%;
height: auto;
}
.vol-2026 .main .note, .vol-2026 .main .note a {
  font-size: 1.4rem;
}
}