/* ===== 레이아웃 ===== */
.page {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 100vh;
  background: var(--color-bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}



/* ===== 메인 비주얼 ===== */
.main-visual {
  flex-shrink: 0;
  height: 660px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.main-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none;
}

.main-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.main-visual-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}

.main-visual-container {
  flex: 1 1 0;
  min-width: 0;
  max-width: var(--max-width);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.main-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 40px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-15);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-title {
  margin: 0;
  font-weight: 700;
  font-size: 3rem;  
  color: #fff;
  text-align: center;
  width: 80%;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 0, 0, 0.35);
}

/* 브레드크럼 (header-inner와 동일 너비) */
.breadcrumb {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1500px;
  background: #fff;
  box-sizing: border-box;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 24px 20px;
}

.breadcrumb-inner span {
  font-weight: 500;
  font-size: var(--fs-11);
  color: var(--color-text);
  white-space: nowrap;
}

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

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}


.chevron-right {
  flex-shrink: 0;
  width: 20px;
  height: 13px;
  /* border-radius: 50%;
  background: var(--color-accent); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; 
}

.chevron-orange::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
  margin-left: -2px;
}

.content-next-prev{
  margin-top: 2rem;
}
.other-menu {
  display: inline-block;
  padding: 0.3em 0.5em;
  margin-left: 0.25em;
  font-size: var(--fs-09);
  font-weight: 500;
  color: var(--color-accent, #f78e1e);
  text-decoration: none;
  border: 1px solid var(--color-accent, #f78e1e);
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.other-menu:hover {
  background-color: var(--color-accent, #f78e1e);
  color: #fff;
}

/* 관련 칼럼 메뉴 (column-5 등 하단 링크 영역) */
/* 목록/이전·다음 기사 네비게이션 */
.content-nav-direction {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  border-top: 1px solid var(--color-border-light);
  margin: 0 auto;
  padding-top: 2rem;
}
.content-nav-direction .back-to-list,
.content-nav-direction .next-article {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--fs-10);
  font-weight: 500;
  color: var(--color-accent);
  text-decoration: none;
  padding: var(--pad-04) var(--pad-2);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.content-nav-direction .back-to-list:hover,
.content-nav-direction .next-article:hover {
  background-color: var(--color-accent);
  color: #fff;
}
.content-nav-direction .back-to-list::before {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-right: 0.15em;
}
.content-nav-direction .next-article::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-left: 0.15em;
}

/* 호수(vol) + 관련 링크 드롭다운 — 펼침 상태 공통 (header.css에 닫힘·패널 기본만 정의) */
.vol-dropdown.is-open,
.related-link-dropdown.is-open {
  max-height: min(40vh, 40rem);
  opacity: 0.8;
  overflow-y: auto;
  padding: 4px 0;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.2s ease,
    visibility 0s linear 0s;
}

