/* B2C 메인 — 선거·홍보 히어로 롤링 (선거법 표기 포함) */
.b2cElectionHero {
  position: relative;
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
  background: #0f172a;
}

.b2cElectionHero__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: min(52vw, 280px);
  min-height: 168px;
}

.b2cElectionHero__track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.b2cElectionHero__slide {
  flex: 0 0 100%;
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  height: 100%;
  overflow: hidden;
}

.b2cElectionHero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.02);
}

.b2cElectionHero__slide--brand .b2cElectionHero__bg {
  background: linear-gradient(125deg, #0284c7, #0ea5e9 50%, #38bdf8);
}
.b2cElectionHero__slide--brand .b2cElectionHero__bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.b2cElectionHero__slide--neutral .b2cElectionHero__bg {
  background: linear-gradient(135deg, #0f172a 0%, #134e4a 45%, #ea580c 120%);
}

.b2cElectionHero__slide--cho-kuk .b2cElectionHero__bg {
  background: linear-gradient(160deg, #042f2e 0%, #0f766e 40%, #115e59 100%);
}
.b2cElectionHero__slide--gaehyuk .b2cElectionHero__bg {
  background: linear-gradient(160deg, #431407 0%, #ea580c 35%, #c2410c 100%);
}

.b2cElectionHero__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  max-width: 200px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 28%);
}

.b2cElectionHero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.b2cElectionHero__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 14px 16px 16px;
  max-width: 72%;
}

.b2cElectionHero__kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 6px;
}

.b2cElectionHero__title {
  font-size: clamp(1.05rem, 4.8vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 4px;
}

.b2cElectionHero__sub {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.92;
  line-height: 1.4;
  margin: 0;
}

.b2cElectionHero__cta {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.b2cElectionHero__dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 6px;
}

.b2cElectionHero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.35);
}

.b2cElectionHero__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

.b2cElectionHero__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(15, 23, 42, 0.92);
}

.b2cElectionHero__legal span {
  flex: 1 1 auto;
}
.b2cElectionHero__legal span:last-child {
  text-align: right;
  color: #fbbf24;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .b2cElectionHero__track {
    transition: none;
  }
}
