/* ==========================================================================
   MAIN SS
   ========================================================================== */
/* 공통 레이아웃용 공통 가이드 클래스 */
.main-wrapper .container-inner {
  width: 100%;
  max-width: 1504px;
  padding: 0 2rem;
  margin: 0 auto;
}
.main-wrapper .flex-row {
  display: flex;
  gap: 24px;
}

.main-wrapper section {
}

/* ==========================================================================
   1. 학회소식 & 퀵메뉴 섹션 스타일링
   ========================================================================== */
.main-wrapper .section-news-quick {
  margin-top: 120px;
}
.main-wrapper .news-area {
  flex: 1;
}

.main-wrapper .section-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 32px;
  margin-bottom: 32px;
}
.main-wrapper .section-title {
  color: var(--color-primary);
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.8px;
  margin: 0;
}
.main-wrapper .title-btns {
  display: flex;
  gap: 12px;
}
.main-wrapper .title-m-btns {
  display: none;
}
.main-wrapper .btn-more {
  border: 1px solid #d1d1d1;
  padding: 6px 14px;
  font-size: 13px;
  color: #444;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s;
}
.main-wrapper .btn-more:hover {
  border-color: #5d22d2;
  color: #5d22d2;
}

.main-wrapper .news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.main-wrapper .news-card {
  padding: 32px;
  position: relative;
  height: 496px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.main-wrapper .news-date {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  margin: 24px 0 8px;
}
.main-wrapper .news-subject {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.main-wrapper .news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #a0a0a0;
  text-overflow: ellipsis;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  letter-spacing: -0.32px;
  height: 170px;
}

.main-wrapper .news-card:hover {
  background-color: #a196ee;
  color: #fff;
}
.main-wrapper .news-card:hover .news-date,
.main-wrapper .news-card:hover .news-subject,
.main-wrapper .news-card:hover .news-excerpt {
  color: #fff;
}
.main-wrapper .news-card:hover .badge-line-accent,
.main-wrapper .news-card:hover .badge-line-secondary {
  color: #fff;
  border: 1px solid #fff;
}

.main-wrapper .news-card .arrow-div {
  background-color: #fff;
  border-radius: 8px;
  padding: 8px 0;
  display: flex;
}

.main-wrapper .btn-arrow-link {
  margin-left: 0;
  transition: margin-left 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.main-wrapper .news-card:hover .btn-arrow-link {
  margin-left: calc(100% - 130px);
}

.main-wrapper .news-card:hover .btn-arrow-link .arrow-wrap {
  width: 41px;
  content: url(/assets/user/images/common/arrow-right-purple2.svg);
  filter: grayscale(100%) brightness(0);
}

/* 우측 세로 정렬 퀵네비 박스 */
.main-wrapper .quick-nav-area {
  width: 220px;
  display: flex;
  flex-direction: column;
}
.main-wrapper .quick-link-box {
  flex: 1;
  border-bottom: 1px solid #767958;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
  padding: 32px 24px;
  text-decoration: none;
  transition: all 0.2s;
  color: #767958;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}
.main-wrapper .quick-link-box > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.main-wrapper .quick-link-box:hover > div > .quick-1 {
  filter: brightness(0) invert(1);
}
.quick-link-box .quick-link-icon {
  width: 32px;
  height: 32px;
  background-image: url("/assets/user/images/main/quick-link-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.2s ease;
}

.quick-link-box:hover .quick-link-icon {
  background-image: url("/assets/user/images/main/quick-link-icon-active.png");
}
.main-wrapper .quick-link-box:first-child {
  border-top: 1px solid #767958;
}
.main-wrapper .quick-link-box:hover {
  border-color: #fff;
  background-color: #767958;
  color: #fff;
}
.main-wrapper .quick-link-box:hover::after {
  border-color: #fff;
}
.main-wrapper .quick-link-box .quick-link-icon {
  margin: 0 0 0 auto;
}

/* ==========================================================================
   2. 탭 구성 & 아코디언 공지보드 스타일링
   ========================================================================== */
.main-wrapper .section-activity-tabs {
  background-color: #f8f7ef;
  margin-top: 104px;
}
.main-wrapper .section-activity-tabs .tab-menu-list {
  justify-content: center;
  gap: 80px;
}

.main-wrapper .tab-menu-wrapper {
  width: 100%;
  max-width: 1504px;
  padding: 80px 2rem 0;
  margin: 0 auto;
  border: 0 !important;
}

.main-wrapper .activity-layout {
  display: flex;
  gap: 50px;
  align-items: stretch;
}
.main-wrapper .activity-visual {
  flex: 5;
  display: block;
}
.main-wrapper .activity-visual-m {
  display: none;
}
.main-wrapper .visual-img-box img {
  width: 726px;
  height: auto;
  display: block;
  object-fit: cover;
}

.main-wrapper .activity-accordion-board {
  /* flex: 7; */
  width: 948px;
  display: flex;
  flex-direction: column;
}
.main-wrapper .board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 16px;
}
.main-wrapper .category-tag {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
}

.main-wrapper .btn-line-purple {
  background-color: transparent;
  --btn-font-weight: 700;
}
.main-wrapper .btn-line-purple:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

.main-wrapper .board-main-title {
  margin: 0 16px 64px 16px;
  color: #767958;
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 52.5px */
  letter-spacing: -0.84px;
}
.main-wrapper .activity-layout .m-btn {
  display: none;
}
/* 아코디언 내부 구조 리스트 */
.main-wrapper .accordion-list {
  display: flex;
  flex-direction: column;
}
.main-wrapper .accordion-head {
  padding: 16px 24px;
  cursor: pointer;
  position: relative;
}
.main-wrapper .item-div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
  gap: 40px;
}
.main-wrapper .item-date {
  color: #a0a0a0;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.28px;
}
.main-wrapper .item-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 135%;
  letter-spacing: -0.48px;
  margin-top: 4px;
  flex: 1;
}
.main-wrapper .icon-toggle {
  width: 32px;
  height: 32px;
  background-image: url("/assets/user/images/common/btn_accordion_open.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transition: background-image 0.2s ease;
}

.main-wrapper .accordion-item.open .icon-toggle,
.main-wrapper .accordion-item.active .icon-toggle {
  background-image: url("/assets/user/images/common/btn_accordion_close.png");
}

.main-wrapper .accordion-body {
  padding: 48px 56px;
  display: none;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.main-wrapper .accordion-item.open .accordion-body {
  border-top: 1px solid #d1d1d1;
  overflow: hidden !important;
}
.main-wrapper .accordion-item.open {
  border-bottom: 0;
}

/* 아코디언 Open Active 클래스 처리 */
.main-wrapper .accordion-item.open .icon-toggle::after {
  display: none;
} /* 플러스 축을 지워서 마이너스로 변경 */
.main-wrapper .accordion-item.open .accordion-body {
  display: block;
}

/* ==========================================================================
   3. 행사 갤러리 섹션 스타일링
   ========================================================================== */
.main-wrapper .section-gallery {
  margin: 160px 0;
}
.main-wrapper .section-gallery .flex-row {
  justify-content: space-between;
}
.main-wrapper .section-gallery .since-img {
  margin-bottom: 160px;
  display: block;
}
.main-wrapper .section-gallery .since-img-m {
  display: none;
}

.gallery-tab-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 64px;
}

.gallery-tab-list .gallery-tab-item {
  position: relative;
  padding-left: 14px;
  display: flex;
  align-items: center;
}

.gallery-tab-list .gallery-tab-item a {
  color: #a0a0a0;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.52px;
  transition:
    color 0.2s ease,
    font-weight 0.2s ease;
}

.gallery-tab-list .gallery-tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: #a0a0a0;
  transition: all 0.2s ease;
}

.gallery-tab-list .gallery-tab-item.active {
  padding-left: 50px;
}
.gallery-tab-list .gallery-tab-item.active a {
  color: var(--color-primary);
  font-weight: 700;
}

.gallery-tab-list .gallery-tab-item.active::before {
  width: 40px;
  height: 4px;
  background-color: var(--color-primary);
}

.main-wrapper .gallery-grid-area {
  width: 1098px;
}

.main-wrapper .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  margin-right: -1px;
  margin-bottom: -1px;
}
.main-wrapper .gallery-card {
  background-color: #ffffff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  cursor: pointer;

  /* 1. 사방(상하좌우)에 1px 투명한 선 영역을 기본적으로 확보합니다 */
  border: 1px solid transparent;

  /* 2. 원형 그라디언트로 모서리 꼭지점 영역만 투명하게 도려냅니다.
        카드의 중심(center)에서부터 사방으로 색을 뿌리되, 
        모서리 끝부분(위아래, 좌우 15px 구간)을 투명(transparent)하게 압착시키는 원리입니다. */
  border-image: radial-gradient(circle at center, #d0d0d0 0%, #d0d0d0 calc(100% - 12px), transparent calc(100% - 12px), transparent 100%);

  /* 3. 사방의 선이 균일하게 매핑되도록 slice 값을 조절합니다 */
  border-image-slice: 1;

  margin-right: -1px;
  margin-bottom: -1px;

  z-index: 1;
}

.main-wrapper .gallery-card .red-box {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-wrapper .gallery-card:hover .red-box,
.main-wrapper .gallery-card.hover .red-box {
  margin: 12px;
  padding: 16px;
  background-color: #ff2d55;
  transition: background-color 0.3s ease;
  position: relative;
}

.main-wrapper .gallery-card:hover,
.main-wrapper .gallery-card.hover {
  z-index: 5;
}

.main-wrapper .thumb-box img {
  display: block;
  width: 232px;
  height: 232px;
  object-fit: cover;

  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%) scale(0.1);

  border-radius: 50%;
  opacity: 0;
}
.main-wrapper .gallery-card:hover .thumb-box,
.main-wrapper .gallery-card.hover .thumb-box {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.main-wrapper .gallery-card:hover .thumb-box img,
.main-wrapper .gallery-card.hover .thumb-box img {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.main-wrapper .thumb-box .top-tag {
  color: #000;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 32.4px */
  letter-spacing: -0.4px;
  font-size: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
.main-wrapper .gallery-card:hover .top-tag,
.main-wrapper .gallery-card.hover .top-tag {
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.4px;
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
}

.main-wrapper .gallery-card .card-body {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  bottom: 0;
  margin: auto 0 0 auto;
}

.main-wrapper .icon-link-go {
  display: block;
  width: 24px;
  height: 24px;
  position: relative;

  background-image: url("/assets/user/images/main/main-img-hover.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, width, height, margin-left;
}

.main-wrapper .icon-link-go::before {
  content: "더보기";
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 22.4px */

  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%) translateX(10px);
  white-space: nowrap;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-wrapper .gallery-card:hover .icon-link-go,
.main-wrapper .gallery-card.hover .icon-link-go {
  background-image: url("/assets/user/images/main/main-more-hover.png");
  width: 32px;
  height: 32px;
  margin-left: 24px;
}

.main-wrapper .gallery-card:hover .icon-link-go::before,
.main-wrapper .gallery-card.hover .icon-link-go::before {
  opacity: 1;
  transform: translateY(-50%) translateX(-12px);
}

/* ==========================================================================
   MAIN EE
   ========================================================================== */

.content-wrapper.gallery,
.content-wrapper.conference,
.content-wrapper.overview,
.content-wrapper.faq,
.content-wrapper.member,
.content-wrapper.awardReviewer,
.content-wrapper.rules,
.content-wrapper.awardhistory {
  padding: 0;
}
.content-wrapper.intro {
  padding: 0 0 80px 0;
}
.content-wrapper.faq .accordion-wrap {
  padding: 80px 0 160px;
}
.intro-text-box {
  padding: 0 0 80px;
}

.intro-text-box img {
  height: 104px;
  margin-bottom: 8px;
}

.intro-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 200;
  line-height: 125%; /* 45px */
  letter-spacing: -0.72px;
  padding: 8px 0;
}

.intro-desc {
  padding: 8px 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.gallery .intro-text-box,
.faq .intro-text-box {
  color: #6059cd;
}

.conference .intro-title,
.conference .intro-desc {
  color: #786e2f;
}

.intro .intro-title,
.intro .intro-desc {
  color: #36459e;
}

.member .intro-title,
.member .intro-desc {
  color: #ab5640;
}

.awardhistory .intro-title,
.awardhistory .intro-desc {
  color: #73428a;
}

.archive-list-container {
  width: 100%;
  margin: 0 auto;
}

.archive-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.2s ease;
  color: #999;
}

.archive-item:first-child {
  border-top: 1px solid #eeeeee;
}

.archive-item:hover,
.archive-item.active {
  background-color: #f4f4f4;
  color: #000;
  cursor: pointer;
}

.archive-info {
  flex: 1;
  padding-right: 40px;
}

.archive-title {
  color: #000000;
  margin: 0 0 16px 0;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

.archive-desc {
  margin: 0 0 16px 0;
  overflow: hidden;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.archive-date {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}

.archive-action {
  flex-shrink: 0;
}

/* ==========================================================================
   갤러리 리스트 레이아웃 (.gallery-grid & .gallery-card)
   ========================================================================== */

.content-wrapper .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.content-wrapper .gallery-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0;
  overflow: hidden;
  padding: 40px;
  cursor: pointer;
}

.content-wrapper .gallery-card .card-thumb {
  position: relative;
  flex-shrink: 0;
  width: 384px;
  height: 216px;
  overflow: hidden;
}

.content-wrapper .gallery-card .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.content-wrapper .gallery-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 0 0 0;
  justify-content: space-between;
  height: 100%;
}

.content-wrapper .gallery-card .card-text-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.content-wrapper .gallery-card .card-date {
  margin: 24px 0 8px;
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.08px;
}

.content-wrapper .gallery-card .card-title {
  /* height: 50px; */
  color: var(--text-primary, #000);
  font-family: Pretendard;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.48px;

  /* 말줄임 처리 (2줄 제한) */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.content-wrapper .gallery-card .btn-arrow-link {
  width: auto;
  --btn-padding: 0;
  --btn-font-weight: 700;
}

.content-wrapper .gallery-card:hover,
.content-wrapper .gallery-card.hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.25s ease;
}

.content-wrapper .gallery-card:hover .card-title,
.content-wrapper .gallery-card:hover .card-date,
.content-wrapper .gallery-card:hover .btn-arrow-link,
.content-wrapper .gallery-card.hover .card-title,
.content-wrapper .gallery-card.hover .card-date,
.content-wrapper .gallery-card.hover .btn-arrow-link {
  color: var(--color-primary);
}

.content-wrapper .gallery-card:hover .btn-arrow-link .arrow-wrap,
.content-wrapper .gallery-card.hover .btn-arrow-link .arrow-wrap {
  width: 41px;
  content: url("/assets/user/images/common/arrow-right-purple2.svg");
}

/* ==========================================================================
   가로형 뉴스 리스트 레이아웃 (.news-list-wrapper & .news-card)
   ========================================================================== */
.news-list-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 80px;
}

.news-list-wrapper .news-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 80px;
  padding: 80px;
  border-bottom: 1px solid #d1d1d1;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.news-list-wrapper .news-card .news-thumb {
  position: relative;
  flex-shrink: 0;
  width: 464px;
  height: 261px;
  overflow: hidden;
}

.news-list-wrapper .news-card .news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-list-wrapper .news-card .news-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  flex-grow: 1;
  padding-top: 4px;
  align-items: flex-start;
}

.news-list-wrapper .news-card .news-date {
  margin-bottom: 8px;
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.08px;
}

.news-list-wrapper .news-card .news-title {
  margin-top: 8px;
  margin-bottom: 24px;
  transition: color 0.25s ease;

  color: #000;

  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-wrapper .news-card .news-desc {
  margin-bottom: 0;

  overflow: hidden;
  color: #999;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;

  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-wrapper .news-card .btn-arrow-link {
  width: auto;
  --btn-padding: 0;
  --btn-font-weight: 700;
}

.news-list-wrapper .news-card:hover {
  background: rgba(0, 0, 0, 0.04);
}

.news-list-wrapper .news-card:hover .news-date,
.news-list-wrapper .news-card:hover .news-title,
.news-list-wrapper .news-card:hover .news-desc,
.news-list-wrapper .news-card:hover .btn-arrow-link {
  color: var(--color-primary);
}

.news-list-wrapper .news-card:hover .btn-arrow-link .arrow-wrap {
  width: 41px;
  content: url("/assets/user/images/common/arrow-right-purple2.svg");
}

/* ==========================================================================
   상세 페이지 컴포넌트 (.view-detail 영역)
   ========================================================================== */
.view-detail {
  background: #f9f9f9;
  padding: 160px 0 0 0;
}

.header-btn-wrap {
  display: flex;
  gap: 16px;
}

.view-detail .view-header {
  padding: 56px 24px;
  border-top: 1px solid #000;
  background-color: #fff;
}

.view-detail .view-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.view-detail .view-meta .view-div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.view-detail .view-date {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
}

.view-detail .view-title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 56px */
  letter-spacing: -0.8px;
}

.view-detail .view-body {
  padding: 80px 122px;
  border-top: 1px solid #d1d1d1;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 32px */
  letter-spacing: -0.4px;
  background-color: #fff;
}
.view-body img {
  max-width: 100%;
  height: auto;
}

.view-detail .view-attachment-section {
  border-top: 1px solid #e5e5e5;
}

.view-detail .attach-row {
  display: flex;
  padding: 24px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  margin-bottom: 4px;
  background-color: #fff;
}

.view-detail .file-info {
  display: flex;
  align-items: center;
  /* gap: 24px; */
  color: var(--color-primary);
  word-wrap: break-word;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.1px;
}

.view-detail .attach-label {
  position: relative;
  padding-right: 32px;
  margin-right: 32px;
  font-weight: 400;
}

.file-info .attach-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 1px;
  height: 14px;
  background-color: #3b008a;
}

.view-detail .file-name {
  font-weight: 700;
}

.container.intro-box .top-wrap {
  display: flex;
  align-items: flex-start;
  gap: 268px;
  width: 100%;
  margin: 0 auto;
  padding: 104px 0 0;
}

.container.intro-box .top-wrap img {
  border-top: 1px solid #d1d1d1;
  flex-shrink: 0;
  width: 342px;
  height: 467px;
  aspect-ratio: 52 / 71;
  object-fit: cover;
}
.intro-box .intro-text-box {
  margin-left: 0;
  padding: 0;
}

.intro-line {
  border-top: 1px solid #d1d1d1;
  width: 100%;
  margin: 80px auto;
}
.user-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sub-section-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 146px;
}
.sub-section-wrap .sub-title {
  min-width: 342px;
}

.sub-section-content {
  color: #000;
  font-size: 24px;
  font-style: normal;
  line-height: 150%;
  letter-spacing: -0.48px;
}

.sub-section-content .intro-desc p {
  font-weight: 700;
}
.sub-section-content .intro-desc span {
  font-weight: 400;
}

.join-section-wrap {
}

.join-step-list {
  margin-top: 40px;
}

.join-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 16px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.join-step-list li p {
  word-break: keep-all;
}

.all-check-div {
  background: #f5f3ff;
  padding: 56px;
  margin-top: 40px;
}
.all-check-div .checkbox-group {
  justify-content: flex-end;
}

.terms-wrap {
  padding: 80px 0;
}

.terms-section {
  margin-bottom: 40px;
}
.terms-section:last-child {
  margin-bottom: 0;
}

.terms-title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
  margin-bottom: 40px;
}

