/* === [유지] example 섹션 전체에 배경 이미지 적용 === */
section.example {
  background-image: url('/images/SUCCESS_pc_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  padding-top: 0 !important; /* section-label이 absolute이므로 패딩 제거 */
}

/* === 소개 영역 스타일 (간격 조정) === */
section.example .example-intro,
#example .example-intro,
.example .example-intro {
  text-align: center !important;
  padding-top: 0 !important; /* section-label이 absolute이므로 padding 불필요 */
  margin-top: 80px !important; /* section-label과의 간격을 about 섹션과 동일하게 조정 */
}

/* 모바일 전용 강제 스타일 */
@media (max-width: 911px) {
  html body section.example .example-intro,
  html body #example .example-intro,
  html body .example .example-intro,
  section.example .example-intro,
  #example .example-intro,
  .example .example-intro {
    margin-top: 50px !important;
    padding-top: 0 !important;
  }
}

/* 모든 미디어 쿼리에서도 강제 적용 */
@media (min-width: 912px) {
  section.example .example-intro,
  #example .example-intro,
  .example .example-intro {
    padding-top: 0 !important;
    margin-top: 80px !important;
  }
}

@media (max-width: 911px) {
  section.example .example-intro,
  #example .example-intro,
  .example .example-intro {
    padding-top: 0 !important;
    margin-top: 123px !important; /* 모바일에서 section-label과의 간격을 더 넓게 조정 */
  }
}

/* --- [삭제] 강제 흰색 변환 및 그림자 코드 제거됨 --- */


@media (max-width: 911px) {
  section.example {
    padding-top: 0; /* section-label이 absolute이므로 패딩 제거 */
  }
}

@media (min-width: 912px) {
  .example .example-intro {
    margin-bottom: 60px; /* PC용 아래쪽 간격 */
  }
  .example .example-intro .intro-line1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222; /* [복원] 원래 색상 */
  }
  .example .example-intro .intro-line2 {
    font-size: 2.5rem;
    color: #444; /* [복원] 원래 색상 */
    line-height: 1.3;
  }
}

@media (max-width: 911px) {
  .example .example-intro {
    margin-bottom: 40px; /* 모바일용 아래쪽 간격 */
  }
  .example .example-intro .intro-line1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333; /* [복원] 원래 색상 */
  }
  .example .example-intro .intro-line2 {
    font-size: 1.5rem;
    color: #555; /* [복원] 원래 색상 */
    line-height: 1.2;
  }
}


/* === 새로운 롤링 카드 스타일 === */

/* 기본 카드 컨테이너 */
.cards-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.cards-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cards-wrapper::-webkit-scrollbar {
  display: none;
}

.cards-inner {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
}

/* 기본 카드 스타일 */
.card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.card:hover {
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  color: white;
}

