@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

* {
  word-break: keep-all;
  box-sizing: border-box;
}

body {
  font-family: "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

/* 초기화 */
html {
  overflow-y: auto !important;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

/*head.sub.php로 셋팅하는 값 = full-h, full-w*/
:root {
  --primary: #2ec5eb;
  --seconday: #666;
  --ca-color: #333;
  /* --full-h: calc(var(--vh, 1vh) * 100);
  --full-w: calc(var(--vw, 1vw) * 100); */
  --header-h: 60px;
  --lnb-h: 48px;
}

.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* 스크롤 시 또는 비투명 페이지에서 적용. 투명 사용 페이지는 head.php 상단에서 설정 */
#header.active {
  background-color: #fff !important;
  color: #000 !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#header.active #logo {
  background-image: url("../img/logo.png") !important;
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */

/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: none;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  outline: 1px solid var(--primary);
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-animation:hover {
  color: #fff;
  outline: 0;
}

.btn-animation:hover::before {
  width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;
}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}

.lnb .lnb_map > li {
  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}

.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}

.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}

/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
  position: static !important;
  top: 0px !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  display: none !important;
}

body > .skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
  width: 100px;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element select {
  background: transparent;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 0px;
  padding: 8px 12px;
}

.notranslate {
  translate: no !important;
}

/* 메인 스크롤 애니메이션 (index 섹션, 참조: kangsim / stndenergy) - 강한 인터랙션 */
#main-page .scroll-anchor {
  opacity: 0;
  transform: translateY(56px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
#main-page .scroll-anchor.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}
#main-page .scroll-anchor[data-animate="fade-up"].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 메인 비주얼 좌하단 레이어: path 간격이 오른쪽으로 늘었다가 왼쪽으로 줄어드는 용수철 */
.main-visual-layer-wrap {
  transform-origin: left bottom;
}
/* SVG 통째로 한 덩어리만 움직임 (g 2개가 같이 움직여서 1개처럼 보임) */
/* 메인 비주얼 좌하단 레이어: 용수철이 늘어났다 줄어드는 효과 */
.main-visual-spring-layer {
  transform-origin: left bottom;
  /* (속도 조절) 아래 시간을 변경하세요. (예: 4s -> 6s 느리게) */
  animation: main-visual-spring-stretch 4s ease-in-out infinite alternate;
}
@keyframes main-visual-spring-stretch {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1.15);
  }
}
/* 메인 비주얼 우상단 레이어: 구불거리는 형태에 맞춰 용수철처럼 늘어났다 줄어드는 효과 */
.main-visual-spring-layer-top {
  transform-origin: right top;
}

.main-visual-spring-layer-top path {
  stroke: #ffffff;
  stroke-opacity: 0.15;
  /* (속도 조절) 아래 시간을 변경하세요. 좌하단 용수철(main-visual-spring-layer)과 동일하게 맞추는 것이 좋습니다. */
  animation: main-visual-spring-wave-path 4s ease-in-out infinite alternate;
}

/* 각 패스에 시간차를 주어 순차적으로 늘어나는 느낌 부여 */
.main-visual-spring-layer-top path:nth-child(5n + 1) { animation-delay: 0s; }
.main-visual-spring-layer-top path:nth-child(5n + 2) { animation-delay: 0.1s; }
.main-visual-spring-layer-top path:nth-child(5n + 3) { animation-delay: 0.2s; }
.main-visual-spring-layer-top path:nth-child(5n + 4) { animation-delay: 0.3s; }
.main-visual-spring-layer-top path:nth-child(5n + 5) { animation-delay: 0.4s; }

@keyframes main-visual-spring-wave-path {
  0% {
    transform: translateX(0) scaleX(1);
    opacity: 0.6;
  }
  100% {
    transform: translateX(-30px) scaleX(1.1);
    opacity: 1;
  }
}

/* 메인 비주얼: 스크롤 시 텍스트·이미지 등장 (STANDARD ENERGY 첫 섹션 스타일) */
#main-visual .main-visual-title {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
#main-visual .main-visual-desc {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  will-change: opacity, transform;
}
#main-visual .main-visual-scroll-hint {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s;
  will-change: opacity, transform;
}
#main-visual .main-visual-product-img {
  opacity: 0;
  transform: translateX(48px);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
  will-change: opacity, transform;
}

#main-visual.is-inview .main-visual-title,
#main-visual.is-inview .main-visual-desc,
#main-visual.is-inview .main-visual-scroll-hint {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
#main-visual.is-inview .main-visual-product-img {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* 스크롤 다운 안내: 아이콘이 위↕아래로 움직여 스크롤 유도 */
.main-visual-scroll-icon-wrap {
  display: inline-flex;
}
#main-visual .main-visual-scroll-icon {
  display: block;
  animation: main-visual-scroll-bounce 1.8s ease-in-out infinite;
}
@keyframes main-visual-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(10px);
  }
  55% {
    transform: translateY(10px);
  }
}