.terms-scroll-box {
  width: 100%;
  height: 780px;
  border: 40px solid #f9f9f9;
  background-color: #f9f9f9;
  overflow-y: auto;
  margin-bottom: 40px;
  padding-right: 80px;
}

.terms-content {
  color: #777;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.align-right {
  display: flex;
  justify-content: flex-end;
}
.btn-wrap-right {
  display: flex;
  justify-content: flex-end;
}
.agreement .btn-wrap-right {
  margin-bottom: 80px;
}
.terms-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.terms-scroll-box::-webkit-scrollbar-track {
  background-color: #e2e2e2;
  border-radius: 0;
}
.terms-scroll-box::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 0;
}
.join-form-section {
  margin: 80px 0;
}
.form-section-title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
  margin-bottom: 40px;
}
.intro .form-section-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
  margin-bottom: 36px;
}
.form-table {
  border-bottom: 1px solid #d1d1d1;
}

.form-row {
  display: flex;
  border-bottom: 1px solid #d1d1d1;
}
.form-row:first-child {
  border-top: 1px solid #000;
}

.form-label {
  min-width: 464px;
  padding: 40px;
  display: flex;
  align-items: center;
  border-right: 1px solid #d1d1d1;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.required {
  color: #fe2c53;
  margin-left: 8px;
}