.card-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.badge-product,
.badge-amount {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-product {
  background-color: #6a38c8;
  color: white;
}

.badge-amount {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

.card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* === PC 레이아웃 (>= 912px) === */
@media (min-width: 912px) {
  .cards-inner {
    gap: 24px;
    padding: 30px 0;
  }
  
  .row-group {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-shrink: 0;
  }
  
  .card {
    width: 10vw; /* 화면 가로너비의 10% */
    height: 10vw; /* 정사각형 */
    aspect-ratio: 1;
  }
  
  .card-image {
    width: 100%;
    height: 100%;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .card-content {
    padding: 24px;
  }
  
  .card h3 {
    font-size: 1.1rem;
  }
  
  .badge-product,
  .badge-amount {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

/* === PC 레이아웃 (912px ~ 1920px) === */
@media (min-width: 912px) and (max-width: 1920px) {
  .card {
    width: 15vw; /* 화면 가로너비의 15% */
    height: 15vw; /* 정사각형 */
    aspect-ratio: 1;
  }
}

/* === 모바일 레이아웃 (<= 911px) === */
@media (max-width: 911px) {
  .cards-container {
    padding-bottom: 20px !important; /* 하단 여백 추가 */
  }
  
  .cards-inner {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    padding: 16px 0 20px 0 !important; /* 하단 패딩 증가 */
    height: calc(40vw * 2 + 16px + 20px) !important; /* 2줄 높이 + 여백 */
    align-items: flex-start !important;
    width: max-content !important;
  }
  
  .row-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 40vw !important;
    height: calc(40vw * 2 + 16px + 20px) !important; /* 2줄 높이 + 여백 */
    flex-shrink: 0 !important;
  }
  
  .card {
    width: 40vw !important; /* 화면 가로너비의 40% */
    height: 40vw !important; /* 정사각형 */
    aspect-ratio: 1 !important;
    flex-shrink: 0 !important;
  }
  
  .card-image {
    width: 100% !important;
    height: 100% !important;
  }
  
  .card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }
  
  .card-content {
    padding: 16px !important;
    padding-bottom: 20px !important; /* 하단 패딩 증가 */
  }
  
  .card h3 {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin-bottom: 0 !important; /* 하단 마진 제거 */
  }
  
  .badge-product,
  .badge-amount {
    font-size: 0.7rem !important;
    padding: 3px 6px !important;
  }
}

/* === 자세히 보기 버튼 스타일 === */
.view-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 0 20px;
}

.view-more-button {
  background-color: #000000;
  border-radius: 10px;
  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.view-more-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.view-more-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.view-more-button a:hover {
  color: #cccccc;
}

.view-more-button a span {
  position: relative;
  padding-bottom: 2px;
}

.view-more-button a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.view-more-button a:hover span::after {
  transform: scaleX(0.6);
  transform-origin: center;
}

.view-more-button a svg {
  width: 1em;
  height: 1em;
  transition: transform 0.3s ease;
}

.view-more-button a:hover svg {
  transform: translate(3px, -3px);
}

/* === 모바일 자세히 보기 버튼 === */
@media (max-width: 911px) {
  .view-more-wrapper {
    margin-top: 20px;
    padding: 0 16px;
  }
  
  .view-more-button {
    padding: 12px 20px;
  }
  
  .view-more-button a {
    font-size: 0.9rem;
    gap: 6px;
  }
}

/* === 간단한 사각형 카드 스타일 === */
.simple-card {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border-radius: 12px;
  padding: 20px;
  color: white;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.simple-card:hover {
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* === 모바일/PC 전용 텍스트 === */
.mobile-only {
  display: block;
}

.pc-only {
  display: none;
}

/* === 반응형 텍스트 === */
@media (max-width: 911px) {
  .simple-card {
    aspect-ratio: 1;
    padding: 16px;
  }
  
  .simple-card-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .simple-card-content {
    font-size: 0.85rem;
    line-height: 1.3;
  }
  
  .mobile-only {
    display: block;
  }
  
  .pc-only {
    display: none;
  }
}

@media (min-width: 912px) {
  .simple-card {
    aspect-ratio: 1;
    padding: 20px;
  }
  
  .simple-card-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .simple-card-content {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  .mobile-only {
    display: none;
  }
  
  .pc-only {
    display: block;
  }
}

/* === PC 스타일 (>=912px) === */
@media (min-width: 912px) {
  #example {
    --ex-card-w: 280px;
    --ex-card-h: 280px;
    --ex-card-pad: 18px;
    --ex-gap: 18px;
    --ex-view-w: calc(var(--ex-card-w)*5 + var(--ex-gap)*4 + 40px);
  }
  
  .simple-card {
    aspect-ratio: 1;
  }
}

  #example .scroll-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin: 0 auto;
    padding: 10px 0 0;
    width: min(100%, var(--ex-view-w));
    scrollbar-width: none;
  }
  #example .scroll-wrapper::-webkit-scrollbar { display: none; }

  #example .scroll { position: sticky; left:0; top:0; width:100%; height:100%; padding: 10px 20px 44px; }
  #example .scroll-inner { display:flex; gap: var(--ex-gap); width:max-content; align-items:stretch; }

  /* PC 전용 카드 스타일 (삭제됨) */

  #example .scroll-position-wrapper{
    display:flex; align-items:center; gap:8px;
    margin: -6px auto 0;
    width: min(100%, var(--ex-view-w));
  }
  #example .scroll-position{ flex:1; height:2px; background:#eee; }
  #example .scroll-position-inner{ height:2px; background:#cfcfcf; width:20%; }

  #example .scroll-btn{
    appearance:none; border:0; width:28px; height:28px; border-radius:50%;
    background:#fff center/18px no-repeat;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24' 24' fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='9 18 15 12 9 6'%3E%3C/polyline%3E%3C/svg%3E");
    box-shadow:0 2px 8px rgba(0,0,0,.08);
  }
  #example .scroll-btn.prev{ transform: scaleX(-1); }
  #example .scroll-btn[disabled]{ opacity:.25; pointer-events:none; }
  
  .example-view-more-wrapper {
    --box-vertical-offset: 1.25rem;
    top: calc(100% + var(--box-vertical-offset));
    width: calc(var(--ex-card-w) * 0.7);
    padding: 15px 20px;
  }
}


/* === 모바일 스타일 (<= 911px) === */
@media (max-width: 911px) {
  /* 모바일 변수 설정 (삭제됨) */

  #example .scroll-wrapper {
    display: block !important;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    margin: 0 calc(var(--gutter) * -1);
    padding: 8px var(--gutter) 28px var(--gutter);
    scrollbar-width: none;
    scroll-padding-inline: calc((var(--peek) + var(--gap)) / 2);
    scroll-behavior: smooth;
  }
  #example .scroll-wrapper::-webkit-scrollbar { display: none; }
  
  #example .scroll-filler {
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  #example .scroll {
    position: sticky; left: 0; top: 0;
    width: 100%; height: 100%;
    padding: 6px 0;
    transform: translateZ(0);
  }
  
  /* 모바일 스크롤 레이아웃 설정 (삭제됨) */

  /* 모바일 카드 스타일 (삭제됨) */

  #example .scroll-position-wrapper { display: flex !important; align-items: center; gap: 8px; margin: 4px 0 0; padding: 0 var(--gutter); }
  #example .scroll-position { flex: 1; height: 2px; background: #eee; }
  #example .scroll-position-inner { height: 2px; background: #cfcfcf; width: 30%; }

  .example-view-more-wrapper {
    --box-vertical-offset: 1rem;
    top: calc(100% + var(--box-vertical-offset));
    width: calc((100vw - var(--gutter) - var(--gap) - var(--peek)) * 0.5);
    padding: 5px 20px;
  }
}