.related-bar {
  width: 100%;
  margin-top: 5rem; 
  /* padding-top: 1.75rem; */
  /* border-top: 1px solid var(--color-border-light); */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-bottom: 2rem;
}
#related-menu-include {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  align-items: center;
}
.related-menu-label {
  font-size: var(--fs-13);
  font-weight: 700;
  color: var(--color-header-bg);
  letter-spacing: -0.02em;
  margin-right: 0.25rem;
}
#related-link-include {
  margin-left: 0;
}
.related-link-wrap {
  position: relative;
  z-index: 5;
}
/* 위로 열리는 드롭다운: .content overflow-x:hidden 시 overflow-y가 auto로 취급되어 패널이 잘림 */
.content:has(#related-link-include),
.content:has(.related-link-wrap) {
  overflow: visible;
}
.content-body:has(#related-link-include),
.content-body:has(.related-link-wrap) {
  overflow: visible;
}
.related-link-select.related-link-trigger {
  min-width: 250px;
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  font-size: var(--fs-10);
  font-family: var(--font-pretendard);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 4L1 9h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  cursor: pointer;
  text-align: left;
}
.related-link-select.related-link-trigger:hover,
.related-link-select.related-link-trigger:focus {
  border-color: var(--color-accent);
  outline: none;
}
/* 위로 펼침만 다름 — 닫힘·테두리·그림자·전환은 .vol-dropdown과 동일 계열 */
.related-link-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
  background: #000;
  border: 1px solid var(--color-accent-alpha);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 200;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.2s ease,
    visibility 0s linear 0.35s;
}
.related-link-dropdown[hidden] {
  display: none !important;
}
.related-menu-bottom {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: var(--fs-10);
  font-weight: 500;
  color: var(--color-accent);
  background: var(--color-bg);
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.related-menu-bottom:hover {
  background-color: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.carousel-arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-left: -3px;
  transition: border-color 0.2s ease;
}

.carousel-orange::after {
  border-color: #fff;
}

.carousel-arrow.carousel-orange:hover {
  background: #000;
}
.carousel-arrow.carousel-orange:hover::after {
  border-color: #fff;
}

/* ===== 섹션 ===== */
.section {
  flex-shrink: 0;
  width: 100%;
}


.section .container {
  flex: 1 1 0;
  min-width: 0;
  max-width: var(--max-width);
}

/* ===== 사이드바 ===== */
/* aside 포함 시 .content가 flex 래퍼 역할 */
.content:has(.side.side-pc) {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 100px;
  max-width: 1500px;
  margin: 0 auto;
  overflow-x: hidden;
}
.content:has(.side.side-pc) > * {
  min-width: 0;
  max-width: 100%;
}
.side {
  flex-shrink: 0;
  width: 358px;
  position: relative;
  border-top: 9px solid var(--color-accent);
}
.side.side-pc {
  align-self: flex-start;
}

.side-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  gap: 40px;
  width: 100%;
}

.side-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

.side-block-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.frame {
  width: 100%;
  position: relative;
  border-bottom: 2px solid var(--color-accent);
}

.frame-label {
  font-weight: 700;
  font-size: var(--fs-15);

  color: var(--color-accent);
  white-space: nowrap;
  padding-bottom: 10px;
  margin: 0;
}

.frame-thick .frame-label {
  white-space: pre;
}

.side-author {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.side-text {
  text-align: left;
  font-weight: 700;
  font-size: var(--fs-13);

  color: var(--color-text);
}

.side-text p {
  margin: 0 0 0.2em;
}

.side-image-wrap {
  width: 100%;
  /* height: 293px; */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.side-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.side-nav-item,
.side-nav-active {
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--color-accent);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.side-nav-item:hover {
  background-color: rgba(247, 142, 30, 0.08);
}
.side-nav-item:hover .side-nav-text,
.side-nav-item:hover .side-nav-text-wrap {
  color: var(--color-accent, #f78e1e);
  font-weight: 700;
}

.side-nav-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 10px;
  width: 100%;
}

.side-nav-row a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.side-nav-row a .side-nav-text,
.side-nav-row a .side-nav-text-wrap {
  flex: 1 0 0;
  min-width: 0;
}

.side-nav-text,
.side-nav-text-wrap {
  flex: 1 0 0;
  min-width: 0;
  font-size: var(--fs-13);
  color: var(--color-text);
  text-align: left;
  white-space: pre-wrap;
}

.side-nav-active .side-nav-row {
  padding: 16px 0;
  padding-bottom: 10px;
}

/* ===== 본문 콘텐츠 ===== */
.side-right-content {
  width: 100%;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.side-right-content > * {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.content-title-wrap {
  width: 100%;
  position: relative;
  border-top: 9px solid var(--color-accent);
  margin-bottom: 5rem;
}

.content-body.gap-0 {
  margin-top: 0;
}
.content-body.gap-0 > * + * {
  margin-top: 0;
}

.content-corner-name {
  margin: 0;
  padding: 1rem 1rem 0;
  font-size: var(--fs-09);
  color: #666;
  text-align: center;
}

.content-title {
  margin: 0;
  padding: 6rem 10px 2rem 10px;
  word-break: keep-all;
  font-weight: 700;
  font-size: 2.3rem;
  
  text-align: center;
  color: var(--color-text);
  flex: 1 0 0;
  min-width: 0;
}

.content-sub-title {
  margin: 0;
  word-break: keep-all;
  font-weight: 700;
  font-size: var(--fs-15);
  
  text-align: center;
  color: var(--color-text);
  flex: 1 0 0;
  min-width: 0;
}

.content-body {
  display: block;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
}

/* 음성 재생 버튼 */
.sound-play-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  background: var(--color-accent, #f78e1e);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill, 999px);
  cursor: pointer;
  font-size: var(--fs-09, 0.85rem);
  font-weight: 600;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.sound-play-btn:hover {
  background: #e67d0d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}
.sound-play-btn:focus-visible {
  outline: 2px solid var(--color-accent, #f78e1e);
  outline-offset: 2px;
}
.sound-play-btn.is-playing {
  background: #3d3e42;
}
.sound-play-btn.is-playing:hover {
  background: #555;
}
.sound-play-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sound-play-btn__icon--pause {
  display: none;
}
.sound-play-btn.is-playing .sound-play-btn__icon--play {
  display: none;
}
.sound-play-btn.is-playing .sound-play-btn__icon--pause {
  display: flex;
}

.side-author-dept{
  font-size: var(--fs-11);
}

.upper-caption.upper-caption--ref {
  vertical-align: baseline;
  top: 0;
  font-size: 0.9em;
  font-weight: 800;
  color: var(--color-accent);
  flex-shrink: 0;
  min-width: 1.25em;
}
.upper-caption-list {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1rem 1rem 1.125rem;
  border-left: 3px solid var(--color-accent);
  background: #f3f3f3;
  border-radius: 0 10px 10px 0;
  text-align: left;
}
.upper-caption-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem 0.65rem;
}
.upper-caption-list__item + .upper-caption-list__item {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--color-border-light, #e0e0e4);
}
.upper-caption-list__body {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}
.upper-caption-list__body strong {
  font-weight: 700;
  color: #797878;
}


@media (max-width: 768px) {
  .sound-play-btn {
    top: 0.6rem;
    right: 0.6rem;
    padding: 0.35rem 0.7rem;
  }
}


.card {
  width: 100%;
  min-width: 0;
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.card.card-01 {
  text-align: center;
}
.card.card-01 .card-num
.card.card-01 .card-title {
  text-align: center;
}
.card.card-01 .card-title {
  flex: 0 0 auto;
}

.card-num {
  flex-shrink: 0;
  font-weight: 700;
  font-size: var(--fs-13);
  
  color: var(--color-accent);
  white-space: nowrap;
}

.card-title {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 700;
  font-size: var(--fs-15);
  
  color: var(--color-text);
  white-space: normal;
  word-break: keep-all;
}

.content-p {
  word-break: keep-all;
  font-size: var(--fs-125);
  line-height: var(--lh-23);
  color: var(--color-text);
  text-align: left;
  flex: 1 0 0;
  min-width: 0;
  margin-bottom: 2rem;
}
/* div.content-p(래퍼) 안의 p.content-p에 위쪽 간격 */
.content-p > * + .content-p {
  margin-top: 41px;
}

.content-p-ref {
  word-break: keep-all;
  font-size: var(--fs-125);
  line-height: var(--lh-23);
  color: var(--color-text);
  text-align: left;
  flex: 1 0 0;
  min-width: 0;
  margin-bottom: 1rem;
}

.content-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.content-row > * {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.content-p-half {
  flex: 1 0 0;
  min-width: 400px;
}


.content-refs {
  margin: 0 0 2rem;
  font-size: var(--fs-11);

  color: #555;
  text-align: left;
  /* <ul>에 decimal list-style은 표준이 아니어서 10번째 이후 번호가 꼬일 수 있음 → counter로 연속 번호 보장 */
  list-style: none;
  padding-left: 0;
  /* counter-reset: content-ref; */
}
.content-refs li {
  /* counter-increment: content-ref; */
  position: relative;
  margin-bottom: 0.35rem;
  margin-left: 0;
  padding-left: 1.75rem;
  list-style: none;
}
.content-refs li::before {
  /* content: counter(content-ref) ". "; */
  content: "-";
  position: absolute;
  left: 0;
  width: 1.5rem;
  text-align: right;
  /* font-variant-numeric: tabular-nums; */
}

.content-refs-2 {
  margin: 0 0 2rem;
  font-size: var(--fs-11);

  color: #555;
  text-align: left;
  /* <ul>에 decimal list-style은 표준이 아니어서 10번째 이후 번호가 꼬일 수 있음 → counter로 연속 번호 보장 */
  list-style: none;
  padding-left: 0;
  /* counter-reset: content-ref; */
}
.content-refs-2 li {
  /* counter-increment: content-ref; */
  position: relative;
  margin-bottom: 0.35rem;
  margin-left: 0;
  padding-left: 1.75rem;
  list-style: none;
}
.content-refs-2 li::before {
  content: "*";
  position: absolute;
  left: 0;
  width: 1.5rem;
  text-align: right;
  /* font-variant-numeric: tabular-nums; */
}

/* 그림 출처 등 노트 블록 */
.note {
  width: 100%;
  text-align: left;
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-card-bg, #f2f3f8);
  border-left: 4px solid var(--color-accent, #f78e1e);
  border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
  font-size: var(--fs-09);
  color: var(--color-text, #333);
  box-sizing: border-box;
}
.note__title {
  margin: 0 0 0.75rem 0;
  font-size: var(--fs-10);
  font-weight: 700;
  color: var(--color-text, #333);
  letter-spacing: -0.02em;
}
.note__list {
  margin: 0;
  padding-left: 1.25rem;
  list-style:square;
  font-size: var(--fs-10);
}
.note__item {
  margin-bottom: 0.5rem;
  word-break: break-all;
}
.note__item:last-child {
  margin-bottom: 0;
}
.note__item b {
  font-weight: 600;
  color: var(--color-text, #333);
  margin-right: 0.25rem;
}
.note a {
  color: #3f3f3f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.note a:hover {
  border-bottom-color: var(--color-accent, #f78e1e);
  color: #d97a18;
}

.accordion-body{
  padding : 2rem 4rem;
}


/* ===== 반응형 (선택) ===== */
@media (max-width: 1200px) {
  .content:has(.side.side-pc),
  .subscribe-wrapper {
    gap: 60px 80px;
  }
}

@media (max-width: 920px) {

  .breadcrumb-inner {
    flex-wrap: wrap;
  }

  .content:has(.side.side-pc),
  .subscribe-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  /* side-pc는 main 아래에 (태블릿/모바일) */
  .side-right-content {
    order: -1;
  }
  .side.side-pc {
    order: 1;
  }

  .side {
    order: 0;
    width: 100%;
    max-width: 729px;
  }

  .card{
    padding: 10px 10px;
    margin-top : 20px;
  }

  /* 글쓴이 블록: 왼쪽(제목+텍스트) | 오른쪽(이미지) */
  .side-block:has(.side-block-inner) {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .side-block:has(.side-block-inner) .side-block-inner {
    flex: 1 1 auto;
    min-width: 0;
  }

  .side-block:has(.side-block-inner) .side-image-wrap {
    margin-left: auto;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
  }

  .side-block:has(.side-block-inner) .side-image-wrap .side-image,
  .side-block:has(.side-block-inner) .side-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 768px) {
  .content{
    gap : 0px;
  }
  .content-body {
    margin-top: 0;
  }
  .content-body > * + * {
    margin-top: 20px;
  }
  .content-body > .ig--float-left,
  .content-body > .ig--float-right {
    margin-bottom: 20px;
  }
  .header-left {
    width: auto;
  }

  .header-dropdown {
    display: none;
  }

  .main-title {
    font-size: 2rem;
  }

  .breadcrumb-inner {
    flex-wrap: wrap;
    padding: 8px 16px;
    gap: 2px;
  }

  .breadcrumb-inner .breadcrumb-item {
    gap: 0;
  }

  .breadcrumb-inner span {
    font-size: var(--fs-09);
  }

  .content,
  .subscribe-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  /* 모바일: main 먼저, side-pc 아래에 */
  .side-right-content {
    order: -1;
  }
  .side.side-pc {
    order: 1;
  }

  .side {
    width: 100%;
    max-width: 729px;
  }

  .frame-label {
    font-size: var(--fs-13);
  }

  .side-text {
    font-size: var(--fs-13);
  }

  .side-nav-text,
  .side-nav-text-wrap {
    font-size: var(--fs-13);
  }

  .content {
    min-width: 0;
    max-width: none;
  }

  .content-title {
    font-size: var(--fs-15);
    padding: 24px 10px 24px 10px;
  }

  .card{
    gap : 10px;
  }
  
  .card.card-01 {
    min-width: 0;
  }

  .card.card-01 .card-title {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: left;
    font-size: var(--fs-13);
  }
  .card.card-01 .card-num {
    font-size: var(--fs-13);
  }

  .content-p,
  .content-p-half {
    font-size: var(--fs-13);
    word-break: normal;
  }

  .content-row {
    flex-direction: column;
  }

  .icon-wrap{
    margin-right: 5px;
    width: 15px;
    height: 15px;
  }

}

/* ===== 발전기금/인사 테이블 공통 (fund, insa) ===== */
.fund-wrapper,
.insa-wrapper {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 1rem;
  box-sizing: border-box;
}
.guide {
  flex: 1;
  min-width: 0;
  max-width: none;
  text-align: left;
  margin: 0;
  font-size: var(--fs-10);
  color: var(--color-text, #333);
  box-sizing: border-box;
}
.summary-btn {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  font-size: var(--fs-09);
  font-weight: 500;
  color: #fff;
  background: var(--color-accent, #f78e1e);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.summary-btn:hover {
  background: #e67d0d;
}
.summary-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* 수상 및 연구성과 리스트 (aword) */
.aword-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.aword-list--summary .aword-list__content,
.aword-list--summary .aword-list__author,
.aword-list--summary .aword-list__thumb {
  display: none !important;
}
/* 제목만 보기 시 상위 영역이 줄어들지 않도록 최소 높이 유지 */
.section:has(.aword-list--summary) {
  min-height: 60vh;
}
.aword-list__item {
  border: 1px solid var(--color-border, #b7b9bd);
  border-radius: var(--radius-md, 8px);
  transition: border-color 0.2s ease;
}
.aword-list__item:last-child {
  border-bottom: 1px solid var(--color-border, #b7b9bd);
}
.aword-list__item:hover {
  border-color: var(--color-accent, #f78e1e);
}
.aword-list__item:hover + .aword-list__item {
  border-top-color: var(--color-accent, #f78e1e);
}
.aword-list__link {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding: 2.5rem;
  text-decoration: none;
  color: inherit;
  transition: background-color 0.2s ease;
}
.aword-list__link:hover {
  background-color: rgba(247, 142, 30, 0.06);
}

/* 제목만 보기: 링크 블록 상·하 패딩 50% 축소 (기본 2.5rem → 1.25rem) */
.aword-list--summary .aword-list__link {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.aword-list__link:hover .aword-list__content {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.2);
  text-underline-offset: 2px;
}
.aword-list__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aword-list__title {
  font-size: var(--fs-15);
  word-break: keep-all;
  font-weight: 600;
  color: var(--color-text, #444);
  display: block;
  text-align: left;
}
.aword-list__author {
  display: block;
  font-weight: 600;
  font-size: var(--fs-11);
  color: #666;
  margin-bottom: 0.35rem;
}
.aword-list__content {
  text-align: left;
  font-size: var(--fs-13);
  line-height: var(--lh-23);
  word-break: keep-all;
  color: #555;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  margin-top: 1.5rem;
}
/* 원본이미지 : 1090x790 -> 365x265 (약 3:2 비율) */
.aword-list__thumb {
  flex-shrink: 0;
  width: 365px;
  height: 265px;
  align-self: stretch;
  position: relative;
  border-radius: var(--radius-md, 8px);
  overflow: hidden;
  background: transparent;
  border : 1px solid #edece8
}
.aword-list__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.aword-list__link:hover .aword-list__thumb img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

@media (max-width: 768px) {
  .aword-list__link {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .aword-list__body {
    order: 1;
  }
  .aword-list__thumb {
    order: -1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    margin: 0;
    border-radius: 0;
  }
  .aword-list__thumb img {
    height: 100%;
    min-height: 100%;
  }
  .aword-list__content{
    font-size: var(--fs-10);
    letter-spacing: var(--ls-08);
  
  }
  .aword-list__content{
    line-height: var(--lh-16);
  
  }
}

/* ===== 구독신청 (subscribe.html) ===== */
.subscribe-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 100px;
  min-width: 0;
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}
.subscribe-wrapper > * {
  min-width: 0;
  max-width: 100%;
}
.subscribe-intro {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: var(--fs-13);
  padding: 1rem 0;
  background-color: #313131;
  border-radius: 5px;
  color: #fff;
}

.subscribe-form{
  margin: 0 auto;
}
.subscribe-form__row-group {
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 2rem;
}
.subscribe-form__row-group .subscribe-form__row:last-child {
  margin-bottom: 0;
}
.subscribe-form__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.subscribe-form__input {
  width: 440px;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  border: solid 1px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: var(--fs-10);
  font-family: inherit;
  box-sizing: border-box;
}
.subscribe-form__input:focus {
  outline: none;
  border-color: var(--color-accent, #f78e1e);
}
.subscribe-terms {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: var(--fs-11);
  color: var(--color-text, #333);
}
.subscribe-terms__title {
  margin: 0 0 1rem;
  font-weight: 600;
}
.subscribe-terms__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
}
.subscribe-terms__list dt {
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--color-text, #333);
}
.subscribe-terms__list dt:first-child {
  margin-top: 0;
}
.subscribe-terms__list dd {
  position: relative;
  margin: 0.25rem 0 0;
  padding-left: 1rem;
  word-break: keep-all;
}
.subscribe-terms__list dd::before {
  display: block;
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background-color: #000000;
  opacity: 0.3;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.subscribe-form__row--agree {
  margin-top: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1.25rem;
}
.subscribe-form__row--agree > .subscribe-form__agree {
  flex-shrink: 0;
}
.subscribe-form__row--agree > span {
  flex: 0 1 auto;
  margin-left: auto;
  font-size: var(--fs-13);

  text-align: right;
}
.subscribe-form__row--agree > span a {
  margin-left: auto;
  background-color: #000;
  padding: 0.5rem 1rem;
  font-size: var(--fs-13);
  border-radius: 5px;
  color: white;
}
.subscribe-form__row--agree > span a:hover {
  color: var(--color-accent, #f78e1e);
}
.subscribe-form__agree {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-13);

  cursor: pointer;
  text-align: left;
}
.subscribe-form__agree input[type="checkbox"] {
  flex-shrink: 0;
  transform: scale(2);
  transform-origin: left center;
  cursor: pointer;
  margin-right: 10px;
}
.subscribe-form__agree span {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-13);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: 10px;
}
.subscribe-form__agree a {
  margin-left: auto;
  background-color: #000;
  padding: 0.5rem 1rem;
  font-size: var(--fs-13);
  border-radius: 5px;
  color: white;
}
.subscribe-form__agree a:hover {
  color: var(--color-accent, #f78e1e);
}

.subscribe-form__actions {
  width: 100%;
  margin-top: 4rem;
  text-align: center;
  box-sizing: border-box;
}
.subscribe-form__submit {
  width: 100%;
  padding: 0.75rem 2rem;
  background: var(--color-accent, #f78e1e);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: var(--fs-13);
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.subscribe-form__submit:hover {
  opacity: 0.9;
}

.accordion-list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.accordion-item {
  border: 1px solid var(--color-border, #b7b9bd);
  border-bottom: none;
  transition: border-color 0.25s ease;
}
.accordion-item:last-child {
  border-bottom: 1px solid var(--color-border, #b7b9bd);
}
.accordion-item--open {
  border-color: var(--color-accent, #f78e1e);
}
.accordion-item--open:last-child {
  border-bottom-color: var(--color-accent, #f78e1e);
}
.accordion-item__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  scroll-margin-top: 120px;
}
.accordion-item__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: #fff;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--color-text, #333);
  text-align: left;
  transition: background 0.2s ease;
}
.accordion-item__title:hover {
  background: #f5f5f5;
}
.accordion-item--open .accordion-item__title {
  background: var(--color-accent, #f78e1e);
  color: #fff;
}
.accordion-item--open .accordion-item__title:hover {
  background: var(--color-accent, #f78e1e);
  color: #fff;
}
.accordion-item--open .accordion-item__icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}
.accordion-item__title:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.accordion-item__title-text {
  flex: 1;
  font-weight: 600;
  font-size: var(--fs-13);
}
.accordion-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.25s ease;
}
.accordion-item__title[aria-expanded="true"] .accordion-item__icon {
  transform: rotate(180deg);
}
.accordion-item__content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item--open .accordion-item__content {
  max-height: 5000vh;
}
.accordion-item__youtube {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.accordion-item__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.accordion-body > .accordion-item__youtube {
  margin-bottom: 1.25rem;
}

/* 유튜브 임베드 플레이어 (칼럼 등 본문) */
.youtube-embed {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0.5rem 0 1rem;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.youtube-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* startup 영상: 가운데 정렬, 기본 크기 1.5배(560→840) */
.startup-video-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 6rem;
}
.startup-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 유튜브 두 개 좌우 배치 (각 50%) */
.youtube-embed-row {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.youtube-embed-row .youtube-embed-col {
  flex: 0 0 calc(50% - 0.5rem);
  width: calc(50% - 0.5rem);
  min-width: 0;
}

.youtube-embed-row .youtube-embed-col .content-p {
  margin-bottom: 0;
}

.youtube-embed-row .youtube-embed {
  max-width: none;
}
@media (max-width: 768px) {
  .youtube-embed-row {
    flex-direction: column;
  }
  .youtube-embed-row .youtube-embed-col {
    flex: 0 0 100%;
    width: 100%;
  }
}

.accordion-item__body {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  font-size: var(--fs-10);
  color: var(--color-text, #333);
}
.accordion-item__close {
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 1rem;
  padding: 0;
  /* border: 1px solid var(--color-border, #b7b9bd);
  border-radius: 50%; */
  background: #fff;
  color: var(--color-text, #333);
  font-size: var(--fs-15);
  cursor: pointer;
  transition: transform 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}
.accordion-item:hover {
  border: 2px solid var(--color-accent, #f78e1e);
}
.accordion-item__close:hover {
  border-color: var(--color-accent, #f78e1e);
  color: var(--color-accent, #f78e1e);
  transform: rotate(90deg);
}
.accordion-item__close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.accordion-item__close span {
  display: block;
}

@media (max-width: 768px) {
  .accordion-item__heading {
    scroll-margin-top: 72px;
  }
}

.content-h3 {
  font-size: var(--fs-15);
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-align: left;
}

.content-h3 ~ .content-h3 {
  margin-top: 6rem;
}

/* 인용·강조 블록 */
.content-quote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--color-accent, #f78e1e);
  background: #f8f9fa;
  font-style: normal;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.content-quote__text {
  margin: 0 0 0.5rem;
  font-size: var(--fs-13);
  font-weight: 500;
  color: var(--color-text, #333);
  text-align: left;
}
.content-quote__cite {
  display: block;
  font-size: var(--fs-13);
  font-weight: 500;
  color: #666;
  font-style: normal;
}
.content-quote__name {
  margin: 0 0 0.5rem;
  font-size: var(--fs-13);
  font-weight: 500;
  color: var(--color-text, #333);
  text-align: left;
}

/* 목록 — 요약·하이라이트 블록 (content-quote와 톤 통일) */
.content-list {
  margin: 0.75rem 0 2rem;
  padding: 1.125rem 1.25rem 1.125rem 1.5rem;
  list-style: none;
  font-size: var(--fs-11);
  line-height: var(--lh-18);
  color: var(--color-text, #333);
  background: linear-gradient(135deg, var(--color-card-bg, #f2f3f8) 0%, #fafbfc 100%);
  border: 1px solid var(--color-border-light, #e8e8e8);
  border-left: 4px solid var(--color-accent, #f78e1e);
  border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.content-list li {
  position: relative;
  padding-left: 1.1em;
  margin: 0;
  text-align: left;
}

.content-list li + li {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(183, 185, 189, 0.35);
}

.content-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent, #f78e1e);
  box-shadow: 0 0 0 2px rgba(247, 142, 30, 0.2);
}

/* 단락 변형 — 긴 명단·나열형 본문 (줄바꿈 br 유지) */
.content-p.content-p--list {
  font-size: var(--fs-10);
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.35rem 1.35rem;
  color: var(--color-text, #363636);
  background: var(--color-bg, #fff);
  border: 1px solid var(--color-border-light, #d9d9d9);
  border-left: 4px solid var(--color-accent, #f78e1e);
  border-radius: 0 var(--radius-md, 8px) var(--radius-md, 8px) 0;
  box-shadow: 0 2px 12px rgba(54, 54, 54, 0.06);
}

@media (max-width: 768px) {
  .content-list {
    margin-bottom: 1.5rem;
    padding: 1rem 1rem 1rem 1.25rem;
    font-size: var(--fs-10);
    line-height: var(--lh-16);
  }

  .content-list li + li {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .content-p.content-p--list {
    font-size: var(--fs-09);
    line-height: 1.65;
    padding: 1rem 1rem 1.15rem;
    margin-bottom: 1.5rem;
  }
}

/* 사진 갤러리 그리드 */
.content-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.content-gallery__item {
  margin: 0;
  width: 100%;
  height: 330px;
  overflow: hidden;
}
.content-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 갤러리 중간 행만 가로 비율 (예: 7·8번째를 4:6) — 부모 그리드 한 행 전체를 차지 */
.content-gallery__row--4-6 {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 1rem;
}

.content-gallery__row--4-6 .content-gallery__item {
  height: 330px;
}

/* 질문 헤딩 */
.content-question {
  font-size: var(--fs-15);
  font-weight: 700;
  margin-bottom: 1rem;
}
.content-question:first-child {
  margin-top: 0;
}

.content-question.type-1 {
  color: #f77606;
  text-align: left;
}

/* type-1 질문: 두 번째부터 위쪽 간격 (중간에 다른 요소가 있어도 동일) */
.content-question.type-1 ~ .content-question.type-1 {
  margin-top: 4rem;
}

/* SW31__box: QR 왼쪽, 문의 안내 오른쪽 */
.SW31__box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--color-border, #b7b9bd);
  background: #fafafa;
}
.SW31__box__qr {
  flex-shrink: 0;
}
.SW31__box__qr img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.SW31__box__body {
  flex: 1;
  min-width: 0;
}
.SW31__box__title {
  display: block;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--color-text, #333);
  margin-bottom: 0.75rem;
}
.SW31__box__list {
  margin: 0;
  padding: 0 0 0 1.25rem;
  font-size: var(--fs-11);
    color: var(--color-text, #333);
}
.SW31__box__list li {
  margin-bottom: 0.25rem;
}

.w-1200 {
  max-width: 1200px;
  margin: auto;
}

.w-1500 {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  flex: 1 0 0; /* 제목만 보기 등 내용이 줄어들어도 너비 유지 */
  min-width: 0;
}

.content-body.w-1200 {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 100px;
  min-width: 0;
  max-width: 1500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
  text-align: center;
  overflow-x: hidden;
}

.content > * {
  min-width: 0;
  max-width: 100%;
}

/* content 내 리스트는 왼쪽 정렬 (accordion-aword 등) */
.content .aword-list,
.content .aword-list .aword-list__body,
.content .aword-list .aword-list__title,
.content .aword-list .aword-list__content,
.content .aword-list .aword-list__author {
  text-align: left;
}

/* 지난호 보기 (all_list) */
.content .vol-loading,
.content .vol-empty {
  text-align: center;
  color: #666;
  padding: 1.5rem;
}
.content .vol-history-list,
.content .vol-title-list {
  text-align: left;
  margin-bottom: 2rem;
}
.content .vol-history-heading,
.content .vol-title-heading {
  font-size: var(--fs-13);
  font-weight: 700;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f78e1e;
}
.content .vol-history-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}
.content .vol-history-ul li {
  margin: 0;
}
.content .vol-history-link {
  display: inline-block;
  padding: 10px 18px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.content .vol-history-link:hover {
  color: #f78e1e;
  background: #fff;
  border-color: #f78e1e;
  text-decoration: none;
}
.content .vol-title-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.content .vol-title-ul li {
  margin: 0 0 0.5rem;
}
.content .vol-title-link,
.content .vol-title-link:hover {
  color: #333;
  text-decoration: none;
}
.content .vol-title-link:hover {
  color: #f78e1e;
  text-decoration: underline;
}
.content .vol-title-item {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}
.content .vol-title-cat {
  font-size: var(--fs-09);
  color: #666;
}

/* 지난호 보기 SW81 스타일 */
.SW81__history__container {
  margin-top: 2rem;
  text-align: left;
}
.SW81__history__header {
  margin-bottom: 1.5rem;
}
.SW81__history__form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  margin-bottom: 1rem;
}
.SW81__history__form .sound {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.SW81__history__form #word_year {
  min-width: 120px;
  padding: 8px 12px;
  font-size: var(--fs-10);
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
}
.SW81__history__btn {
  padding: 8px 20px;
  font-size: var(--fs-10);
  font-weight: 600;
  color: #fff;
  background: #f78e1e;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.SW81__history__btn:hover {
  background: #e67d0d;
}
.SW81__history__title {
  margin: 0;
  font-size: var(--fs-13);
  font-weight: 700;
  color: #333;
}
.SW81__history__body {
  margin-top: 1rem;
}
.SW81__history__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.SW81__H__item {

  padding: 0;
  border-bottom: 1px solid #eee;
}
.SW81__H__item:last-child {
  border-bottom: none;
}
.SW81__H__link {
  display: block;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}
.SW81__H__link:hover {
  color: #f78e1e;
}
.SW81__H__class {
  display: block;
  margin: 0 0 4px;
  font-size: var(--fs-125);

}
.SW81__H__class b {
  display: inline-block;
  min-width: 3em;
  font-weight: 600;
  color: #666;
}
.SW81__H__class p {
  margin: 0;
}
.SW81__H__top {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 8px 16px;
  color: #f78e1e;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #f78e1e;
  border-radius: 4px;
}
.SW81__H__top:hover {
  color: #fff;
  background: #f78e1e;
}
.vol-loading-item {
  padding: 1rem;
  color: #666;
  list-style: none;
}

.article-content {
  margin: 0 auto;
  padding: 0 1rem 2rem;
  color: var(--color-text, #333);
}
.article-content p {
  margin: 0 0 1rem;
  font-size: var(--fs-11);
  word-break: keep-all;
}
.article-content h3 {
  margin: 2rem 0 0.75rem;
  font-size: var(--fs-13);
  font-weight: 600;
  color: var(--color-text, #333);
}
.article-content h3:first-child {
  margin-top: 0;
}
.article-content .article-fig {
  margin: 0.5rem 0 1.5rem;
  font-size: var(--fs-09);
  color: #666;
}
.article-content .article-refs {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: var(--fs-09);

  color: #555;
}
.article-content .article-refs li {
  margin-bottom: 0.35rem;
}
.content-table-wrap,
.insa-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  display: block;
}
.content-table-wrap::-webkit-scrollbar,
.insa-table-wrap::-webkit-scrollbar {
  height: 6px;
}
.content-table-wrap::-webkit-scrollbar-thumb,
.insa-table-wrap::-webkit-scrollbar-thumb {
  background: var(--color-border, #b7b9bd);
  border-radius: 3px;
}

.content-table {
  width: 100%;
  min-width: 640px;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: var(--fs-10);
  background: #fff;
}

.content-table th {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #b7b9bd);
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
}
.content-table th:first-child,
.content-table td:first-child {
  width: 27%;
}

.content-table td {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border, #b7b9bd);
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
}
.content-table td:last-child,
.content-table th:last-child {
  text-align: center;
}
.content-table thead th {
  color: #fff;
  background: #3d3e42;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  border-bottom-color: var(--color-accent);
}
.content-table thead th:first-child {
  border-left-color: #3d3e42;
}
.content-table thead th:last-child {
  border-right-color: #3d3e42;
}
.content-table tbody tr:hover {
  background: #f8f9fe;
}

.content-table td.fund-align-left,
.content-table th.fund-align-left {
  text-align: left;
}
.content-table td.fund-align-right,
.content-table th.fund-align-right {
  text-align: right;
}
.content-table td.fund-align-center,
.content-table th.fund-align-center {
  text-align: center;
}

.content-table__total {
  margin: 1.5rem 0 0;
  padding: 1rem;
  font-weight: 700;
  font-size: var(--fs-13);
  color: var(--color-text);
  text-align: right;
  border-top: 2px solid var(--color-accent);
}

/* 인사발령 테이블 (event-2) - 열 너비 내용 자동 */
.insa-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  table-layout: auto;
  font-size: var(--fs-10);
  background: #fff;
}
.insa-table th,
.insa-table td {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border, #b7b9bd);
  text-align: left;
  vertical-align: middle;
  box-sizing: border-box;
  white-space: nowrap;
}
.insa-table thead th {
  color: #fff;
  background: #3d3e42;
  font-weight: 700;
  text-align: center;
  border-bottom-color: var(--color-accent);
}
.insa-table thead th:first-child {
  border-left-color: #3d3e42;
}
.insa-table thead th:last-child {
  border-right-color: #3d3e42;
}
.insa-table tbody tr:hover {
  background: #f8f9fe;
}
.insa-table th:nth-child(6),
.insa-table td:nth-child(6),
.insa-table th:nth-child(7),
.insa-table td:nth-child(7),
.insa-table th:nth-child(8),
.insa-table td:nth-child(8) {
  text-align: center;
}

.insa-table td.fund-align-left,
.insa-table th.fund-align-left {
  text-align: left;
}
.insa-table td.fund-align-right,
.insa-table th.fund-align-right {
  text-align: right;
}
.insa-table td.fund-align-center,
.insa-table th.fund-align-center {
  text-align: center;
}

.content-meta {
  font-size: var(--fs-09);
  color: var(--color-border);
  text-align: center;
  margin: 0 0 0.5rem;
}
.author-name{
  font-size: var(--fs-15);
  text-align: center;
  font-weight: 600;
  margin-bottom: 3rem !important;
}


.margin-top-40{
  margin-top: 40px;
}

@media (max-width: 768px) {
  
  .subscribe-form__actions{
    margin-top: 2rem;
  }
  .subscribe-terms__title{
    font-size: var(--fs-10);
  }
  .subscribe-terms__list dt,
  .subscribe-terms__list dd,
  .subscribe-form__row--agree {
    font-size: var(--fs-09);
    flex-direction: column;
    align-items: flex-start;
  }
  .subscribe-form__row--agree > span {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    text-align: left;
    box-sizing: border-box;
  }
  .subscribe-form__row--agree > span a {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 0.5rem;
  }
  .subscribe-form__agree,
  .subscribe-form__agree span,
  .subscribe-form__agree a,
  .subscribe-form__row--agree > span,
  .subscribe-form__row--agree > span a {
    font-size: var(--fs-09);
  }
  .subscribe-form__agree{
    gap : 0.5rem;
  }

  .subscribe-form__submit {
    font-size: var(--fs-10);
  }
  .subscribe-form__agree input[type="checkbox"]{
    transform: scale(1);
    margin-right: 0px;
  }
  .author-name{
    font-size: var(--fs-11);
    margin-bottom: 1rem !important;
  }
  .main-visual{
    height: 380px;
  }
  .fund-wrapper,
  .content {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .fund-content .content-title,
  .insa-content .content-title,
  .content-table {
    min-width: 560px;
  }
  .content-table th,
  .content-table td,
  .insa-table th,
  .insa-table td { padding: 0.5rem 0.75rem; font-size: var(--fs-09); }
  .main-badge { padding: 5px 20px; font-size: var(--fs-10); }
  .main-title { font-size: var(--fs-15); }
  .card-num { 
    font-size: var(--fs-11); 
  }
  .accordion-item__title-text{
    font-size: var(--fs-10);
  }
  .accordion-item__body{
    padding: 1rem;
  }
  .SW31__box__title{
    font-size: var(--fs-10);
  }
  .subscribe-intro{
    font-size: var(--fs-10);
    padding: 0.5rem;
  }

  .article-content p{
    font-size: var(--fs-10);
  }
  .related-bar{
    margin-top: 2rem;
  }



  .content-title-wrap{
    padding-bottom: 0rem;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 0rem;
  }

  .SW31__box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .SW31__box__body {
    width: 100%;
  }
  .SW31__box__list {
    padding-left: 0;
    list-style-position: inside;
  }
  .summary-btn{
    padding: 0.2rem 0.5rem;
  }
  .side-right-content{
    gap : 1rem;
  }
  .content-refs{
    padding-left:0;
  }
  .float-right, .float-left{
    float: none !important;
  }
  .content-gallery {
    grid-template-columns: 1fr;
  }
  .content-gallery__row--4-6 {
    grid-template-columns: 1fr;
  }
  .content-gallery__item {
    height: auto;
  }
  .content-h3{
    margin-top:1.2rem;
    font-size: var(--fs-13);
  }
  .content-question {
    font-size: var(--fs-13);
    
  }
  .related-menu-bottom {
    padding: 0.2rem 0.5rem;
    font-size: var(--fs-09);
  }
  .related-menu-label{
    display: none;
  }
  .related-link-select.related-link-trigger,
  .vol-dropdown__link {
    font-size: var(--fs-10);
  }
  .related-link-select.related-link-trigger{
    padding: 0.2rem 0.5rem;
  }
  .chevron-right{
    height: 10px;
  }
  .chevron-orange::after {
    margin-left: -10px;
  }
  .SW81__H__class {
    font-size: var(--fs-10);
  }
  .aside__list{
    gap: 2px;
    width: 65px;
  }
  .accordion-body{
    padding: 1rem 1rem;
  }
  .guide{
    font-size: var(--fs-08);
    letter-spacing: -0.5px;
  }
  .other-menu{
    padding: 0.1rem 0.5rem;
    margin-top:2px;
  }
  .content-sub-title{
    margin-bottom: 2rem;
    font-size: var(--fs-13);
  }
  .content-h3 ~ .content-h3{
    margin-top: 4rem;
  }
  .author-profiles {
    grid-template-columns: 1fr;
  }
}

/* ─── Author Profiles (저자 프로필 그리드) ──────────────────
   기사 본문 상단에서 2명 이상의 저자 정보를 카드 형태로 표시.
   각 컬럼: 이미지 위, 이름·소속 아래. */
.author-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
}

.author-profiles-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
}

.author-profiles-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
}

.author-profiles-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 1rem auto 1.5rem;
}

/* ─── Width Modifiers (.ig--w-XX 와 동일 패턴) ─────────────── */
.author-profiles--w-30  { width: 30%; }
.author-profiles--w-40  { width: 40%; }
.author-profiles--w-50  { width: 50%; }
.author-profiles--w-60  { width: 60%; }
.author-profiles--w-70  { width: 70%; }
.author-profiles--w-80  { width: 80%; }
.author-profiles--w-90  { width: 90%; }
.author-profiles--w-100 { width: 100%; }

.author-profiles__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.author-profiles__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.author-profiles__img {
  width: 100%;
  height: 100%;
  display: block;
/
}
.author-profiles__info {
  text-align: left;
}
.author-profiles__name {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}
.author-profiles__dept {
  margin: 4px 0 0;
  color: #555;
  line-height: 1.5;
}