.form-field {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-field .join-icon {
  width: 20px;
  margin-top: -1px;
  vertical-align: middle;
}

.form-field .form-field-text {
  padding: 16px 24px;
  color: #999;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.field-guide {
  margin: 8px 24px;
  color: #777;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}

.field-guide strong {
  font-weight: 700;
}

.join-extra-agreement {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.warning-text {
  color: #f59e0b;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  margin: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.warning-icon {
  width: 20px;
}
.join .btn-wrap-right {
  margin-top: 80px;
}
.flex-div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.flex-div .intro-right-wrap {
  padding: 16px 0;
}
.flex-div .intro-right-wrap .text-info {
  padding: 16px 0 4px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}
.flex-div .intro-right-wrap .text-info strong {
  font-weight: 700;
}
.intro .intro-main-img,
.overview .intro-main-img {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.intro .intro-main-img img,
.overview .intro-main-img img {
  width: 100%;
  height: auto;
  object-fit: cover; /* 이미지가 브라우저 비율에 맞춰 자연스럽게 꽉 참 */
  display: block;
}

/* ==========================================================================
   소개 페이지 전용 레이아웃 (.intro)
   ========================================================================== */
.intro-form-section {
  padding: 80px 0;
}
/* 핵심가치 3단 카드 */
.intro .value-card-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 120px;
  margin-top: 40px;
}
.intro .value-card-list li {
  flex: 1;
  text-align: center;
  position: relative;
}
.intro .value-card-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 134px;
  background-color: #d1d1d1;
}
.intro .value-card-list .icon-wrap {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro .value-card-list .icon-wrap img {
  height: 100%;
  width: auto;
}
.intro .value-card-list .value-title {
  color: var(--color-accent); /* #fe2c53 */
  margin: 16px 0 4px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}
.intro .value-card-list .value-desc {
  word-break: keep-all;
  overflow: hidden;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  padding: 8px 0 4px;
}

/* 주요업무 4단 카드 Grid 배치 */
.intro .work-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.intro .work-card {
  background-color: #f9f9f9;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.intro .work-icon {
  height: 32px;
}
.intro .work-icon img {
  height: 100%;
  width: auto;
}
.intro .work-title {
  color: var(--color-primary);
  padding: 16px 0;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}
.intro .work-desc {
  color: #777;
  word-break: keep-all;
  font-size: 16px;
  text-overflow: ellipsis;
  font-style: normal;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}
.intro .work-desc strong {
  color: #000;
  font-weight: 700;
  font-size: 20px;
}

.intro .work-desc p {
  padding: 8px 0 4px;
}

.intro .history-logo-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.intro .history-logo-box img {
  width: 489px;
  height: auto;
}
.intro .work-card-history {
  border: 1px solid #d1d1d1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 320px;
  padding: 0 110px;
}
.fl80 {
  display: flex;
  gap: 80px;
}
.pd-0 {
  padding: 0 !important;
  border: 0 !important;
}
.js-c {
  justify-content: center;
  flex: 1;
}

/* ==========================================================================
   인사말 페이지 전용 레이아웃 (.intro-greeting)
   ========================================================================== */
.intro-greeting .flex-div {
  align-items: flex-end;
  padding-bottom: 80px;
}
.intro-greeting .greeting-img-wrap {
  width: 608px;
  flex-shrink: 0;
}
.intro-greeting .greeting-img-wrap img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.intro-greeting .intro-right-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 0;
}

.intro-greeting .greeting-title-box .greeting-title {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
  text-align: right;
  padding: 8px 8px 8px 0;
}
.intro-greeting .greeting-title-box .main-title {
  color: var(--color-primary);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 67.2px */
  letter-spacing: -0.96px;
  text-align: right;
}
.intro-greeting .greeting-title-box .main-title p {
  padding-right: 16px;
}
.intro-greeting .greeting-signature {
  text-align: right;
  margin-top: 40px;
}
.intro-greeting .greeting-signature .organization {
  font-size: 15px;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}
.intro-greeting .greeting-signature .name {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.2em;
  margin: 0;
}

.intro-greeting .intro-form-section p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.intro-greeting .flex-jt {
  padding-left: 366px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.intro-greeting .intro-form-section p:last-child {
  text-align: right;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}
/* ==========================================================================
   연혁 페이지 2열 독립형 레이아웃 (.history)
   ========================================================================== */
.history .history-flex-row {
  display: flex;
  align-items: flex-start;
  justify-content: end;
  gap: 144px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.history .history-col {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.content-wrapper.history {
  position: relative;
  width: 100%;
}

.history-top-bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: center -368px;
  z-index: 1;
}
.history .history-top-banner {
  width: 100%;

  position: relative;
  z-index: 2;
}

.history .history-top-banner .sub-intro {
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
}

.history .history-top-banner .main-intro-title {
  text-align: right;
  color: #000;
  margin: 80px 0;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 78.4px */
  letter-spacing: -1.12px;
}
.mt318 {
  margin-top: 318px;
}
.history .history-top-banner .main-intro-title > p {
  margin-right: 16px;
}

.history .history-top-banner .main-intro-title span.color-primary {
  color: var(--color-primary);
  font-weight: 700;
}

.history .history-top-banner .main-intro-title strong {
  font-weight: 800;
  display: block;
  margin-top: 5px;
}

.history .history-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 586px;
}

.history .history-date {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.history .history-content p {
  margin: 0;
}

.history .history-content .line {
  display: block;
  position: relative;
  color: #000;
  padding-left: 21px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.history .history-content .line::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #000;
  font-size: 24px;
}
/* ==========================================================================
   역대 임원/회장단 소개 스타일 
   ========================================================================== */
.intro-form-section .officer-grid-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 60px;
  row-gap: 56px;
  width: 100%;
  z-index: 2;
  position: relative;
}

.intro-form-section .officer-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.intro-form-section .officer-card .img-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: #f7f7f7;
  overflow: hidden;
}

.intro-form-section .officer-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.intro-form-section .officer-card .badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
}

.intro-form-section .officer-card .officer-box {
  padding: 16px 0;
}

.intro-form-section .officer-card .badge-generation {
  padding: 16px 0;
  color: var(--color-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 22.4px */
}

.intro-form-section .officer-card .badge-years {
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  letter-spacing: 0;
}

.intro-form-section .officer-card .officer-name {
  margin: 0 0 5px 0;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.intro-form-section .officer-card .officer-belong {
  margin: 0;
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 22.4px */
  letter-spacing: -0.07px;
}
/* ==========================================================================
   연락처
   ========================================================================== */
.content-wrapper.contact {
  background: #f9f9f9;
}

.content-wrapper.contact .contact-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 48px;
  width: 100%;
  margin-bottom: 80px;
}

.content-wrapper.contact .contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: #fff;
  padding: 40px;
  justify-content: space-between;
  gap: 64px;
}

.content-wrapper.contact .contact-card .card-icon-box {
  margin-bottom: 24px;
}

.content-wrapper.contact .contact-card .card-icon {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* 2026-0626 */
/* .content-wrapper.contact .contact-card .card-title {
  font-size: 28px;
  font-weight: 800;
  color: #3b008a;
  letter-spacing: -0.02em;
} */

.content-wrapper.contact .contact-card .card-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.content-wrapper.contact .contact-card .contact-info-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.content-wrapper.contact .contact-card .info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* 2026-0626 */
/* .content-wrapper.contact .contact-card .info-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
} */

.content-wrapper.contact .contact-card .info-label {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
}

/* 2026-0626 */
/* .content-wrapper.contact .contact-card .info-text {
  font-size: 15px;
  line-height: 1.6;
  color: #111111;
  margin: 0;
  word-break: keep-all;
} */

.content-wrapper.contact .contact-card .info-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: #111111;
  margin: 0;
  word-break: keep-all;
}

.pd80 {
  padding-bottom: 80px !important;
}
.pd40 {
  padding-bottom: 40px;
}
.pd16 {
  padding-bottom: 16px;
}
.mb4 {
  margin-bottom: 4px;
}
.mb40 {
  margin-bottom: 40px;
}
/* 소비자학회 논문투고 안내 */
.submission .tab-content {
  padding: 0;
}
.notice-summary-box {
  background-color: #f5f3ff;
  padding: 56px;
  text-align: center;
  color: var(--color-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 54px; /* 168.75% */
  letter-spacing: -0.5px;
}
.notice-summary-box .notice-subtext {
  font-weight: 700;
}

.intro-form-section .sub-section-content .main-desc {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.intro-form-section .sub-section-content .main-desc strong {
  font-weight: 700;
}
.submission .info-sub-list {
  color: #7864f9;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  padding: 16px 0;
  padding-left: 32px;
}

.intro-form-section .sub-section-content .alert-info-box {
  color: #fe2c53;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
}
.intro-form-section .sub-section-content .alert-info-box img {
  width: 20px;
  height: 20px;
  margin: 6px 6px 0 6px;
}
.alert-info-box strong {
  font-weight: 700;
}

/* ==========================================================================
   소비자학회 홈페이지 전용 - 투고논문 작성방법 스타일 가이드
   ========================================================================== */
.user-paper-guide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #000;
}

.user-paper-guide .guide-item-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.user-paper-guide .content-side {
  flex-grow: 1;
}

.user-paper-guide .main-text {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.user-paper-guide .sub-desc-text {
  margin: 0;
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
}

.user-paper-guide .guide-highlight-box {
  background-color: #f9f9f9;
  padding: 40px;
  margin: 16px 0;
}
.user-paper-guide .highlight-text {
  color: #7864f9;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.user-paper-guide .guide-gray-box {
  background-color: #f8fafc;
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #475569;
  border: 1px solid #e2e8f0;
  margin-top: 8px;
}
.user-paper-guide .example-item {
  margin-bottom: 4px;
}
.user-paper-guide .example-item:last-child {
  margin-bottom: 0;
}
.user-paper-guide .example-item span {
  font-weight: bold;
  color: #5b26be;
}
.download-btn-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.mr10 {
  width: 20px;
  display: inline-block;
  margin-right: 10px;
}

/* 정관 컴포넌트 메인 랩 */
.statute-wrap {
  width: 100%;
  margin-top: 80px;
}

/* 장(Chapter)별 큰 영역 구분 */
.statute-section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid #d1d1d1;
  color: #000;
}
.statute-section:first-child {
  padding-top: 0;
}
.statute-section:last-child {
  border-bottom: none;
}

.statute-title-box {
  width: 25%;
}
.statute-chapter-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.5px;
  margin: 0;
  margin: 16px 0 4px;
}

.statute-content-box {
  width: 75%;
  margin: 16px 0;
}

.statute-row {
  display: flex;
  padding: 16px 0 8px;
  gap: 8px;
}
.statute-row:last-child {
  margin-bottom: 0;
}
.statute-row.ul-sub {
  padding: 0;
  margin: 4px 0 8px;
}

.statute-article-num {
  width: 85px;
  flex-shrink: 0;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.statute-article-text {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.statute-sub-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.statute-row.ul-sub .statute-sub-list {
  list-style: none;
  padding-left: 0;
  margin: 4px 0 8px;
}
.statute-sub-list li {
  margin-bottom: 4px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  display: flex;
  gap: 8px;
}
.statute-sub-list li:last-child {
  margin-bottom: 0;
}
.mb-1 {
  color: #777;
  font-size: 16px !important;
  line-height: 160% !important; /* 25.6px */
  letter-spacing: -0.08px !important;
  margin-bottom: 0 !important;
}
.sel-box {
  display: flex;
  justify-content: end;
  margin-bottom: 40px;
}
.board-line {
  height: 1px;
  background-color: rgba(118, 121, 88, 0.4);
  margin: 32px 0;
}
.wd705 {
  width: 708px;
}

.login-container {
  width: 100%;
  max-width: 708px;
  margin: auto;
  margin-bottom: 80px;
}
.login-form-box {
  padding: 40px 40px 24px;
  border-bottom: 1px solid #d1d1d1;
}
.login-form-box.btm-box {
  padding: 0 40px;
  border: 0;
}
.login-form-box .input-container {
  margin-bottom: 56px;
  max-width: unset;
  padding: 0;
}
.login-form-box .input-container label {
  display: block;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  margin-bottom: 16px;
}
.login-form-box .login-control {
  width: 100%;
  height: 54px;
  background-color: #f1f1f1;
  border: none;
  padding: 0 20px;
  font-size: 15px;
  color: #333333;
  outline: none;
  box-sizing: border-box;
}
.login-form-box .checkbox-group {
  justify-content: end;
  padding: 40px 0;
}
.login-form-box .checkbox-group .checkbox-label {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  gap: 16px !important;
}
.login-form-box .checkbox-group .checkbox-label .checkbox-icon {
  width: 24px;
  height: 24px;
}
.login-form-box .custom-checkbox:checked + .checkbox-label .checkbox-icon::after {
  width: 16px;
  height: 16px;
}

.login-form-box .btn-login {
  width: 100%;
  padding: 20px 24px;
  background-color: #fe2c53;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  border: 0;
  margin: 40px 0;
  border-radius: 4px;
}
.login-footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}
.login-footer-links .link-item {
  color: #999;
  text-decoration: none;
  transition: color 0.1s;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  position: relative;
  flex: 1;
  text-align: center;
  padding: 10px;
}
.login-footer-links .link-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 32px;
  background-color: #d1d1d1;
}
.login-footer-links .link-item:last-child::after {
  display: none;
}

/* 역대 수상 기관 */
.award-timeline-container.pc {
  width: 100%;
  margin-top: 80px;
  border-top: 2px solid #000000;
  display: block;
}
.award-timeline-container.mo {
  display: none;
}
.timeline-row {
  display: flex;
  padding: 80px 0;
  border-bottom: 1px solid #d1d1d1;
  justify-content: space-between;
}

.award-timeline-container.pc .timeline-row .year-label {
  color: #d1d1d1;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 78.4px */
  letter-spacing: -1.12px;
  width: 200px;
}

.award-timeline-container.pc .timeline-row.current-year .year-label {
  color: var(--color-primary);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 952px;
}

.company-grid .company-card:last-child:nth-child(odd) {
  grid-column: span 2;
}

.company-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
  border-radius: 20px;
  color: #000000;
  text-align: center;
  box-sizing: border-box;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
  padding: 32px;
  transition: all 0.2s ease-in-out;
  width: 464px;
}
.award-timeline-container.pc .timeline-row:last-child {
  border-bottom: 0;
}