/* === 카드 이미지 및 콘텐츠 스타일 (삭제됨) === */

/* === 자세히 보기 버튼 관련 스타일 (공통) === */
.example-slider-area {
  position: relative;
}

.example-view-more-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  border-radius: 10px;
  text-align: center;
}

.example-view-more {
  margin-top: 0;
}

.example-view-more a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-size: clamp(0.85rem, 2.8vw, 1.1rem);
}

.example-view-more a span {
  position: relative;
  padding-bottom: 4px;
}

.example-view-more a span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease;
}

.example-view-more a:hover {
  color: #cccccc;
}

.example-view-more a:hover span::after {
  transform: scaleX(0.6);
  transform-origin: center;
}

.example-view-more a svg {
  width: 1em;
  height: 1em;
  transition: transform 0.3s ease;
}

.example-view-more a:hover svg {
  transform: translate(3px, -3px);
}

/* === Comparison ↔ Example 간격: padding으로 처리 === */
section.comparison { margin-bottom: 0 !important; }
/* section#example, .example { margin-top: 0 !important; } */ /* 주석 처리 - example-intro의 margin-top을 방해함 */

/* PC */
@media (min-width: 912px) {
  section#example.example,
  section#example {
    padding-top: clamp(3rem, 6vh, 6rem) !important;
  }
}

/* Mobile */
@media (max-width: 911px) {
  section#example.example,
  section#example {
    padding-top: clamp(2rem, 8vw, 4rem) !important;
  }
}
/* PC에서는 첫 번째 <br> 제거 (두 줄만 남음) */
@media (min-width: 912px) {
  .example .example-intro .intro-line2 br:first-of-type {
    display: none;
  }
}

/* 모바일은 그대로 (세 줄) */
@media (max-width: 911px) {
  .example .example-intro .intro-line2 br {
    display: inline;
  }
}
/* 트랙은 sticky 유지 */
@media (max-width: 911px) {
  #example .scroll { position: sticky; left: 0; top: 0; }
  #example .scroll-wrapper{
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }
}
@media (min-width: 912px) {
  #example .scroll { position: sticky; left: 0; top: 0; }
}
/* === 카드 상단 배지 스타일 (삭제됨) === */

/* === [추가] example-intro > intro-line0 반응형 === */
:root{
  --intro0-size-pc: 3rem;
  --intro0-size-mo: 2rem;
  --intro0-weight: 900;
  --intro0-tracking: .28em;
  --intro0-color: #1e2b5d; /* [복원] 원래 색상 */
}

.example .example-intro .intro-line0{
  text-transform: uppercase;
  display: inline-block;
}

@media (min-width: 912px){
  .example .example-intro .intro-line0{
    font-size: var(--intro0-size-pc);
    font-weight: var(--intro0-weight);
    letter-spacing: var(--intro0-tracking);
    color: var(--intro0-color);
    margin-bottom: 8px;
  }
}

@media (max-width: 911px){
  .example .example-intro .intro-line0{
    font-size: var(--intro0-size-mo);
    font-weight: var(--intro0-weight);
    letter-spacing: var(--intro0-tracking);
    color: var(--intro0-color);
    margin-bottom: 6px;
  }
}
.example .example-intro .intro-line0{
  display: inline-flex;
  align-items: center;
  gap: clamp(0.2rem, 2vw, 0.5rem);
  padding-inline: clamp(0.2rem, 1.5vw, 0.6rem);
}

.example .example-intro .intro-line0::before,
.example .example-intro .intro-line0::after{
  display: inline-block;
  font-size: 1em;
  font-weight: inherit;
  line-height: 1;
  color: currentColor;
}

.example .example-intro .intro-line0::before{ content: "["; }
.example .example-intro .intro-line0::after { content: "]"; }

/* === [추가] Example 섹션 하단 여백 반응형 설정 === */
@media (min-width: 912px) {
  .example {
    padding-bottom: 150px;
  }
}
@media (max-width: 911px) {
  .example {
    padding-bottom: 100px;
  }
  
  /* 모바일 카드 크기 설정 (삭제됨) */
}

/* === 최종 강제 스타일 - 모든 것을 덮어씀 === */
html body section#example.example .container .example-intro,
html body section.example .container .example-intro,
html body #example .container .example-intro,
html body .example .container .example-intro,
section#example .container .example-intro,
section.example .container .example-intro,
#example .container .example-intro,
.example .container .example-intro {
  padding-top: 0 !important;
  margin-top: 20px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 1 !important;
  min-height: 200px !important;
  text-align: center !important;
}

/* CSS 캐시 무시를 위한 타임스탬프: 2024-12-19 강제 업데이트 *// *   C S S   ��/���  �����\t? ? ��3�  ? � ? ����? K=�:   1 0 / 1 7 / 2 0 2 5   1 0 : 2 4 : 0 5   * / 
 
 