@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: keep-all;
}

html {
  scroll-behavior: smooth;
}

img {
  vertical-align: middle;
}

li {
  list-style: none;
  word-break: keep-all;
}

a {
  text-decoration: none;
  color: inherit;
  word-break: keep-all;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

table,
td,
th {
  border-collapse: collapse;
  word-break: keep-all;
}

:root {
  /*그 외 변수정하기*/
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

br.mobile-view {
  display: none;
}

@media (max-width: 768px) {
  br.mobileDelete {
    display: none;
  }
  br.mobile-view {
    display: initial;
  }
}
.main-header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.main-header .main-nav .nav-list > li a {
  color: #333;
}

.main-header .main-nav .header-submenu li a {
  color: #e0e0e0;
}

.main-header .menu-toggle {
  border-color: rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
}

.subpage-wrapper {
  min-height: 100vh;
  /* 뷰포트 높이 기준 */
  display: flex;
  flex-direction: column;
}

.subpage {
  flex: 1 0 auto;
  /* 콘텐츠 영역: 남는 공간을 채움 */
}

.footer {
  flex-shrink: 0;
  /* 푸터: 내용이 적을 때도 항상 아래에 */
}

.subpage {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 36px 80px;
  background: #fff;
}
.subpage .subpage-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 544px;
  min-height: 180px;
  z-index: 1;
  overflow-x: hidden;
}
.subpage .subpage-hero-bg {
  position: absolute;
  inset: 0;
  background: #f5f6f8 url("../img/titleBG.png") no-repeat center/cover;
  z-index: 1;
  background-attachment: fixed;
}
@keyframes heroZoomIn {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.subpage .subpage-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 246px 36px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 97px;
}
.subpage .subpage-title {
  font-size: 4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: -0.375rem;
}
.subpage .subpage-title > div {
  display: inline-block;
}
.subpage .subpage-breadcrumb {
  color: #888;
  font-size: 1.5rem;
}
.subpage {
  /* 탭 메뉴 - hero 밑에 반쯤 걸쳐올라오게 */
}
.subpage .subpage-tab {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  margin-top: -50px;
  /* 배경을 덮으며 살짝 위로! (탭 높이/2~3만큼 빼기) */
  margin-bottom: 80px;
}
.subpage .subpage-tab ul {
  width: 100%;
  display: flex;
  gap: 0;
  background: #E8E9ED;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(24, 38, 61, 0.06);
  overflow: hidden;
}
.subpage .subpage-tab ul li {
  flex: 1;
}
.subpage .subpage-tab ul li a {
  display: block;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #222;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.subpage .subpage-tab ul li.active a {
  background: #3C7BC0;
  color: #fff;
  font-weight: 700;
}
.subpage .subpage-tab ul li:not(.active):hover a {
  background: #e7f1ff;
  background: #ACCEF2;
  color: #3C7BC0;
  color: #333;
}
.subpage {
  /* (이하 탭 스타일은 앞서 예시와 동일) */
}
.subpage.about .about-greeting h2 {
  font-size: 2.5rem;
  padding-bottom: 80px;
}
.subpage.about .about-greeting .greeting-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.subpage.about .about-greeting .greeting-content .greeting-text {
  flex: 1;
}
.subpage.about .about-greeting .greeting-content .greeting-text h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.subpage.about .about-greeting .greeting-content .greeting-text .greeting-hello {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.subpage.about .about-greeting .greeting-content .greeting-text p {
  line-height: 1.7;
  font-size: 1rem;
}
.subpage.about .about-greeting .greeting-content .greeting-image {
  flex: 1;
  min-width: 260px;
}
.subpage.about .about-greeting .greeting-content .greeting-image img {
  width: 100%;
  max-width: 600px;
  min-height: 200px;
  background: #eee;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 4px 12px rgba(31, 80, 168, 0.05);
}
.subpage.overview h2 {
  margin-left: 36px;
  font-size: 2.5rem;
  padding-bottom: 48px;
}
.subpage.overview .scroll-section {
  min-height: 150vh;
  padding: 0px 0px 120px;
  position: relative;
}
.subpage.overview .content-wrapper {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.subpage.overview .sticky-text {
  position: sticky;
  top: 40vh;
  height: -moz-fit-content;
  height: fit-content;
}
.subpage.overview .sticky-text h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subpage.overview .highlight {
  color: #007aff;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4rem);
}
.subpage.overview .sticky-text p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #86868b;
  margin-bottom: 1.5rem;
}
.subpage.overview .cards-container {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 50px 0;
}
.subpage.overview .card {
  position: relative;
  height: 470px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(100px) scale(0.95);
}
.subpage.overview .card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.subpage.overview .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}
.subpage.overview .card-1 {
  background: url("../img/aboutus/card1.png") no-repeat center center/cover;
}
.subpage.overview .card-1 .card-decoration {
  background-image: url("../img/aboutus/icon-home.png");
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: center;
}
.subpage.overview .card-2 {
  background: url("../img/aboutus/card2.png") no-repeat center center/cover;
}
.subpage.overview .card-2 .card-decoration {
  background-image: url("../img/aboutus/icon-laptop.png");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
}
.subpage.overview .card-3 {
  background: url("../img/aboutus/card3.png") no-repeat center center/cover;
}
.subpage.overview .card-3 .card-decoration {
  background-image: url("../img/aboutus/icon-globe.png");
  background-size: 70px;
  background-repeat: no-repeat;
  background-position: center;
}
.subpage.overview .card-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  z-index: 2;
}
.subpage.overview .card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.subpage.overview .card p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}
.subpage.overview .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}
.subpage.overview .card:hover::before {
  background: rgba(0, 0, 0, 0.05);
}
.subpage.overview .card-decoration {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  animation: float 3s ease-in-out infinite;
}
.subpage.overview .organization {
  overflow: hidden;
  border-radius: 32px;
  width: 100%;
  background: linear-gradient(110.83deg, #DAEEFC 0.15%, #F3F7FC 50%, #D0EBFC 99.85%);
  margin-bottom: 120px;
  padding: 40px;
}
.subpage.overview .organization img {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.subpage.overview .currentsituation {
  background: rgba(235, 236, 237, 0.35);
  border-radius: 32px;
  padding: 40px;
  font-size: 24px;
  color: #868686;
  color: #333;
  margin-bottom: 120px;
}
.subpage.overview .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 40px;
  /* 행, 열 간격 */
}
.subpage.overview {
  /* 아이템 */
}
.subpage.overview .info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.subpage.overview .info-item.wide {
  grid-column: 1/-1;
  /* 2열 전체 차지 */
}
.subpage.overview {
  /* 아이콘 */
}
.subpage.overview .icon-box {
  background: #BBD4E7;
  border-radius: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.subpage.overview .icon-box i {
  font-size: 18px;
  color: white;
}
.subpage.overview {
  /* 텍스트 */
}
.subpage.overview .text {
  line-height: 1.4;
}
.subpage.overview .label {
  font-weight: bold;
  color: #3C7BC0;
  margin-bottom: 4px;
}
.subpage.overview {
  /* 사업분야 */
}
.subpage.overview .sub-label {
  display: block;
  margin-bottom: 2px;
}
.subpage.overview .chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 2px;
}
.subpage.overview .chip {
  background: #0068B7;
  color: white;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 18px;
  white-space: nowrap;
}
.subpage.overview {
  /* 반응형 */
}
@media (max-width: 768px) {
  .subpage.overview .currentsituation {
    font-size: 18px;
    padding: 24px;
  }
  .subpage.overview .info-grid {
    grid-template-columns: 1fr;
  }
  .subpage.overview .icon-box {
    width: 44px;
    height: 44px;
  }
  .subpage.overview .icon-box i {
    font-size: 20px;
  }
  .subpage.overview .chip {
    font-size: 16px;
    padding: 3px 10px;
  }
}
.subpage.overview .certification .paper-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0 auto;
}
.subpage.overview .certification .paper {
  width: 292px;
  max-height: 600px;
}
.subpage.overview .certification .paper .image img {
  transform: translateX(30px);
  width: 90%;
  box-shadow: 2px 4px 24px rgba(0, 0, 0, 0.1);
}
.subpage.overview .certification .paper .text {
  padding: 16px;
  height: 84px;
  padding-left: 34px;
}
.subpage.overview .certification .paper .text p {
  font-size: 14px;
}
.subpage.overview .certification .paper .text .category {
  font-size: 16px;
  font-weight: 600;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@media (max-width: 1024px) {
  .subpage.overview .content-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .subpage.overview .sticky-text {
    position: relative;
    top: auto;
  }
  .subpage.overview .sticky-text h2 {
    font-size: 2.5rem;
    padding-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .subpage.overview .scroll-section {
    padding: 50px 0px;
  }
  .subpage.overview .sticky-text {
    padding: 0px;
  }
  .subpage.overview .hero-content h1 {
    font-size: 2.5rem;
  }
  .subpage.overview .sticky-text h2 {
    font-size: 2rem;
  }
  .subpage.overview .card {
    height: 400px;
  }
  .subpage.overview .card-content {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }
  .subpage.overview .card-decoration {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  .subpage.overview .text {
    display: flex;
    flex-direction: column;
  }
}
.subpage.history .slogan {
  padding-bottom: 16px;
  font-weight: bold;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  padding-top: 32px;
}
.subpage.history .slogan .desktop-slogan {
  font-size: 2.5rem;
  line-height: 130%;
}
.subpage.history .slogan .mobile-slogan {
  display: none;
  font-size: 2.5rem;
  line-height: 130%;
}
.subpage.history .history-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: end;
  padding: 36px;
  padding-top: 120px;
  position: relative;
  min-height: 200vh;
}
.subpage.history .year-block {
  display: flex;
  gap: 5.5rem;
  width: 100%;
  max-width: 1000px;
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.subpage.history .year-block.animate {
  transform: translateY(0);
  opacity: 1;
}
.subpage.history .year-block.animate .list li {
  transform: translateY(0);
  opacity: 1;
}
.subpage.history .year-block .year {
  font-size: 4rem;
  font-weight: bold;
  width: 156px;
  text-align: left;
  color: #2c5aa0;
  position: relative;
  z-index: 2;
}
.subpage.history .year-block ul.list {
  max-width: 820px;
  line-height: 1.8;
  font-size: 1.5rem;
}
.subpage.history .year-block ul.list li {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 8px;
  color: #666;
  font-size: 20px;
  list-style: disc;
}
.subpage.history .year-block ul.list li strong {
  color: #2c5aa0;
  font-weight: 700;
  background: linear-gradient(120deg, transparent 0%, rgba(44, 90, 160, 0.1) 50%, transparent 100%);
  padding: 2px 4px 2px 0;
  border-radius: 4px;
}
.subpage.history .year-block ul.ul-depth2 li {
  list-style: none;
}
.subpage.history {
  /* 감속된 모션 선호 사용자를 위한 설정 */
}
@media (prefers-reduced-motion: reduce) {
  .subpage.history .year-block,
  .subpage.history .year-block .list li {
    transition: opacity 0.3s ease;
    transform: none !important;
  }
}
.subpage.lacation .textbox {
  padding: 36px;
  margin-bottom: 48px;
}
.subpage.lacation .textbox p {
  padding: 8px 0;
  font-size: 24px;
}
.subpage.lacation .textbox span {
  color: #3C7BC0;
  font-weight: 700;
}
.subpage.lacation .map-container {
  width: 100%;
  aspect-ratio: 16/10;
}
.subpage.community .search-section {
  margin-bottom: 48px;
}
.subpage.community .search-section .search-container {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.subpage.community .search-section .search-category {
  height: 56px;
  min-width: 120px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.community .search-section .search-category:hover {
  border-color: #3C7BC0;
}
.subpage.community .search-section .search-category:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.community .search-section .search-input-wrapper {
  position: relative;
  flex: 1;
}
.subpage.community .search-section .search-input-wrapper .search-input {
  width: 100%;
  height: 56px;
  padding: 0 56px 0 20px;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}
.subpage.community .search-section .search-input-wrapper .search-input::-moz-placeholder {
  color: #999;
}
.subpage.community .search-section .search-input-wrapper .search-input::placeholder {
  color: #999;
}
.subpage.community .search-section .search-input-wrapper .search-input:hover {
  border-color: #3C7BC0;
}
.subpage.community .search-section .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.community .search-section .search-input-wrapper .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #3C7BC0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.subpage.community .search-section .search-input-wrapper .search-btn:hover {
  background: #2c5aa0;
  transform: translateY(-50%) scale(1.05);
}
.subpage.community .search-section .search-input-wrapper .search-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.subpage.community .pagination-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.subpage.community .pagination-section .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subpage.community .pagination-section .pagination .pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.subpage.community .pagination-section .pagination .pagination-btn:hover:not(:disabled) {
  border-color: #3C7BC0;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.subpage.community .pagination-section .pagination .pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.subpage.community .pagination-section .pagination .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}
.subpage.community .pagination-section .pagination .pagination-numbers .pagination-number {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #666;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.community .pagination-section .pagination .pagination-numbers .pagination-number:hover {
  background: #f8f9fa;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.subpage.community .pagination-section .pagination .pagination-numbers .pagination-number.active {
  background: #3C7BC0;
  color: #fff;
  border-color: #3C7BC0;
}
.subpage.community .pagination-section .pagination .pagination-numbers .pagination-number.active:hover {
  background: #2c5aa0;
  transform: none;
}
.subpage.community .pagination-section .pagination .pagination-numbers .pagination-dots {
  color: #999;
  padding: 0 8px;
  font-size: 0.9rem;
}
.subpage.community .list-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.subpage.community .list-container ul li {
  cursor: pointer;
  width: 460px;
  height: 320px;
  border: 1px solid #ddd;
  border-radius: 16px;
  overflow: hidden;
  padding: 36px;
  transition: all 0.2s ease-in;
}
.subpage.community .list-container ul li .element {
  display: flex;
  gap: 24px;
  color: #666;
  font-size: 0.9375rem;
  padding-bottom: 16px;
}
.subpage.community .list-container ul li .content .title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 600;
  height: 72px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.subpage.community .list-container ul li .content .text-content {
  transition: opacity 0.2s ease-in-out;
  font-size: 18px;
  color: #555;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.subpage.community .list-container ul li:hover {
  border-color: #3C7BC0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.subpage.community .list-container ul li:hover .text-content {
  opacity: 1;
}
.subpage.community-view {
  margin: 0 auto;
  background: #fff;
}
.subpage.community-view .post-header {
  border-bottom: 2px solid #f0f0f0;
  padding: 0 36px 24px;
  margin-bottom: 40px;
}
.subpage.community-view .post-header .post-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
  line-height: 1.4;
}
.subpage.community-view .post-header .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subpage.community-view .post-header .post-meta .post-info {
  display: flex;
  gap: 24px;
  color: #666;
  font-size: 1.2rem;
}
.subpage.community-view .post-header .post-meta .post-info .author {
  font-weight: 500;
}
.subpage.community-view .post-header .post-meta .group-post-actions {
  display: flex;
  gap: 16px;
}
.subpage.community-view .post-header .post-meta .post-action {
  background: #3C7BC0;
  width: 180px;
  height: 56px;
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.subpage.community-view .post-header .post-meta .post-action.delete {
  background: #fff;
  color: #d41c2e;
  border: 1px solid #d41c2e;
}
.subpage.community-view .post-header .post-meta .post-action.delete:hover {
  color: #d41c2e;
  background: rgba(212, 28, 46, 0.1);
}
.subpage.community-view .post-header .post-meta .post-action:hover {
  background: #2c5aa0;
  color: #fff;
}
.subpage.community-view .post-content {
  padding: 36px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}
.subpage.community-view .post-content p {
  margin-bottom: 12px;
}
.subpage.community-view .post-content p:last-child {
  margin-bottom: 0;
}
.subpage.community-view .post-navigation {
  padding-top: 50px;
}
.subpage.community-view .post-navigation .nav-section {
  display: flex;
  flex-direction: column;
}
.subpage.community-view .post-navigation .nav-section .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.subpage.community-view .post-navigation .nav-section .nav-item:last-child {
  border-bottom: none;
}
.subpage.community-view .post-navigation .nav-section .nav-item .nav-label {
  font-weight: 600;
  color: #666;
  min-width: 60px;
  flex-shrink: 0;
}
.subpage.community-view .post-navigation .nav-section .nav-item .nav-divider {
  color: #ddd;
  flex-shrink: 0;
}
.subpage.community-view .post-navigation .nav-section .nav-item .nav-link {
  color: #333;
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subpage.community-view .post-navigation .nav-section .nav-item .nav-link:hover {
  color: #3C7BC0;
  text-decoration: underline;
}
.subpage.community-view .post-navigation .nav-section .nav-item .nav-content {
  color: #999;
  flex: 1;
}
.subpage.community-view .post-actions {
  border-top: 1px solid #eee;
  margin-top: 40px;
  text-align: center;
  padding-top: 48px;
}
.subpage.community-view .post-actions .btn-list {
  display: inline-block;
  width: 316px;
  height: 56px;
  line-height: 56px;
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.subpage.community-view .post-actions .btn-list:hover {
  background: #EFEFEF;
}
.subpage.community-write .board-write-form {
  max-width: 1600px;
  margin: 0 auto;
}
.subpage.community-write .board-write-form .form-group {
  margin-bottom: 36px;
}
.subpage.community-write .board-write-form .form-group .form-input {
  width: 100%;
  padding: 36px;
  background: #F4F4F6;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}
.subpage.community-write .board-write-form .form-group .form-input::-moz-placeholder {
  color: #999;
}
.subpage.community-write .board-write-form .form-group .form-input::placeholder {
  color: #999;
}
.subpage.community-write .board-write-form .form-group .form-input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #3C7BC0;
}
.subpage.community-write .board-write-form .form-group .form-textarea {
  width: 100%;
  padding: 36px;
  background: #F4F4F6;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  resize: vertical;
  min-height: 400px;
  font-family: inherit;
}
.subpage.community-write .board-write-form .form-group .form-textarea::-moz-placeholder {
  color: #999;
}
.subpage.community-write .board-write-form .form-group .form-textarea::placeholder {
  color: #999;
}
.subpage.community-write .board-write-form .form-group .form-textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #3C7BC0;
}
.subpage.community-write .board-write-form .form-actions {
  text-align: center;
}
.subpage.community-write .board-write-form .form-actions .btn-save {
  width: 316px;
  height: 56px;
  background: #3C7BC0;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.community-write .board-write-form .form-actions .btn-save:hover {
  background: #2c5aa0;
}
.subpage.community-write .board-write-form .form-actions .btn-save:active {
  transform: translateY(0);
}
.subpage.business .title-part {
  font-size: 40px;
  font-weight: 700;
  color: #00387d;
}
.subpage.business .card-container {
  position: relative;
}
.subpage.business .card-container .card {
  position: relative;
  border: 1px solid #acb4e6;
  border-radius: 16px;
  background-color: #fff;
  padding: 24px;
  width: 364px;
  height: 300px;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.subpage.business .card-container .card .card-title {
  height: 64px;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  color: #0088ff;
}
.subpage.business .card-container .card .card-text {
  font-size: 16px;
  font-size: 400;
  line-height: 24px;
  color: #444;
}
.subpage.business .card-container .card-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  filter: blur(8px);
  opacity: 0.35;
  z-index: 0;
  top: 92px;
  left: 177px;
}
.subpage.business .logos {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.subpage.business .logos .logo-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.subpage.business .logos img {
  height: 36px;
}
.subpage.business .part2 {
  padding-bottom: 120px;
}
.subpage.business .part2 .title-part-container {
  padding-bottom: 40px;
}
.subpage.business .part2 .title-part-container p {
  text-align: center;
  line-height: 1.5;
}
.subpage.business .part2 .title-part-container p.title-part {
  padding-bottom: 30px;
}
.subpage.business .part2 .content-part2-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.subpage.business .part2 .content-part2-container > div {
  background: #F8F9FA;
  border-radius: 16px;
}
.subpage.business .part2 .content-part2-container > div:nth-child(2n) {
  background: #F2F6FA;
}
.subpage.business .part2 .case-container {
  display: flex;
  gap: 54px;
  padding: 16px 30px;
}
.subpage.business .part2 .case-container > div {
  flex: 1;
}
.subpage.business .part2 .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.subpage.business .part2 .img-box img {
  width: 100%;
}
.subpage.business .part2 .text-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}
.subpage.business .part2 .text-box .title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
}
.subpage.business .part2 .text-box .element {
  font-size: 0.9375rem;
  color: #666;
}
.subpage.business .part2 .text-box .element ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.subpage.business .part2 .text-box .element li.keyword {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.subpage.business .part2 .text-box ul.chips {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}
.subpage.business .part2 .text-box ul.chips li {
  background: #9BACBF;
  padding: 4px 8px;
  border-radius: 8px;
  color: #fff;
}
.subpage.business .part2 .text-box .text {
  color: #444;
  line-height: 1.5;
}
.subpage.business .part3 .title-part {
  padding-bottom: 48px;
  color: #aaa;
}
.subpage.business.gis .part1 {
  padding-bottom: 170px;
}
.subpage.business.gis .part1 .title-part {
  padding-bottom: 48px;
}
.subpage.business.gis .part1 .content-part1-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.subpage.business.gis .part1 .content-part1-container .y-50 {
  transform: translateY(50px);
}
.subpage.business.gis .part1 .card1 {
  background-image: url(../img/business/gis/part1-card1.png);
  background-repeat: no-repeat;
  background-position: 129px 56px;
  background-size: 304px auto;
}
.subpage.business.gis .part1 .card-shadow1 {
  background-image: url(../img/business/gis/part1-card1.png);
  background-repeat: no-repeat;
  top: 111px;
  left: 177px;
}
.subpage.business.gis .part1 .card2 {
  background-image: url(../img/business/gis/part1-card2.png);
  background-repeat: no-repeat;
  background-position: 157px 74px;
  background-size: 257px auto;
}
.subpage.business.gis .part1 .card-shadow2 {
  background-image: url(../img/business/gis/part1-card2.png);
  background-repeat: no-repeat;
  top: 81px;
  left: 177px;
}
.subpage.business.gis .part1 .card3 {
  background-image: url(../img/business/gis/part1-card3.png);
  background-repeat: no-repeat;
  background-position: 128px 91px;
  background-size: 268px auto;
}
.subpage.business.gis .part1 .card-shadow3 {
  background-image: url(../img/business/gis/part1-card3.png);
  background-repeat: no-repeat;
  top: 92px;
  left: 118px;
}
.subpage.business.gis .part1 .card4 {
  background-image: url(../img/business/gis/part1-card4.png);
  background-repeat: no-repeat;
  background-position: 101px 96px;
  background-size: 268px auto;
}
.subpage.business.gis .part1 .card-shadow4 {
  background-image: url(../img/business/gis/part1-card4.png);
  background-repeat: no-repeat;
  top: 75px;
  left: 86px;
}
.subpage.business.gis .part2 .case-container.case2 {
  flex-direction: row-reverse;
}
.subpage.business.gis .part2 .case-container.case3 .img-box {
  flex: 2;
}
.subpage.business.gis .part2 .case-container.case4 {
  flex-direction: row-reverse;
}
.subpage.business.ai .part1 {
  padding-bottom: 170px;
}
.subpage.business.ai .part1 .title-part {
  padding-bottom: 48px;
  color: #007D60;
}
.subpage.business.ai .part1 .content-part1-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.subpage.business.ai .part1 .content-part1-container .y-50 {
  transform: translateY(50px);
}
.subpage.business.ai .part1 .card {
  border-color: #ACE6D8;
}
.subpage.business.ai .part1 .card-title {
  color: #00CA9B;
}
.subpage.business.ai .part1 .card1 {
  background-image: url(../img/business/aibigdata/part1-card1.png);
  background-repeat: no-repeat;
  background-position: 129px 56px;
  background-size: 304px auto;
}
.subpage.business.ai .part1 .card-shadow1 {
  background-image: url(../img/business/aibigdata/part1-card1.png);
  background-repeat: no-repeat;
  top: 111px;
  left: 177px;
}
.subpage.business.ai .part1 .card2 {
  background-image: url(../img/business/aibigdata/part1-card2.png);
  background-repeat: no-repeat;
  background-position: 157px 74px;
  background-size: 257px auto;
}
.subpage.business.ai .part1 .card-shadow2 {
  background-image: url(../img/business/aibigdata/part1-card2.png);
  background-repeat: no-repeat;
  top: 81px;
  left: 177px;
}
.subpage.business.ai .part1 .card3 {
  background-image: url(../img/business/aibigdata/part1-card3.png);
  background-repeat: no-repeat;
  background-position: 128px 91px;
  background-size: 268px auto;
}
.subpage.business.ai .part1 .card-shadow3 {
  background-image: url(../img/business/aibigdata/part1-card3.png);
  background-repeat: no-repeat;
  top: 92px;
  left: 118px;
}
.subpage.business.ai .part1 .card4 {
  background-image: url(../img/business/aibigdata/part1-card4.png);
  background-repeat: no-repeat;
  background-position: 101px 96px;
  background-size: 268px auto;
}
.subpage.business.ai .part1 .card-shadow4 {
  background-image: url(../img/business/aibigdata/part1-card4.png);
  background-repeat: no-repeat;
  top: 75px;
  left: 86px;
}
.subpage.business.ai .part2 .title-part {
  color: #007D60;
}
.subpage.business.ai .part2 .content-part2-container > div {
  background-color: #FAFAF8;
}
.subpage.business.ai .part2 .content-part2-container > div:nth-child(2n) {
  background: #F2FAF8;
}
.subpage.business.ai .part2 .case-container.case2 {
  flex-direction: row-reverse;
}
.subpage.business.ai .part2 .case-container.case3 .img-box {
  flex: 2;
}
.subpage.business.ai .part2 .case-container.case4 {
  flex-direction: row-reverse;
}
.subpage.business.si .part1 {
  padding-bottom: 170px;
}
.subpage.business.si .part1 .title-part {
  padding-bottom: 48px;
  color: #00067D;
}
.subpage.business.si .part1 .content-part1-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.subpage.business.si .part1 .content-part1-container .y-50 {
  transform: translateY(50px);
}
.subpage.business.si .part1 .card {
  border-color: #6E9DE2;
}
.subpage.business.si .part1 .card-title {
  color: #5673D5;
}
.subpage.business.si .part1 .card1 {
  background-image: url(../img/business/si/part1-card1.png);
  background-repeat: no-repeat;
  background-position: 129px 56px;
  background-size: 304px auto;
}
.subpage.business.si .part1 .card-shadow1 {
  background-image: url(../img/business/si/part1-card1.png);
  background-repeat: no-repeat;
  top: 111px;
  left: 177px;
}
.subpage.business.si .part1 .card2 {
  background-image: url(../img/business/si/part1-card2.png);
  background-repeat: no-repeat;
  background-position: 157px 74px;
  background-size: 257px auto;
}
.subpage.business.si .part1 .card-shadow2 {
  background-image: url(../img/business/si/part1-card2.png);
  background-repeat: no-repeat;
  top: 81px;
  left: 177px;
}
.subpage.business.si .part1 .card3 {
  background-image: url(../img/business/si/part1-card3.png);
  background-repeat: no-repeat;
  background-position: 128px 91px;
  background-size: 268px auto;
}
.subpage.business.si .part1 .card-shadow3 {
  background-image: url(../img/business/si/part1-card3.png);
  background-repeat: no-repeat;
  top: 92px;
  left: 118px;
}
.subpage.business.si .part1 .card4 {
  background-image: url(../img/business/si/part1-card4.png);
  background-repeat: no-repeat;
  background-position: 101px 96px;
  background-size: 268px auto;
}
.subpage.business.si .part1 .card-shadow4 {
  background-image: url(../img/business/si/part1-card4.png);
  background-repeat: no-repeat;
  top: 75px;
  left: 86px;
}
.subpage.business.si .part2 .title-part {
  color: #00067D;
}
.subpage.business.si .part2 .case-container.case1 {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.subpage.business.si .part2 .case-container.case1 .img-box {
  max-width: 840px;
}
.subpage.business.si .part2 .case-container.case1 .text-box {
  padding: 24px 0;
}
.subpage.business.rd .part1 {
  padding-bottom: 170px;
}
.subpage.business.rd .part1 .title-part {
  padding-bottom: 48px;
  color: #6B29BE;
}
.subpage.business.rd .part1 .content-part1-container {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.subpage.business.rd .part1 .content-part1-container .y-50 {
  transform: translateY(50px);
}
.subpage.business.rd .part1 .card {
  border-color: #C6ACE6;
}
.subpage.business.rd .part1 .card-title {
  color: #A26BE4;
}
.subpage.business.rd .part1 .card1 {
  background-image: url(../img/business/rd/part1-card1.png);
  background-repeat: no-repeat;
  background-position: 190px 116px;
  background-size: 186px auto;
}
.subpage.business.rd .part1 .card-shadow1 {
  background-image: url(../img/business/rd/part1-card1.png);
  background-repeat: no-repeat;
  top: 111px;
  left: 177px;
}
.subpage.business.rd .part1 .card2 {
  background-image: url(../img/business/rd/part1-card2.png);
  background-repeat: no-repeat;
  background-position: 157px 74px;
  background-size: 257px auto;
}
.subpage.business.rd .part1 .card-shadow2 {
  background-image: url(../img/business/rd/part1-card2.png);
  background-repeat: no-repeat;
  top: 81px;
  left: 177px;
}
.subpage.business.rd .part1 .card3 {
  background-image: url(../img/business/rd/part1-card3.png);
  background-repeat: no-repeat;
  background-position: 128px 91px;
  background-size: 268px auto;
}
.subpage.business.rd .part1 .card-shadow3 {
  background-image: url(../img/business/rd/part1-card3.png);
  background-repeat: no-repeat;
  top: 92px;
  left: 118px;
}
.subpage.business.rd .part1 .card4 {
  background-image: url(../img/business/rd/part1-card4.png);
  background-repeat: no-repeat;
  background-position: 101px 96px;
  background-size: 268px auto;
}
.subpage.business.rd .part1 .card-shadow4 {
  background-image: url(../img/business/rd/part1-card4.png);
  background-repeat: no-repeat;
  top: 75px;
  left: 86px;
}
.subpage.business.rd .part2 .title-part {
  color: #6B29BE;
}
.subpage.business.rd .part2 .content-part2-container > div {
  background-color: #F9F7FA;
}
.subpage.business.rd .part2 .content-part2-container > div:nth-child(2n) {
  background: #F6F2FA;
}
.subpage.business.rd .part2 .case-container.case2 {
  flex-direction: row-reverse;
}
.subpage.business.rd .part2 .case-container.case3 .img-box {
  flex: 2;
}
.subpage.business.rd .part2 .case-container.case4 {
  flex-direction: row-reverse;
}
.subpage.contactUs {
  padding-top: 80px;
}
.subpage.contactUs .contact-title-section {
  padding: 60px 0 40px;
  text-align: center;
  background: linear-gradient(135deg, #f8fafb 0%, #e8f2ff 100%);
  margin: 0 -36px 60px;
  border-radius: 0 0 32px 32px;
}
.subpage.contactUs .contact-title-section .contact-title-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.subpage.contactUs .contact-title-section .contact-title-content p {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}
.subpage.contactUs .contact-main-section .contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.subpage.contactUs .contact-form-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #3C7BC0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 24px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group.full-width {
  grid-column: 1/-1;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group label .required {
  color: #e74c3c;
  margin-left: 4px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-input,
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-select {
  width: 100%;
  height: 56px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.3s ease;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-input::-moz-placeholder, .subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-select::-moz-placeholder {
  color: #999;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-input::placeholder,
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-select::placeholder {
  color: #999;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-input:hover,
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-select:hover {
  border-color: #3C7BC0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-input:focus,
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-select:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-textarea::-moz-placeholder {
  color: #999;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-textarea::placeholder {
  color: #999;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-textarea:hover {
  border-color: #3C7BC0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-group .form-textarea:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper {
  position: relative;
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper .file-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper .file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 56px;
  border: 2px dashed #ddd;
  border-radius: 12px;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper .file-label:hover {
  border-color: #3C7BC0;
  background: #f0f7ff;
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper .file-label .file-icon {
  font-size: 1.2rem;
}
.subpage.contactUs .contact-form-wrapper .contact-form .file-upload-wrapper .file-label .file-text {
  font-size: 1rem;
  color: #666;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-checkboxes {
  margin-bottom: 32px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-checkboxes .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-checkboxes .checkbox-group .checkbox {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #3C7BC0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-checkboxes .checkbox-group label {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 0;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-checkboxes .checkbox-group label .required {
  color: #e74c3c;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-submit {
  text-align: center;
  margin-top: 40px;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-submit .submit-btn {
  width: 316px;
  height: 56px;
  background: #3C7BC0;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-submit .submit-btn:hover {
  background: #2c5aa0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 123, 192, 0.3);
}
.subpage.contactUs .contact-form-wrapper .contact-form .form-submit .submit-btn:active {
  transform: translateY(0);
}
.subpage.contactUs .contact-info-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #3C7BC0;
}
.subpage.contactUs .contact-info-wrapper .company-info {
  background: #f8fafb;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}
.subpage.contactUs .contact-info-wrapper .company-info .info-item {
  display: flex;
  margin-bottom: 20px;
}
.subpage.contactUs .contact-info-wrapper .company-info .info-item:last-child {
  margin-bottom: 0;
}
.subpage.contactUs .contact-info-wrapper .company-info .info-item .info-label {
  min-width: 80px;
  font-weight: 600;
  color: #3C7BC0;
  font-size: 1rem;
}
.subpage.contactUs .contact-info-wrapper .company-info .info-item .info-value {
  flex: 1;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.subpage.contactUs .contact-info-wrapper .business-hours {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 32px;
}
.subpage.contactUs .contact-info-wrapper .business-hours h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}
.subpage.contactUs .contact-info-wrapper .business-hours .hours-info .hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.subpage.contactUs .contact-info-wrapper .business-hours .hours-info .hours-item .hours-label {
  font-weight: 600;
  color: #666;
}
.subpage.contactUs .contact-info-wrapper .business-hours .hours-info .hours-item .hours-value {
  color: #333;
}
.subpage.contactUs .contact-info-wrapper .business-hours .hours-info .hours-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #999;
}
.subpage.rndlist .search-section {
  margin-bottom: 48px;
  margin-top: 80px;
}
.subpage.rndlist .search-section .search-container {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.subpage.rndlist .search-section .search-category {
  height: 56px;
  min-width: 120px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.rndlist .search-section .search-category:hover {
  border-color: #3C7BC0;
}
.subpage.rndlist .search-section .search-category:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.rndlist .search-section .search-input-wrapper {
  position: relative;
  flex: 1;
}
.subpage.rndlist .search-section .search-input-wrapper .search-input {
  width: 100%;
  height: 56px;
  padding: 0 56px 0 20px;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}
.subpage.rndlist .search-section .search-input-wrapper .search-input::-moz-placeholder {
  color: #999;
}
.subpage.rndlist .search-section .search-input-wrapper .search-input::placeholder {
  color: #999;
}
.subpage.rndlist .search-section .search-input-wrapper .search-input:hover {
  border-color: #3C7BC0;
}
.subpage.rndlist .search-section .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.subpage.rndlist .search-section .search-input-wrapper .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #3C7BC0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.subpage.rndlist .search-section .search-input-wrapper .search-btn:hover {
  background: #2c5aa0;
  transform: translateY(-50%) scale(1.05);
}
.subpage.rndlist .search-section .search-input-wrapper .search-btn:active {
  transform: translateY(-50%) scale(0.95);
}
.subpage.rndlist .pagination-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.subpage.rndlist .pagination-section .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subpage.rndlist .pagination-section .pagination .pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.subpage.rndlist .pagination-section .pagination .pagination-btn:hover:not(:disabled) {
  border-color: #3C7BC0;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.subpage.rndlist .pagination-section .pagination .pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers .pagination-number {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #666;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers .pagination-number:hover {
  background: #f8f9fa;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers .pagination-number.active {
  background: #3C7BC0;
  color: #fff;
  border-color: #3C7BC0;
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers .pagination-number.active:hover {
  background: #2c5aa0;
  transform: none;
}
.subpage.rndlist .pagination-section .pagination .pagination-numbers .pagination-dots {
  color: #999;
  padding: 0 8px;
  font-size: 0.9rem;
}
.subpage.rndlist .list-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.subpage.rndlist .list-container ul .rnd-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  width: 460px;
  height: 320px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  transition: all 0.2s ease-in;
  box-sizing: border-box;
}
.subpage.rndlist .list-container ul .rnd-card * {
  box-sizing: border-box;
}
.subpage.rndlist .list-container ul .rnd-card__link {
  display: block;
  position: relative;
  width: 100%;
  min-height: 320px;
  color: inherit;
  text-decoration: none;
}
.subpage.rndlist .list-container ul .rnd-card__image {
  position: absolute;
  top: 0;
  left: -1px;
  right: -1px;
  height: 300px;
  overflow: hidden;
}
.subpage.rndlist .list-container ul .rnd-card__image .rndlist-image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: transform 0.3s ease;
}
.subpage.rndlist .list-container ul .rnd-card__info {
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: -1px;
  z-index: 1;
  padding: 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
.subpage.rndlist .list-container ul .rnd-card .title {
  width: 100%;
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  line-height: 32px;
  color: #333;
  word-break: keep-all;
}
.subpage.rndlist .list-container ul .rnd-card .text-content {
  max-width: 100%;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-decoration: underline;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subpage.rndlist .list-container ul .rnd-card .text-content:hover {
  color: #3C7BC0;
}
.subpage.rndlist .list-container ul .rnd-card .element {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 0px;
  margin-top: 0;
}
.subpage.rndlist .list-container ul .rnd-card .name,
.subpage.rndlist .list-container ul .rnd-card .date {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: #666;
  white-space: nowrap;
}
.subpage.rndlist .list-container ul .rnd-card:hover {
  border-color: #3C7BC0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.subpage.rndlist .list-container ul .rnd-card:hover .rndlist-image {
  transform: scale(1.03);
}
.subpage.community-view.rndlist {
  margin: 0 auto;
  background: #fff;
}
.subpage.community-view.rndlist .post-header {
  border-bottom: 2px solid #f0f0f0;
  padding: 0 36px 24px;
  margin-bottom: 40px;
}
.subpage.community-view.rndlist .post-header .post-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 32px;
  line-height: 1.4;
}
.subpage.community-view.rndlist .post-header .post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subpage.community-view.rndlist .post-header .post-meta .post-info {
  display: flex;
  gap: 24px;
  color: #666;
  font-size: 1.2rem;
}
.subpage.community-view.rndlist .post-header .post-meta .post-info .author {
  font-weight: 500;
}
.subpage.community-view.rndlist .post-header .post-meta .post-action {
  background: #D6E7F9;
  width: 180px;
  height: 56px;
  color: #333;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease;
}
.subpage.community-view.rndlist .post-header .post-meta .post-action:hover {
  background: #2c5aa0;
  color: #fff;
}
.subpage.community-view.rndlist .post-content {
  padding: 36px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}
.subpage.community-view.rndlist .post-content p {
  margin-bottom: 12px;
}
.subpage.community-view.rndlist .post-content p:last-child {
  margin-bottom: 0;
}
.subpage.community-view.rndlist .post-navigation {
  padding-top: 50px;
}
.subpage.community-view.rndlist .post-navigation .nav-section {
  display: flex;
  flex-direction: column;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item:last-child {
  border-bottom: none;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item .nav-label {
  font-weight: 600;
  color: #666;
  min-width: 60px;
  flex-shrink: 0;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item .nav-divider {
  color: #ddd;
  flex-shrink: 0;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item .nav-link {
  color: #333;
  text-decoration: none;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item .nav-link:hover {
  color: #3C7BC0;
  text-decoration: underline;
}
.subpage.community-view.rndlist .post-navigation .nav-section .nav-item .nav-content {
  color: #999;
  flex: 1;
}
.subpage.community-view.rndlist .post-actions {
  border-top: 1px solid #eee;
  margin-top: 40px;
  text-align: center;
  padding-top: 48px;
}
.subpage.community-view.rndlist .post-actions .btn-list {
  display: inline-block;
  width: 316px;
  height: 56px;
  line-height: 56px;
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.subpage.community-view.rndlist .post-actions .btn-list:hover {
  background: #EFEFEF;
}
.subpage.rndlist-write .board-write-form {
  max-width: 1600px;
  margin: 0 auto;
}
.subpage.rndlist-write .board-write-form .form-group {
  margin-bottom: 36px;
}
.subpage.rndlist-write .board-write-form .form-group .form-input {
  width: 100%;
  padding: 36px;
  background: #F4F4F6;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}
.subpage.rndlist-write .board-write-form .form-group .form-input::-moz-placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-group .form-input::placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-group .form-input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #3C7BC0;
}
.subpage.rndlist-write .board-write-form .form-group .form-textarea {
  width: 100%;
  padding: 36px;
  background: #F4F4F6;
  border: none;
  border-radius: 16px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #333;
  resize: vertical;
  min-height: 400px;
  font-family: inherit;
}
.subpage.rndlist-write .board-write-form .form-group .form-textarea::-moz-placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-group .form-textarea::placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-group .form-textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #3C7BC0;
}
.subpage.rndlist-write .board-write-form .form-meta {
  margin-bottom: 36px;
}
.subpage.rndlist-write .board-write-form .form-meta .form-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.subpage.rndlist-write .board-write-form .form-meta .form-row:last-child {
  margin-bottom: 0;
}
.subpage.rndlist-write .board-write-form .form-meta .form-label {
  flex: 0 0 100px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.subpage.rndlist-write .board-write-form .form-meta .form-control {
  flex: 1;
  min-width: 0;
}
.subpage.rndlist-write .board-write-form .form-meta .form-control-date {
  max-width: 400px;
}
.subpage.rndlist-write .board-write-form .form-meta .form-input-sm {
  width: 100%;
  height: 60px;
  padding: 0 24px;
  background: #F4F4F6;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  font-family: inherit;
}
.subpage.rndlist-write .board-write-form .form-meta .form-input-sm::-moz-placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-meta .form-input-sm::placeholder {
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-meta .form-input-sm:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 2px #3C7BC0;
}
.subpage.rndlist-write .board-write-form .form-meta .form-control-file {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subpage.rndlist-write .board-write-form .form-meta .file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.subpage.rndlist-write .board-write-form .form-meta .file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 92px;
  height: 60px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.rndlist-write .board-write-form .form-meta .file-button:hover {
  border-color: #3C7BC0;
  color: #3C7BC0;
}
.subpage.rndlist-write .board-write-form .form-meta .file-name {
  display: inline-flex;
  align-items: center;
  width: 390px;
  height: 60px;
  padding: 0 24px;
  background: #F4F4F6;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #999;
}
.subpage.rndlist-write .board-write-form .form-actions {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.subpage.rndlist-write .board-write-form .form-actions .btn {
  display: block;
  width: 316px;
  height: 56px;
  line-height: 56px;
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.rndlist-write .board-write-form .form-actions .btn:hover {
  background: #EFEFEF;
}
.subpage.rndlist-write .board-write-form .form-actions .btn:active {
  transform: translateY(0);
}
.subpage.rndlist-write .board-write-form .form-actions .btn-save {
  width: 316px;
  height: 56px;
  background: #3C7BC0;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.subpage.rndlist-write .board-write-form .form-actions .btn-save:hover {
  background: #2c5aa0;
}
.subpage.rndlist-write .board-write-form .form-actions .btn-save:active {
  transform: translateY(0);
}

header .login-area {
  position: absolute;
  right: 4px;
  top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .login-area .login-btn {
  opacity: 0.25;
  width: 26px;
  height: 26px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.25) url("../img/icon_login_gray.svg") no-repeat center center;
  font-size: 0px;
  font-weight: 400;
  color: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}
header .login-area .login-btn:hover {
  opacity: 0.75;
  border-color: #ddd;
  color: #ddd;
}
header .login-area .login-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* 애니메이션 효과 */
/* 1. Fade & Slide Up (Classic Modern) */
.effect-1 .letter {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 0.8s ease forwards;
}

.effect-1 .letter:nth-child(1) {
  animation-delay: 0.1s;
}

.effect-1 .letter:nth-child(2) {
  animation-delay: 0.15s;
}

.effect-1 .letter:nth-child(3) {
  animation-delay: 0.2s;
}

.effect-1 .letter:nth-child(4) {
  animation-delay: 0.25s;
}

.effect-1 .letter:nth-child(5) {
  animation-delay: 0.3s;
}

.effect-1 .letter:nth-child(6) {
  animation-delay: 0.35s;
}

.effect-1 .letter:nth-child(7) {
  animation-delay: 0.4s;
}

.effect-1 .letter:nth-child(8) {
  animation-delay: 0.45s;
}

.effect-1 .letter:nth-child(9) {
  animation-delay: 0.5s;
}

.effect-1 .letter:nth-child(10) {
  animation-delay: 0.55s;
}

.effect-1 .letter:nth-child(11) {
  animation-delay: 0.6s;
}

.effect-1 .letter:nth-child(12) {
  animation-delay: 0.65s;
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 반응형 */
@media (max-width: 1600px) {
  .subpage.business.gis .part1 .content-part1-container .y-50 {
    transform: translateY(0) !important;
  }
  .subpage.business.gis .part1 .card1 {
    background-position-x: 229px;
  }
  .subpage.business.gis .part1 .card-shadow1 {
    left: 277px;
  }
  .subpage.business.gis .part1 .card2 {
    background-position-x: 257px;
  }
  .subpage.business.gis .part1 .card-shadow2 {
    left: 277px;
  }
  .subpage.business.gis .part1 .card3 {
    background-position-x: 228px;
  }
  .subpage.business.gis .part1 .card-shadow3 {
    left: 208px;
  }
  .subpage.business.gis .part1 .card4 {
    background-position-x: 221px;
  }
  .subpage.business.gis .part1 .card-shadow4 {
    left: 206px;
  }
  .subpage.business.ai .part1 .content-part1-container .y-50 {
    transform: translateY(0) !important;
  }
  .subpage.business.ai .part1 .card1 {
    background-position-x: 229px;
  }
  .subpage.business.ai .part1 .card-shadow1 {
    left: 277px;
  }
  .subpage.business.ai .part1 .card2 {
    background-position-x: 257px;
  }
  .subpage.business.ai .part1 .card-shadow2 {
    left: 277px;
  }
  .subpage.business.ai .part1 .card3 {
    background-position-x: 228px;
  }
  .subpage.business.ai .part1 .card-shadow3 {
    left: 208px;
  }
  .subpage.business.ai .part1 .card4 {
    background-position-x: 221px;
  }
  .subpage.business.ai .part1 .card-shadow4 {
    left: 206px;
  }
  .subpage.business.si .part1 .content-part1-container .y-50 {
    transform: translateY(0) !important;
  }
  .subpage.business.si .part1 .card1 {
    background-position-x: 229px;
  }
  .subpage.business.si .part1 .card-shadow1 {
    left: 277px;
  }
  .subpage.business.si .part1 .card2 {
    background-position-x: 257px;
  }
  .subpage.business.si .part1 .card-shadow2 {
    left: 277px;
  }
  .subpage.business.si .part1 .card3 {
    background-position-x: 228px;
  }
  .subpage.business.si .part1 .card-shadow3 {
    left: 208px;
  }
  .subpage.business.si .part1 .card4 {
    background-position-x: 221px;
  }
  .subpage.business.si .part1 .card-shadow4 {
    left: 206px;
  }
  .subpage.business.rd .part1 .content-part1-container .y-50 {
    transform: translateY(0) !important;
  }
  .subpage.business.rd .part1 .card1 {
    background-position-x: 229px;
  }
  .subpage.business.rd .part1 .card-shadow1 {
    left: 277px;
  }
  .subpage.business.rd .part1 .card2 {
    background-position-x: 257px;
  }
  .subpage.business.rd .part1 .card-shadow2 {
    left: 277px;
  }
  .subpage.business.rd .part1 .card3 {
    background-position-x: 228px;
  }
  .subpage.business.rd .part1 .card-shadow3 {
    left: 208px;
  }
  .subpage.business.rd .part1 .card4 {
    background-position-x: 221px;
  }
  .subpage.business.rd .part1 .card-shadow4 {
    left: 206px;
  }
  .subpage.business .content-part1-container {
    justify-content: center;
  }
  .subpage.business .card-container .card {
    width: 486px;
  }
}
@media (max-width: 1440px) {
  .subpage.history .slogan {
    top: 6vh;
  }
  .subpage.business .scroll-expand-container .overlay {
    padding: 24px;
  }
  .subpage.business .scroll-expand-container .overlay p.p01 {
    font-size: 3rem;
  }
  .subpage.business .scroll-expand-container .overlay p.p02 {
    font-size: 1.75rem;
  }
  .subpage.business .scroll-expand-container {
    height: 380px;
  }
}
@media (max-width: 900px) {
  .subpage .subpage-title {
    font-size: 2.5rem;
  }
  .subpage.about .about-greeting .greeting-content {
    flex-direction: column;
    gap: 24px;
  }
  .subpage.about .about-greeting .greeting-content .greeting-image {
    order: -1;
    margin-bottom: 16px;
  }
  .subpage.history .subpage-tab {
    margin-bottom: 56px;
  }
  .subpage.history .slogan {
    padding-top: 24px;
  }
  .subpage.history .slogan .desktop-slogan {
    display: none;
  }
  .subpage.history .slogan .mobile-slogan {
    display: block;
  }
  .subpage.history .history-wrapper {
    align-items: start;
    padding: 36px 20px;
  }
  .subpage.history .year-block {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }
  .subpage.history .year {
    font-size: 3rem;
    width: auto;
  }
  .subpage.history .year-block .list {
    font-size: 1.2rem;
    max-width: 100%;
  }
  .subpage.business .part2 .case-container {
    flex-direction: column;
    gap: 24px;
  }
  .subpage.gis .part2 .case-container.case2,
  .subpage.gis .part2 .case-container.case4 {
    flex-direction: column !important;
  }
  .subpage.ai .part2 .case-container.case2,
  .subpage.ai .part2 .case-container.case4 {
    flex-direction: column !important;
  }
  .subpage.rd .part2 .case-container.case2,
  .subpage.rd .part2 .case-container.case4 {
    flex-direction: column !important;
  }
  .subpage.business .scroll-expand-container .overlay p.p01 {
    font-size: 2rem;
  }
  .subpage.business .scroll-expand-container .overlay p.p02 {
    font-size: 1.5rem;
  }
}
@media (max-width: 786px) {
  .subpage.business .card-container .card {
    width: calc(100vw - 48px);
    max-width: 486px;
  }
  .subpage.business .scroll-expand-container {
    height: 280px;
  }
  .subpage.business .scroll-expand-container .scroll-expand-media video.aibigdata-video {
    transform: translateY(0);
  }
  .subpage .subpage-tab {
    margin-bottom: 48px;
  }
}
.search-section {
  margin-bottom: 48px;
}
.search-section .search-container {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.search-section .search-category {
  height: 56px;
  min-width: 120px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 16px;
  background: #fff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
}
.search-section .search-category:hover {
  border-color: #3C7BC0;
}
.search-section .search-category:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.search-section .search-input-wrapper {
  position: relative;
  flex: 1;
}
.search-section .search-input-wrapper .search-input {
  width: 100%;
  height: 56px;
  padding: 0 56px 0 20px;
  border: 1px solid #ddd;
  border-radius: 16px;
  font-size: 1rem;
  background: #fff;
  transition: all 0.2s ease;
}
.search-section .search-input-wrapper .search-input::-moz-placeholder {
  color: #999;
}
.search-section .search-input-wrapper .search-input::placeholder {
  color: #999;
}
.search-section .search-input-wrapper .search-input:hover {
  border-color: #3C7BC0;
}
.search-section .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #3C7BC0;
  box-shadow: 0 0 0 3px rgba(60, 123, 192, 0.1);
}
.search-section .search-input-wrapper .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: #3C7BC0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.search-section .search-input-wrapper .search-btn:hover {
  background: #2c5aa0;
  transform: translateY(-50%) scale(1.05);
}
.search-section .search-input-wrapper .search-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.pagination-section {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.pagination-section .pagination {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination-section .pagination .pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.pagination-section .pagination .pagination-btn:hover:not(:disabled) {
  border-color: #3C7BC0;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.pagination-section .pagination .pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-section .pagination .pagination-numbers {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 8px;
}
.pagination-section .pagination .pagination-numbers .pagination-number {
  width: 40px;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-section .pagination .pagination-numbers .pagination-number:hover {
  background: #f8f9fa;
  color: #3C7BC0;
  transform: translateY(-1px);
}
.pagination-section .pagination .pagination-numbers .pagination-number.active {
  background: #3C7BC0;
  color: #fff;
  border-color: #3C7BC0;
}
.pagination-section .pagination .pagination-numbers .pagination-number.active:hover {
  background: #2c5aa0;
  transform: none;
}
.pagination-section .pagination .pagination-numbers .pagination-dots {
  color: #999;
  padding: 0 8px;
  font-size: 0.9rem;
  line-height: 1;
}

@media (max-width: 1441px) {
  .subpage.contactUs {
    padding-top: 60px;
  }
}
@media (max-width: 1024px) {
  .subpage.contactUs .contact-main-section .contact-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
@media (max-width: 1200px) {
  .subpage .subpage-hero {
    height: 456px;
  }
  .subpage .subpage-hero-content {
    padding-top: 196px;
    gap: 80px;
  }
}
@media (max-width: 1024px) {
  .subpage .subpage-hero {
    height: 376px;
  }
  .subpage .subpage-hero-content {
    padding-top: 136px;
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .subpage .subpage-hero {
    height: 296px;
  }
  .subpage .subpage-hero-content {
    padding-top: 76px;
    gap: 45px;
  }
}
@media (max-width: 600px) {
  .search-section .search-container {
    flex-direction: column;
    max-width: 100%;
  }
  .search-section .search-category {
    min-width: auto;
  }
  .subpage.community .community-detail {
    padding: 0 12px;
  }
  .subpage.community .community-detail .post-header .post-title {
    font-size: 1.5rem;
  }
  .subpage.community .community-detail .post-header .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .subpage.community .community-detail .post-content {
    font-size: 1rem;
  }
  .subpage.community .community-detail .post-navigation .nav-section .nav-item {
    flex-wrap: wrap;
  }
  .subpage.community .community-detail .post-navigation .nav-section .nav-item .nav-label {
    min-width: auto;
  }
  .pagination-section {
    padding: 0 12px;
  }
  .pagination-section .pagination {
    gap: 4px;
  }
  .pagination-section .pagination .pagination-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  .pagination-section .pagination .pagination-btn svg {
    width: 14px;
    height: 14px;
  }
  .pagination-section .pagination .pagination-numbers {
    gap: 2px;
    margin: 0 4px;
  }
  .pagination-section .pagination .pagination-numbers .pagination-number {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
  }
  .pagination-section .pagination .pagination-numbers .pagination-dots {
    padding: 0 4px;
    font-size: 0.8rem;
  }
  .subpage {
    padding: 24px 24px 40px;
  }
  .subpage .subpage-hero {
    min-height: 96px;
    height: 226px;
  }
  .subpage .subpage-hero-content {
    padding-top: 60px;
    gap: 15px;
  }
  .subpage .subpage-tab {
    margin-top: -50px;
  }
  .subpage .subpage-tab ul li a {
    font-size: 0.9rem;
    height: 70px;
    line-height: 70px;
  }
  .subpage.about .about-greeting .greeting-content .greeting-text h2 {
    font-size: 1.08rem;
  }
  .subpage.about .about-greeting .greeting-content .greeting-image img {
    max-width: 100%;
    min-height: 120px;
  }
  .subpage.contactUs .contact-title-section {
    padding: 40px 0 30px;
    margin: 0 -24px 40px;
  }
  .subpage.contactUs .contact-title-section .contact-title-content h1 {
    font-size: 2rem;
  }
  .subpage.contactUs .contact-main-section .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .subpage.contactUs .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }
  .subpage.contactUs .contact-form-wrapper .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .subpage.contactUs .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 16px;
  }
  .subpage.contactUs .contact-form-wrapper .contact-form .form-submit .submit-btn {
    width: 100%;
    max-width: 316px;
  }
  .subpage.contactUs .contact-info-wrapper h2 {
    font-size: 1.5rem;
  }
  .subpage.contactUs .contact-info-wrapper .company-info,
  .subpage.contactUs .contact-info-wrapper .business-hours {
    padding: 24px;
  }
}
@media (max-width: 360px) {
  .pagination-section {
    padding: 0 8px;
  }
  .pagination-section .pagination {
    gap: 2px;
  }
  .pagination-section .pagination .pagination-btn {
    width: 28px;
    height: 28px;
  }
  .pagination-section .pagination .pagination-btn svg {
    width: 12px;
    height: 12px;
  }
  .pagination-section .pagination .pagination-numbers {
    gap: 1px;
    margin: 0 2px;
  }
  .pagination-section .pagination .pagination-numbers .pagination-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  .pagination-section .pagination .pagination-numbers .pagination-dots {
    padding: 0 2px;
  }
}
/* 플로팅 글쓰기 버튼 */
.floating-write-btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  background-color: #D6E7F9;
  color: #333;
  border-radius: 28px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.floating-write-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  background-color: #3C7BC0;
  color: #fff;
}

.floating-write-btn svg {
  transition: transform 0.3s ease;
}

.floating-write-btn:hover svg {
  transform: rotate(90deg);
}

/* 반응형 */
@media (max-width: 768px) {
  .floating-write-btn {
    right: 20px;
    bottom: 20px;
    height: 60px;
    /* 모바일에서 터치하기 쉽도록 크기 살짝 키움 */
    padding: 0;
    width: 60px;
    border-radius: 50%;
    justify-content: center;
  }
  .floating-write-btn span {
    display: none;
    /* 모바일에서는 아이콘만 표시 */
  }
  .floating-write-btn svg {
    width: 28px;
    height: 28px;
  }
}
/*반응형 보충*/
@media (max-width: 786px) {
  .subpage.business .scroll-expand-container .scroll-expand-media video {
    transform: translateY(0);
  }
  .subpage.business .part1 .title-part {
    font-size: 1.75rem;
  }
  .subpage.business .part2 .title-part-container p.title-part {
    font-size: 1.75rem;
  }
  .subpage.business .part3 .title-part {
    font-size: 1.75rem;
  }
}/*# sourceMappingURL=sub_page.css.map */