.find-result-container {
  display: none;
  margin-bottom: 16px;
}
.find-result-container #resultFailure {
  display: flex;
  align-items: center;
  gap: 8px;
}
.find-result-container #resultSuccess {
  text-align: center;
}

.find-result-msg {
  margin: 0;
  color: #ef4444;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.08px;
}

.find-result-msg.error-type {
  color: #e53e3e;
}

.find-result-icon {
  width: 20px;
  height: 20px;
}

.find-result-id {
  font-size: 24px;
  color: #5b21b6;
  margin-top: 10px;
  font-weight: 800;
  line-height: 1.2;
}
.change-pw-container {
  display: none; /* 초기 상태 숨김 */
  margin: 20px 0;
}

.change-pw-form-box {
  border: 2px solid #4a4a4a;
  padding: 20px;
  background-color: #f9f9f9;
}

.change-pw-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.change-pw-guide-txt {
  font-size: 13px;
  color: #718096;
  margin-top: 6px;
  font-weight: 500;
}
.tab4-box {
  padding: 80px 0;
}
.tab4-box .tab4-title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: -0.8px;
  margin-bottom: 40px;
}
.tab4-card-wrap {
  display: flex;
  gap: 80px;
  width: 100%;
}

.tab4-profile-card {
  flex: 1;
  background-color: #f9f9f9;
  padding: 40px;
}