/* CTA 하단: 이미지·텍스트 좌우에서 미닫이문처럼 만나는 AOS */
.cta-slide-doors.scroll-anchor {
  opacity: 1;
  transform: none;
}
.cta-slide-doors .cta-slide-from-left {
  opacity: 0;
  transform: translateX(-80px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.cta-slide-doors .cta-slide-from-right {
  opacity: 0;
  transform: translateX(80px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
  will-change: opacity, transform;
}
.cta-slide-doors.is-visible .cta-slide-from-left,
.cta-slide-doors.is-visible .cta-slide-from-right {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* 미션 섹션: 좌우 미닫이문 AOS, 오른쪽 이미지는 오른쪽에서 펼쳐지는 느낌 */
/* 미션 섹션: GSAP ScrollTrigger로 제어 (초기 상태만 CSS) */
.mission-slide-doors .mission-slide-from-left {
  opacity: 0;
  transform: translateX(-60px);
}
.mission-slide-doors .mission-slide-from-right {
  transform-origin: right center;
  transform: scaleX(0);
}

/* CTA 카드: 호버 시 화살표가 오른쪽을 향하며 이동하는 애니메이션 */
.cta-card-arrow {
  display: inline-block;
  transform: rotate(0deg) translateX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-card:hover .cta-card-arrow,
.cta-card:focus .cta-card-arrow {
  transform: rotate(45deg);
}

/* ABOUT 섹션 인터랙션 */
.about-section1 .about-sec1-left,
.about-section1 .about-sec1-right {
  opacity: 0;
  transform: translateX(0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.about-section1 .about-sec1-left {
  transform: translateX(-40px);
}
.about-section1 .about-sec1-right {
  transform: translateX(40px);
}
.about-section1.is-visible .about-sec1-left,
.about-section1.is-visible .about-sec1-right {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

.about-section2 .about-section2-bg {
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.about-section2 .about-sec2-text,
.about-section2 .about-sec2-sign {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.about-section2.is-visible .about-section2-bg {
  transform: scaleX(1);
  will-change: auto;
}
.about-section2.is-visible .about-sec2-text,
.about-section2.is-visible .about-sec2-sign {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.about-history {
  position: relative;
}
.about-history-line {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #eaeaea;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.about-history-dot-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-history-dot {
  position: relative;
  z-index: 1;
  transform: scale(0);
  opacity: 0;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-history.is-visible .about-history-dot {
  transform: scale(1);
  opacity: 1;
}

/* 연도/내용 좌우 페이드인 */
.about-history-row .about-history-year {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-history-row .about-history-desc {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-history-row.is-visible-row .about-history-year,
.about-history-row.is-visible-row .about-history-desc {
  opacity: 1;
  transform: translateX(0);
}

/* 배너 배경: 10초에 걸쳐 자연스럽게 확대 */
.banner-bg {
  will-change: transform;
  transform-origin: center center;
  animation: banner-zoom 10s ease-in-out forwards;
}
@keyframes banner-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}

/* 게시판 등 공통 페이징 커스터마이징 */
.pg_wrap {
  margin-top: 30px;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  float: none !important;
  clear: both;
}

.pg {
  display: inline-flex;
  flex-wrap: wrap; /* 모바일에서 넘칠 경우 줄바꿈 허용 */
  justify-content: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .pg {
    gap: 8px; /* 모바일 간격 축소 */
  }
}

.pg_page,
.pg_start,
.pg_prev,
.pg_next,
.pg_end,
.pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all 0.2s;
  background: #fcfcfc;
  color: #212121;
  position: relative;
  overflow: hidden;
}

/* 처음/끝 아이콘 전역 적용 */
.pg_start, .pg_end, .pg_prev, .pg_next {
  color: transparent !important; /* 글자 숨기기 */
}

.pg_start::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url('../img/icons/icon_first_pagination.svg') no-repeat center/contain;
}

.pg_end::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url('../img/icons/icon_end_pagination.svg') no-repeat center/contain;
}

/* 이전/다음 리믹스 아이콘 적용 */
.pg_prev::before {
  content: "\ea64";
  font-family: 'remixicon';
  font-size: 20px;
  color: #212121;
  position: absolute;
}

.pg_next::before {
  content: "\ea6e";
  font-family: 'remixicon';
  font-size: 20px;
  color: #212121;
  position: absolute;
}

@media (max-width: 640px) {
  .pg_page,
  .pg_start,
  .pg_prev,
  .pg_next,
  .pg_end,
  .pg_current {
    width: 34px; /* 모바일 버튼 크기 축소 */
    height: 34px;
    font-size: 1rem;
  }
  .pg_prev::before, .pg_next::before {
    font-size: 18px;
  }
}

.pg_page,
.pg_start,
.pg_prev,
.pg_next,
.pg_end {
  color: #212121; /* 비활성화 텍스트 #212121 */
  border: 1px solid #f0f0f0;
}

.pg_page:hover {
  background: #f0f0f0;
  color: #00b2bc;
}

.pg_current {
  background: #00b2bc; /* 활성 배경 */
  color: #fff;
  border: 1px solid #00b2bc;
}

/* CONTACT - 카카오맵 퍼가기 하단 주소/전화 영역 숨김 (주소/전화 전체 블럭 제거) */
.root_daum_roughmap .section_address_lst,
.root_daum_roughmap .roughmap_maker_address {
  display: none !important;
}

/* CONTACT - 카카오맵 width 100% 강제 */
.root_daum_roughmap,
.root_daum_roughmap .wrap_map,
.root_daum_roughmap .wrap_controllers,
.root_daum_roughmap .map {
  width: 100% !important;
}

/* SOLUTIONS - CCU 제품 지그재그 정렬 */
@media (min-width: 1024px) {
  .solutions-ccu-products .solutions-ccu-card:nth-child(odd) {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .solutions-ccu-products .solutions-ccu-card:nth-child(even) {
    margin-top: 50px;
  }
}

/* 공통: 2줄 말줄임 처리 (Tailwind line-clamp-2 대체) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
