﻿@charset "utf-8";

.ideationBanner4 {
  position: relative;
  min-height: 110px;
  margin: 0 0 10px 0;
  border-radius: 12px;
  overflow: hidden;
  background: #1f2937;
  border: 1px solid #4b5563;
  box-sizing: border-box;
  /* 배너 자체의 그림자는 유지 (원하지 않으시면 이 줄을 삭제하세요) */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.ideationBanner4 .topicContainer {
  position: relative;
  width: 100%;
  z-index: 2;
}

.ideationBanner4 dl {
  margin: 0;
  padding: 15px 20px 50px 20px;
  display: none;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ideationBanner4 dl.show {
  display: block;
}

.ideationBanner4 dt {
  font-family: "Pretendard Variable", Pretendard, sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

#topic1 dt { color: #93c5fd; }
#topic2 dt { color: #fde047; }
#topic3 dt { color: #f9a8d4; }

.ideationBanner4 dt::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 26px;
  flex-shrink: 0;
}

#topic1 dt::before { content: "🕹️"; }
#topic2 dt::before { content: "💎"; }
#topic3 dt::before { content: "📢"; }

.ideationBanner4 dt em {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  border-radius: 4px;
  background: #111827;
  color: #9ca3af;
  border: 1px solid #4b5563;
  pointer-events: none;
}

.ideationBanner4 dd {
  margin: 0;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.5;
  word-break: keep-all;
  font-weight: 400;
}

.point1 { color: #d1d5db; }
.point2 { color: #60a5fa; font-weight: 700; }
.point3 { color: #34d399; font-weight: 700; }
.point4 { color: #fb7185; font-weight: 700; }

/* --- [수정 부분] 광택/그림자 제거 --- */
.ideationBanner4 dd a {
  display: inline-flex;
  margin-top: 10px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 6px;
  background: #f95908; /* 지정하신 주황색 */
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s;
  border: 1px solid transparent; /* 테두리 광택 제거를 위해 투명 설정 */
  /* 광택 효과 제거 (box-shadow 삭제) */
  box-shadow: none; 
}

.ideationBanner4 dd a:hover {
  background: #e14e05; /* 호버 시 약간 어둡게 */
  border-color: #e14e05; /* 테두리 색상 통일 */
  /* 호버 시에도 광택 효과 제거 */
  box-shadow: none; 
}
/* ------------------------------------- */

.ideationNavigation {
  position: absolute;
  right: 15px;
  bottom: 10px;
  display: flex;
  gap: 6px;
  z-index: 10;
}

.ideationNavigation li {
  list-style: none;
}

.ideationNavigation li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  height: 28px;
  border-radius: 6px;
  background: #111827;
  color: #9ca3af;
  font-size: 0;
  text-decoration: none;
  border: 1px solid #4b5563;
  transition: 0.2s;
  box-sizing: border-box;
  /* 기본 상태 내비게이션 그림자 제거 */
  box-shadow: none;
}

.ideationNavigation li a::before {
  font-size: 11px;
  font-weight: 600;
}

.ideationNavigation .nav1 a::before { content: "🕹️ 소개"; }
.ideationNavigation .nav2 a::before { content: "💎 포인트"; }
.ideationNavigation .nav3 a::before { content: "📢 전광판"; }

/* --- [수정 부분] 내비게이션 활성화 상태 광택 제거 --- */
.ideationNavigation.topic1 .nav1 a { 
  background: #2563eb; 
  color: #fff; 
  border-color: transparent; /* 테두리 광택 제거 */
  box-shadow: none; /* 그림자 광택 제거 */
}
.ideationNavigation.topic2 .nav2 a { 
  background: #b45309; 
  color: #fff; 
  border-color: transparent; 
  box-shadow: none; 
}
.ideationNavigation.topic3 .nav3 a { 
  background: #be185d; 
  color: #fff; 
  border-color: transparent; 
  box-shadow: none; 
}
/* ------------------------------------------------ */

@media (max-width: 768px) {
  .ideationBanner4 dl { padding: 30px 15px 55px 15px; }
  .ideationNavigation { 
    right: 0; 
    left: 0; 
    justify-content: center; 
    bottom: 10px; 
    width: 100%;
  }
}