.tab4-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  padding: 0 40px 24px;
}

.tab4-user-name {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.tab4-user-name .tab4-rank {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
  margin-left: 8px;
}

.tab4-user-category {
  color: #999;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}

.tab4-info-group {
  margin: 40px 24px;
}

.tab4-label-office {
  display: inline-block;
  margin-bottom: 4px;
  color: var(--color-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 22.4px */
}

.tab4-info-text {
  margin: 0;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.tab4-meta-box {
  background-color: #ffffff;
  padding: 24px;
}

.tab4-meta-row {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
}

.tab4-meta-row:last-child {
  margin-bottom: 0; /* 마지막 마진 제거 */
}

.tab4-meta-label {
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 22.4px */
  margin-bottom: 4px;
}

.tab4-meta-val {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

.overview .intro-form-section {
  padding: 160px 0 0;
}

.overview .intro-form-section:last-of-type {
  border-bottom: none;
}

.overview .section-desc-top {
  margin-bottom: 56px;
}

.overview .section-desc-top p {
  margin-bottom: 4px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.overview .section-desc-top strong {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

/* --- 선정기준 스펙 --- */
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.criteria-item {
  display: flex;
  gap: 16px;
  padding: 48px 40px;
  border-bottom: 1px solid #d1d1d1;
}
.criteria-item:first-child {
  border-top: 3px solid #000;
}

.criteria-item .ico-box {
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  flex-shrink: 0;
}

.criteria-item .ico-product {
  background-image: url("/assets/user/images/sub/ico-criteria-01.png");
}
.criteria-item .ico-responsibility {
  background-image: url("/assets/user/images/sub/ico-criteria-02.png");
}
.criteria-item .ico-satisfaction {
  background-image: url("/assets/user/images/sub/ico-criteria-03.png");
}
.criteria-item .ico-brand {
  background-image: url("/assets/user/images/sub/ico-criteria-04.png");
}

.criteria-item .txt-box h3 {
  margin: 0 0 8px 0;
  color: var(--color-primary);
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.criteria-item .txt-box p {
  color: #777;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

/* --- 선정절차 스펙 --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.process-card {
  text-align: center;
}

.process-card .circle-box {
  margin-bottom: 40px;
}

.process-card .circle-box .circle-img {
  width: 320px;
}

.process-card h3 {
  margin: 0 0 20px 0;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.process-card p {
  color: #999;
  margin: 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

/* 타임라인 바 형태 */
.timeline-box {
  background-color: #f9f9f9;
  border-radius: 32px;
  padding: 40px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

.timeline-bar {
  position: absolute;
  top: 46px;
  left: 3%;
  right: 3%;
  height: 2px;
  background-color: #c7c9bd;
  z-index: 1;
}
.timeline-bar::before,
.timeline-bar::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 2px;
  height: 12px;
  background-color: #cccccc;
}

.timeline-bar::before {
  left: 0;
}

.timeline-bar::after {
  right: 0;
}
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.timeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-node .time-dt {
  width: 14px;
  height: 14px;
  background-color: #ff3366;
  border-radius: 50%;
  display: block;
  margin-bottom: 16px;
}

.timeline-node .time-date {
  display: block;
  margin-bottom: 8px;
  color: #fe2c53;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.timeline-node .time-txt {
  margin: 0;
  color: #999;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}

/* --- 접수안내 스펙 --- */
.flex-guide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-visual-img {
  width: 586px;
  flex-shrink: 0;
}

.guide-visual-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.guide-info-details {
  flex: 1;
}

.guide-block:first-child {
  border-top: 1px solid #d1d1d1;
}
.guide-block {
  padding: 40px 0;
  border-bottom: 1px solid #d1d1d1;
}

.guide-block .block-sub-tag {
  display: inline-block;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%; /* 22.4px */
}

.guide-block .block-main-title {
  margin-bottom: 4px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.guide-block .block-main-title .accent-color {
  color: #fe2c53;
}

.guide-block .block-notice-desc {
  color: #777;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}

.guide-block .nested-block-title {
  margin-bottom: 16px;
  color: #fe2c53;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.guide-block .bullet-list li {
  color: #777;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
  position: relative;
  padding-left: 24px;
}

.guide-block .bullet-list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: #777;
}

.benefit-details {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.benefit-block {
  padding: 64px 0;
  border-bottom: 1px solid #d1d1d1;
}

.benefit-block:first-of-type {
  border-top: 1px solid #d1d1d1;
}

.benefit-ico {
  width: 32px;
  height: 32px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  flex-shrink: 0;
}

.ico-camera {
  background-image: url("/assets/user/images/sub/ico-camera.png");
}
.ico-doc {
  background-image: url("/assets/user/images/sub/ico-doc.png");
}
.ico-users {
  background-image: url("/assets/user/images/sub/ico-users.png");
}
.ico-book {
  background-image: url("/assets/user/images/sub/ico-book.png");
}

.benefit-content h4 {
  margin: 16px 0;
  color: #767958;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.benefit-content p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  letter-spacing: -0.4px;
}
.join-guide .btn-wrap-center {
  width: 100%;
  max-width: 1504px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: right;
  margin-bottom: 160px;
}
.guide-block .nested-block-title:nth-child(4) {
  color: #000;
}
.join-guide .color-primary {
  color: #7864f9 !important;
}
.intro .intro-box > .intro-text-box {
  display: none;
}

.my-section-wrap {
  padding: 40px 0 80px;
}
.mypage .sub-title {
  margin-bottom: 40px;
}

.my-info-container {
  background-color: #f9f9f9;
  padding: 56px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.info-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-block-title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 48px */
  letter-spacing: -0.64px;
}

.info-grid {
  display: grid;
  gap: 16px;
  width: 100%;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-1 {
  grid-template-columns: 1fr;
}

.info-card {
  background-color: #ffffff;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 80px;
  justify-content: center;
  box-sizing: border-box;
}

.card-label {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 25.6px */
  letter-spacing: -0.08px;
}

.info-section:first-of-type .card-label {
  color: #767958;
}

.card-value {
  color: #000;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 39px */
  letter-spacing: -0.52px;
}

.btn-area-right {
  display: flex;
  justify-content: flex-end;
}

.btn-submit-pink {
  background-color: #fe2c53;
  color: #ffffff;
  border: none;
  padding: 20px 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s ease;
  color: var(--text-inverse, #fff);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
}

.btn-submit-pink:hover {
  background-color: #b21f3a;
}

.arrow-icon {
  font-size: 24px;
  font-weight: 500;
}
.history .history-more-action {
  display: none;
}
.organization .pc {
  display: block;
}
.organization .mo {
  display: none;
}

.mypageedit .btn-wrap-right {
  gap: 32px;
}
.mypageedit .notice-summary-box {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mypageedit .notice-summary-box .notice-subtext {
  font-size: 24px;
  font-weight: 700;
  line-height: 150%; /* 36px */
  letter-spacing: -0.48px;
  text-align: left;
}
.gallery .archive-list-container,
.intro .archive-list-container,
.awardReviewer .archive-list-container,
.member .archive-list-container {
  padding-top: 80px;
}
.intro.journal .container.intro-box .top-wrap .intro-text-box img {
  display: none;
}
.newsletter .archive-title {
  margin: 0 0 32px 0;
}
.content-wrapper.conference .tab-item:hover .tab-btn,
.content-wrapper.conference .tab-item.active .tab-btn,
.content-wrapper.submission .tab-item:hover .tab-btn,
.content-wrapper.submission .tab-item.active .tab-btn,
.content-wrapper.gallery .tab-item:hover .tab-btn,
.content-wrapper.gallery .tab-item.active .tab-btn {
  padding: 24px 0;
}
.content-wrapper.conference .tab-btn,
.content-wrapper.submission .tab-btn,
.content-wrapper.gallery .tab-btn {
  padding: 16px 0;
}
.content-wrapper.conference .archive-item:first-child {
  border-top: 0;
}
/* ==========================================================================
   M O B I L E   R E S P O N S I V E   (1024px 이하 처리)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .gallery .archive-list-container,
  .intro .archive-list-container,
  .awardReviewer .archive-list-container,
  .member .archive-list-container {
    padding-top: 0;
  }
  .main-wrapper .container-inner {
    padding: 0 0 20px;
  }
  .main-wrapper .container-inner.flex-row {
    flex-direction: column;
    gap: 40px;
  }
  .main-wrapper section {
  }
  .main-wrapper .section-news-quick {
    padding-top: 80px;
    background: #f9f9f9;
    margin-top: 0;
  }
  .main-wrapper .news-area {
    padding: 0 20px;
  }
  .main-wrapper .activity-accordion-board {
    width: unset;
    margin: 0 20px;
  }
  .activity-accordion-board .board-header,
  .activity-accordion-board .board-line,
  .activity-accordion-board .board-main-title {
    display: none !important;
  }
  .main-wrapper .item-div {
    align-items: unset;
    justify-content: space-between;
    margin-top: 4px;
    gap: 16px;
    flex-direction: column-reverse;
  }
  .main-wrapper .item-title {
    text-align: left;
  }
  .main-wrapper .icon-toggle {
    margin-left: auto;
  }

  /* 1섹션 반응형 */
  .main-wrapper .section-title-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .main-wrapper .title-btns {
    display: none;
  }
  .main-wrapper .title-m-btns {
    display: flex;
    padding: 48px 20px;
  }
  .main-wrapper .title-m-btns a {
    width: 100%;
    justify-content: center;
  }
  .main-wrapper .visual-img-box img {
    width: 100%;
  }
  .main-wrapper .news-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding-bottom: 36px;
    margin: 20px 0 0;
  }
  .main-wrapper .news-card {
    padding: 32px;
    background: #fff;
    flex: 0 0 350px;
  }
  .main-wrapper .quick-nav-area {
    width: 100%;
    flex-wrap: wrap;
  }
  .main-wrapper .quick-link-box {
    padding: 24px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.48px;
    flex-direction: unset;
  }
  .main-wrapper .quick-link-box > div {
    display: flex;
    align-items: center;
    flex-direction: unset;
    gap: 8px;
  }
  .main-wrapper .tab-menu-wrapper {
    max-width: 100%;
    padding: 0;
  }
  .wd705 {
    width: unset;
  }
  .title-btns a {
    padding: 5px;
  }
  .main-wrapper .quick-link-box:first-child {
    border-top: 0;
  }
  /* 2섹션 반응형 */
  .main-wrapper .tab-btn {
  }
  .main-wrapper .activity-layout {
    flex-direction: column;
    gap: 30px;
  }
  .main-wrapper .board-main-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .main-wrapper .accordion-body {
    padding-left: 10px;
  }
  .main-wrapper .item-date {
    width: auto;
    margin-right: 10px;
  }

  /* 3섹션 반응형 */
  .main-wrapper .slogan-text {
    font-size: 24px;
  }

  /* 4섹션 반응형 */
  .main-wrapper .gallery-side-nav {
    width: 100%;
  }
  .main-wrapper .gallery-side-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .main-wrapper .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    margin: 64px 12px 28px;
  }

  .main-wrapper .flex-row {
    display: unset;
  }
  .main-wrapper .gallery-grid-area {
    width: unset;
    margin-bottom: 28px;
  }
  .main-wrapper .section-gallery .since-img {
    max-width: 100%;
  }

  /* 소비자대상 */
  .overview .intro-form-section .flex-div {
    display: unset;
  }
  .overview .intro-form-section {
    padding: 48px 0;
  }
  .form-section-title {
    font-size: 32px;
    margin-bottom: 0;
  }
  .flex-div .intro-right-wrap .text-info {
    font-size: 20px;
  }
  .overview .intro-main-img img {
    height: 400px;
  }
  .overview .section-desc-top {
    margin-bottom: 32px;
    padding: 16px 0;
  }
  .overview .section-desc-top p,
  .overview .section-desc-top strong {
    display: block;
    padding: 16px 0 4px;
    font-size: 20px;
    letter-spacing: -0.4px;
    margin: 0;
  }
  .criteria-item {
    flex-direction: column;
    padding: 32px 0;
  }
  .criteria-item .txt-box h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .process-section .form-section-title {
    margin-bottom: 16px;
  }
  .process-card {
    padding: 0 15px;
  }
  .process-card .circle-box {
    margin-bottom: 32px;
  }
  .process-card h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .process-card p {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .timeline-box {
    padding: 32px;
  }
  .timeline-bar {
    top: 32px;
    bottom: 0;
    height: 664px;
    width: 2px;
    left: 38px;
  }
  .timeline-bar::before,
  .timeline-bar::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 2px;
    background-color: #cccccc;
  }

  .timeline-bar::before {
    top: 0px;
    left: -7px;
  }

  .timeline-bar::after {
    left: -7px;
    bottom: 0;
    right: unset;
    top: unset;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
    grid-gap: 24px;
    padding: 24px 0;
  }
  .timeline-node .time-dt {
    position: absolute;
    left: 0;
    top: 10px;
    margin: 0;
  }
  .timeline-node {
    padding-left: 37px;
    align-items: flex-start;
  }
  .flex-guide {
    grid-template-columns: 1fr;
    margin-top: 16px;
  }
  .intro-form-section .guide-visual-img {
    width: 100%;
    height: 239px;
    overflow: hidden;
    position: relative;
  }

  .intro-form-section:nth-child(5) .guide-visual-img img {
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
  }
  .guide-block {
    padding: 32px 0;
  }
  .guide-block .block-sub-tag {
    margin-bottom: 8px;
  }
  .guide-block .block-main-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
    word-break: keep-all;
  }
  .guide-block .nested-block-title:last-child {
    color: #000;
  }
  .guide-block .nested-block-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .guide-block:first-child {
    border-top: 0;
  }
  .bullet-list.mb40 {
    margin-bottom: 0;
  }
  .benefit-block {
    padding: 40px 0;
  }
  .benefit-block:first-of-type {
    border-top: 0;
  }
  .benefit-content h4 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .pd80 {
    padding-bottom: 48px !important;
  }
  .intro-text-box img {
    height: 80px;
  }
  .timeline-row {
    padding: 48px 0;
    flex-direction: column;
    align-items: center;
  }
  .timeline-row .year-label {
    font-size: 48px;
    letter-spacing: -0.96px;
    padding: 10px 0;
  }
  .company-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .company-card {
    width: unset;
    flex: 1;
  }
  .timeline-row:last-child {
    border-bottom: 1px solid #d1d1d1;
  }
  .award-timeline-container {
    margin-bottom: 48px;
    margin-top: 0;
  }
  .intro-text-box {
    padding: 0 0 48px;
  }
  .news-list-wrapper {
    margin-bottom: 48px;
  }
  .news-list-wrapper .news-card {
    display: unset;
    padding: 48px;
  }
  .news-list-wrapper .news-card .news-thumb {
    width: 100%;
    height: 47.44vw;
    margin-bottom: 48px;
  }
  .news-list-wrapper .news-card .news-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .news-list-wrapper .news-card .news-body {
    padding-top: 0;
    display: unset;
  }
  .content-wrapper.award-news {
    padding-top: 48px;
  }
  .news-list-wrapper .news-card .btn-arrow-link {
    margin-top: 16px;
  }
  .content-wrapper.overview .container,
  .content-wrapper.awardhistory .container {
    padding: 0 20px;
  }
  .view-detail {
    padding: 0;
  }
  .view-detail .view-header {
    padding: 56px 20px;
    border-top: 0;
  }
  .view-detail .view-meta {
    position: relative;
    margin-bottom: 16px;
  }
  .view-detail .view-meta .view-div {
    margin-top: 74px;
  }
  .header-btn-wrap {
    position: absolute;
    right: 0;
    top: 0;
  }
  .view-detail .view-title {
    font-size: 32px;
    line-height: 150%; /* 48px */
    letter-spacing: -0.64px;
  }
  .view-detail .view-body {
    padding: 48px 20px;
  }
  .view-detail .attach-row {
    padding: 32px 20px;
    text-align: right;
    display: block;
  }
  .view-detail .file-info {
    margin-bottom: 24px;
    text-align: left;
    display: block;
  }
  .file-info .attach-label::after {
    display: none;
  }
  .view-detail .attach-label {
    padding: 0;
    margin: 0;
    display: block;
    margin-bottom: 8px;
  }
  .content-wrapper.login {
    padding: 48px 0;
  }
  .login-container {
    margin-bottom: 48px;
  }
  .login-form-box {
    padding: 40px 20px 0;
  }
  .login-form-box.btm-box {
    padding: 0 20px;
  }
  .login-form-box .checkbox-group {
    padding: 32px 0;
  }
  .login-form-box .btn-login {
    margin: 32px 0;
  }
  .login-footer-links .link-item {
    font-size: 16px;
  }
  .login-footer-links .link-item::after {
    display: none;
  }
  .find-result-container {
    margin-bottom: 40px;
  }
  .find-result-container #resultFailure {
    align-items: unset;
  }
  .find-result-icon {
    margin-top: 3px;
  }
  .change-pw-form-box {
    margin: 0 20px;
  }
  .content-wrapper.agreement,
  .content-wrapper.join {
    padding: 0 0 48px;
  }
  .all-check-div {
    padding: 32px 20px;
    margin-top: 0;
  }
  .terms-wrap {
    padding: 0 20px;
  }
  .terms-title {
    font-size: 24px;
    letter-spacing: -0.48px;
    margin-bottom: 20px;
    margin-top: 16px;
  }
  .terms-content {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .terms-scroll-box {
    height: 450px;
    margin-bottom: 32px;
    padding-right: 32px;
    border-width: 32px 24px 32px 32px;
    border-style: solid;
    border-color: #f9f9f9;
  }
  .agreement .btn-wrap-right {
    margin: 72px 0 40px;
    justify-content: center;
  }
  .form-row {
    flex-direction: column;
  }
  .form-label {
    min-width: unset;
    padding: 32px 20px 0;
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .form-field {
    padding: 20px;
  }
  .join-form-section {
    margin: 0 0 32px 0;
  }
  .form-section-title {
    font-size: 24px;
    margin: 0;
  }
  .join .form-section-title {
    padding: 16px;
  }
  .join .btn-wrap-right {
    margin: 32px 0 48px;
    justify-content: center;
  }
  .archive-item {
    padding: 32px;
    flex-direction: column;
    align-items: unset;
  }
  .archive-action {
    text-align: right;
    margin-top: 32px;
  }
  .archive-info {
    padding: 0;
  }
  .archive-title {
    font-size: 24px;
    letter-spacing: -0.48px;
    margin: 0 0 32px 0;
  }
  .archive-desc {
    margin: 0 0 32px 0;
  }
  .intro-text-box {
    padding: 0 20px 48px !important;
  }
  .awardhistory .intro-text-box {
    padding: 0 0 48px;
  }
  .content-wrapper .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .content-wrapper .gallery-card .card-thumb {
    width: 100%;
    height: 47.44vw;
  }
  .content-wrapper .gallery-card .card-body {
    gap: 24px;
  }
  .content-wrapper.gallery .gallery-grid {
    border-top: 1px solid #d1d1d1;
  }
  .content-wrapper.gallery .gallery-card {
    border-bottom: 1px solid #d1d1d1;
  }
  .wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main,
  .content-wrapper.view-detail,
  .content-wrapper.view-detail > .container,
  .view-wrap,
  .view-body {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .view-navigation {
    margin-top: auto;
  }
  .content-wrapper.faq .accordion-wrap {
    padding: 48px 0 96px;
  }
  .accordion-trigger {
    padding: 40px;
    display: unset;
    position: relative;
  }
  .accordion-trigger > div {
    display: block;
    padding-top: 48px;
  }
  .accordion-icon {
    position: absolute;
    right: 40px;
    top: 40px;
  }
  .badge-q,
  .question-text {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
  .question-text {
    margin-top: 8px;
  }
  .accordion-content .content-inner {
    padding: 48px;
  }
  .accordion-item.open .accordion-content {
    max-height: 888px;
  }
  .accordion-container {
    border-top: 1px solid #d1d1d1;
  }
  .accordion-item {
    border-bottom: 1px solid #d1d1d1;
  }
  .accordion-item.open .accordion-trigger {
    border-bottom: 0;
  }
  .join-guide .content-wrapper {
    padding: 0 0 48px;
  }
  .user-content {
    display: block;
  }
  .table-responsive {
    margin: 0 20px;
  }
  .intro-line {
    margin: 48px 0;
    border: 0;
  }
  .sub-section-wrap {
    display: unset;
  }
  .sub-section-content {
    padding: 0 20px;
  }
  .join-step-list {
    margin-top: 0;
    padding: 0 20px;
  }
  .join-step-list li:first-child {
    position: relative;
  }
  .join-step-list li:first-child .btn-link {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .join-step-list li:first-child p {
    margin-bottom: 36px;
  }
  .table-responsive {
    width: unset;
  }
  .guide-highlight-box .table-responsive {
    margin: unset;
  }
  .join-guide .table {
    table-layout: unset;
  }
  .join-guide .user-content .table-basic th {
    min-width: 244px;
  }
  .join-guide .user-content .table-basic td {
    min-width: 488px;
    padding: 32px 40px;
  }
  .join-guide .join-section-wrap .table-basic th {
    min-width: 265px;
  }
  .join-guide .btn-wrap-center {
    text-align: center;
    margin-bottom: 96px;
    padding: 0;
  }
  .intro .intro-box > .top-wrap {
    display: none;
  }
  .intro.journal .intro-box > .top-wrap,
  .intro.journal .intro-box > .intro-text-box img {
    display: block;
  }
  .intro.journal .intro-box > .top-wrap img {
    display: none;
  }
  .intro .intro-box > .intro-text-box {
    display: block;
  }
  .intro .intro-box .intro-line {
    display: none;
  }
  .notice-summary-box {
    padding: 32px 20px;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: -0.48px;
    text-align: left;
  }
  .submission .intro-form-section {
    padding: 0;
  }
  .submission #tab-1 .table th {
    width: 275px;
  }
  .download-btn-wrap {
    grid-template-columns: 1fr;
  }
  .download-btn-wrap .btn-line-purple {
    font-size: 20px;
    padding: 20px;
    flex-direction: column;
    height: unset;
    text-align: left;
    align-items: unset;
  }
  .download-btn-wrap .btn-line-purple img {
    margin-left: auto;
  }
  .user-paper-guide .guide-highlight-box {
    padding: 20px;
  }
  .user-paper-guide .content-side {
    width: 70%;
  }
  .guide-item-row .guide-highlight-box.mt8 .table th:last-child {
    width: 1100px !important;
  }
  .statute-wrap {
    margin-top: 48px;
  }
  .statute-section {
    border: 0;
    padding-top: 0;
  }
  .statute-title-box,
  .statute-content-box {
    width: unset;
    padding: 0 20px;
  }
  .statute-content-box {
    margin: 16px 0 16px 24px;
    word-break: keep-all;
    border-bottom: 1px solid #d1d1d1;
    margin: 0;
    padding-bottom: 32px;
  }
  .statute-chapter-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.64px;
    margin: 16px 0 8px;
    padding-top: 32px;
  }
  .statute-row.ul-sub {
    padding: 16px 0 16px 24px;
  }
  .statute-sub-list li {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.08px;
  }
  #tab-2 .statute-article-num {
    display: none;
  }
  .statute-section:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }
  .statute-section:first-child {
    padding-bottom: 0;
  }
  .content-wrapper.intro.submission {
    padding: 0 0 48px 0;
  }
  .statute-section:last-child > div:last-child {
    border-bottom: 0;
  }
  #tab-3 .statute-row {
    flex-direction: column;
    gap: 0;
    padding: 4px 0 8px 24px;
  }
  .statute-article-text {
    font-size: 16px;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.08px;
  }
  #tab-2 .statute-wrap,
  #tab-3 .statute-wrap {
    margin: 0;
  }
  #tab-3 .statute-section {
    padding: 0;
  }
  .tab4-box {
    padding: 48px 20px;
  }
  .tab4-box .tab4-title {
    font-size: 32px;
    margin-bottom: 32px;
    letter-spacing: -0.64px;
  }
  .tab4-card-wrap {
    gap: 16px;
    flex-direction: column;
  }
  .tab4-profile-card {
    padding: 32px 20px;
  }
  .tab4-card-header {
    flex-direction: column;
    align-items: start;
    padding: 0 24px 32px;
  }
  #tab-4 .table-basic th {
    width: 247px;
  }
  #tab-4 .table-responsive {
    margin: 0;
  }

  .award-timeline-container.pc {
    display: none;
  }
  .award-timeline-container.mo {
    display: block;
  }

  .award-timeline-container.mo .year-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 32px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
  }
  .award-timeline-container.mo .timeline-row {
    padding: 0;
  }
  .award-timeline-container.mo .year-toggle-btn {
    gap: 20px;
    justify-content: center;
  }
  .award-timeline-container.mo .timeline-row .year-label {
    color: #d1d1d1;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.12px;
    width: unset;
  }
  .award-timeline-container.mo .timeline-row.active .year-label {
    color: var(--color-primary);
  }
  .award-timeline-container.mo .year-toggle-btn .arrow-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d1d1d1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.3s ease;
  }
  .award-timeline-container.mo .timeline-row.active .arrow-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234c22b4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  }
  .award-timeline-container.mo .timeline-row.active .arrow-icon {
    transform: rotate(180deg);
  }
  .award-timeline-container.mo .accordion-content {
    overflow: hidden;
    display: none;
    width: 100%;
  }
  .award-timeline-container.mo .timeline-row.active .accordion-content {
    max-height: 2000px;
    display: block;
    margin-bottom: 40px;
  }
  .timeline-row.is-legacy {
    display: none !important;
  }

  .btn-timeline-more {
    background-color: #ffffff;
    color: #fe2c53;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.48px;
    border: 0;
    text-align: center;
    padding: 24px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 48px auto 0;
  }
  .btn-timeline-more::after {
    content: "";
    display: inline-block;
    width: 32px;
    height: 32px;
    background-image: url("/assets/user/images/sub/icon-arrow-down.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .content-wrapper.awardhistory .container {
    padding-bottom: 0;
  }

  .table-responsive {
    padding-bottom: 16px;
  }
  .table-responsive::-webkit-scrollbar {
    height: 4px;
  }
  .table-responsive::-webkit-scrollbar-track {
    background: #e2e2e2;
  }
  .table-responsive::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
  }

  .news-grid::-webkit-scrollbar {
    height: 4px;
  }
  .news-grid::-webkit-scrollbar-track {
    background: #e2e2e2;
  }
  .news-grid::-webkit-scrollbar-thumb {
    background: #000;
    border-radius: 10px;
  }

  .main-container.mypage .container {
    padding: 0 20px;
  }

  .my-info-container {
    padding: 40px 24px;
  }

  .mypage .title-text {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
  }
  .mypage .table {
    width: 1100px;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .btn-submit-pink {
    flex: 1;
    justify-content: center;
  }
  .mypage .content-wrapper {
    padding: 48px 0;
  }
  .mypage .sub-title {
    padding: 0 0 40px 0;
    margin: 0;
  }
  .my-section-wrap,
  .my-info-container {
    margin: 0 0 48px;
  }
  .my-section-wrap {
    padding: 0;
  }

  .content-wrapper.intro .intro-form-section {
    padding: 48px 0;
  }

  .content-wrapper.intro .form-section-title {
    padding: 0 20px 32px;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.64px;
    margin: 0;
  }
  .intro .work-card-history .form-section-title {
    padding: 0 !important;
    margin-bottom: 32px;
  }
  .content-wrapper.intro .flex-div {
    flex-direction: column;
    padding: 0 20px;
  }
  .intro .value-card-list {
    gap: 56px;
    margin-bottom: 48px;
    margin-top: 48px;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  .intro .value-card-list li:not(:last-child)::after {
    display: none;
  }
  .content-wrapper.intro .intro-form-section:nth-child(1) .form-section-title {
    padding: 0;
  }
  .intro .work-grid-container {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 20px;
  }
  .intro .work-card {
    padding: 48px 20px;
  }
  .intro .flex-div .work-grid-container {
    padding: 0;
  }
  .intro .work-card-history {
    height: unset;
  }
  .intro .history-logo-box {
    padding: unset;
  }
  .intro .intro-main-img img {
    height: 400px;
  }
  .intro-greeting .flex-div {
    flex-direction: column;
    align-items: center;
    padding-bottom: 48px;
  }
  .intro-greeting .greeting-img-wrap {
    width: unset;
  }
  .intro-greeting .greeting-img-wrap img {
    max-width: 175px;
  }
  .intro-greeting .greeting-title-box .greeting-title,
  .intro-greeting .greeting-title-box .main-title {
    text-align: center;
  }
  .intro-greeting .greeting-title-box .greeting-title {
    font-size: 36px;
    font-weight: 200;
    line-height: 125%; /* 45px */
    letter-spacing: -0.72px;
    padding: 48px 20px;
  }
  .intro-greeting .greeting-title-box .main-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 150%; /* 48px */
    letter-spacing: -0.64px;
    word-break: keep-all;
    padding: 0 20px;
  }
  .intro-greeting .flex-jt {
    padding: 0 20px;
  }
  .intro-greeting .intro-form-section p:last-child {
    font-size: 5vw;
  }
  .intro-greeting .intro-form-section {
    padding: 48px 0;
  }
  .intro-greeting .container {
    padding-bottom: 48px;
  }
  .content-wrapper.intro-greeting {
    padding: 48px 0 0;
  }
  .rules .statute-wrap {
    margin: 48px 0 !important;
  }
  .rules .statute-chapter-title {
    padding-top: 0;
  }
  .rules .statute-content-box {
    padding: 16px 20px;
  }
  .rules .statute-row {
    flex-direction: column;
    gap: 0;
  }
  .rules .statute-row.ul-sub {
    padding: 8px 0 8px 24px;
    margin: 0;
  }
  .content-wrapper.contact {
    padding: 48px 20px;
  }
  .content-wrapper.contact .contact-card-wrap {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: unset;
    width: 100%;
    margin-bottom: 0;
    gap: 16px;
  }
  .history-top-bg {
    display: none;
  }
  .content-wrapper.history {
    padding: 0;
  }
  .history .history-top-banner .sub-intro {
    padding: 48px 20px;
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 200;
    line-height: 125%;
    letter-spacing: -0.72px;
    word-break: keep-all;
  }
  .history .history-top-banner .main-intro-title {
    text-align: center;
    margin: 0 20px 48px;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.64px;
  }
  .history .history-flex-row {
    display: unset;
    margin: 0;
  }
  .history .history-col {
    gap: 40px;
    padding: 48px 56px;
  }
  .history .history-col.mt318 {
    margin-top: 0;
    padding: 0;
  }
  .history .history-item {
    width: unset;
  }
  .history .history-date {
    font-size: 24px;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
  }
  .history .history-more-action {
    display: block;
    margin-bottom: 48px;
  }
  .history .btn-timeline-more {
    margin: 0 auto;
    padding: 0;
  }
  .intro-form-section .officer-grid-wrap {
    grid-template-columns: 1fr;
    column-gap: unset;
    row-gap: 48px;
  }
  .history .intro-form-section {
    padding: 0 75px 48px;
  }
  .organization .pc {
    display: none;
  }
  .organization .mo {
    display: block;
  }
  .container.mo .sel-box {
    margin-bottom: 40px;
  }
  .officer-mo-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .officer-mo-card {
    padding: 24px;
    border-bottom: 1px solid #d1d1d1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .officer-mo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.48px;
  }

  .officer-mo-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 25.6px */
    letter-spacing: -0.08px;
    color: #777;
  }

  .content-wrapper.organization {
    padding: 48px 20px;
  }
  .organization .custom-select-container {
    width: 126px;
  }
  .organization .select-trigger {
    padding: 16px;
    color: var(--text-primary, #000);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
  }
  .content-wrapper.mypageedit {
    padding: 0 0 48px;
  }
  .mypageedit .form-section-title {
    padding: 16px 20px;
  }
  .form-field .form-field-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
  }
  .mypageedit .notice-summary-box {
    margin: 40px 20px;
    gap: 16px;
  }
  .mypageedit .btn-wrap-right {
    justify-content: center;
    flex-direction: column;
    padding: 32px 20px;
    flex-direction: column-reverse;
  }
  .mypageedit .btn-wrap-right > a,
  .mypageedit .btn-wrap-right > button {
    width: 100%;
    justify-content: center;
  }
  .main-wrapper .activity-layout .m-btn {
    display: block;
    margin: 18px 20px 80px;
  }
  .main-wrapper .activity-layout .m-btn a {
    width: 100%;
    justify-content: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 30px */
    letter-spacing: -0.4px;
  }
  .main-wrapper .section-gallery .since-img {
    display: none;
  }
  .main-wrapper .section-gallery .since-img-m {
    display: block;
    width: 100%;
  }
  .main-wrapper .section-gallery {
    margin: 0;
  }
  .main-wrapper .section-gallery .section-title {
    margin: 0 20px;
  }
  .main-wrapper .gallery-grid > *:nth-child(n + 4) {
    display: none !important;
  }

  .main-wrapper .section-gallery {
    margin: 0;
  }
  .section-gallery .gallery-tab-list {
    gap: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    padding: 0;
    margin: 20px 20px 0;
    border-top: 2px solid #d1d1d1;
    border-left: 2px solid #d1d1d1;
  }

  .section-gallery .gallery-tab-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    background-color: unset;
    border-right: 2px solid #d1d1d1;
    border-bottom: 2px solid #d1d1d1;
  }

  .section-gallery .gallery-tab-item a {
    color: #999;
    padding: 0 !important;
    border: 0;
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 150% !important; /* 36px */
    letter-spacing: -0.48px !important;
  }

  .section-gallery .gallery-tab-item.active a {
    color: #4b26a6;
  }

  .section-gallery .gallery-tab-item.active {
    z-index: 1;
  }

  .section-gallery .gallery-tab-item.active::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 4px solid #4b26a6;
    pointer-events: none;
    transform: unset !important;
    width: unset !important;
    height: unset !important;
    background-color: unset !important;
    transition: unset !important;
  }
  .gallery-tab-list .gallery-tab-item::before {
    height: 0;
  }

  .section-gallery .gallery-tab-item.active a {
    color: #4b26a6;
  }

  .main-wrapper .activity-visual {
    display: none;
  }
  .main-wrapper .activity-visual-m {
    display: block;
  }
  .gallery-tab-list .gallery-tab-item.active {
    padding-left: 0;
  }
  .gallery .tab-content,
  .conference .tab-content {
    padding-top: 48px;
  }
  .main-wrapper .section-activity-tabs {
    margin-top: 0;
  }
  .intro.journal .container.intro-box .top-wrap .intro-text-box img {
    display: block;
    height: 80px;
    border-top: unset;
    flex-shrink: unset;
    width: unset;
    aspect-ratio: unset;
    object-fit: unset;
  }
  .intro.journal .intro-box > .top-wrap {
    padding: 0;
  }

  .intro .history-logo-box img {
    width: 100%;
    height: auto;
  }
  .fl80 {
    display: block;
    gap: 0;
    padding: 0 20px;
  }
  .table.table-ex.jd th {
    width: 275px !important;
  }
}

@media (min-width: 760px) {
  .banner-bg-img {
    width: 100%;
  }
}

.symbol-wrap {
  max-width: 708px; /* PC 화면에서 로고 박스 최대 너비 */
  margin: 0 auto;
}

.symbol-title-box {
  align-items: center !important; /* PC: 타이틀 중앙 정렬 */
  height: auto !important;
}

/* =========================================
   2. 태블릿/모바일 버전 (1024px 이하)
========================================= */
@media (max-width: 1024px) {
  .symbol-wrap {
    padding: 0 20px; /* 모바일 화면 좌우 여백 확보 */
  }

  .symbol-title-box {
    align-items: flex-start !important; /* 모바일: 첫 번째 이미지처럼 타이틀 좌측 정렬 */
  }

  /* 모바일 화면에서 로고가 찌그러지는 것을 방지하기 위해 여백 최적화 */
  .intro .history-logo-box {
    padding: 0 54px !important;
  }

  /* 필요 시 모바일 로고 박스의 높이도 유동적으로 조절 */
  .work-card-history.js-c {
    height: 158px !important;
    padding: 40px 0 !important;
  }
}
