/* ============================
   SECTION BASE
   ============================ */
.can2025-section {
  padding: 20px 12px;
  padding-bottom: 30px;
  font-family: system-ui, sans-serif;
  margin: 8px;
}

.can2025-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(115deg, #0f8f4b 0%, #c11c24 55%, #f2b53c 100%);
  border-radius: 26px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;

  color: #ffffff !important; /* forced white text */
}

/* ============================
   TEXT BLOCK
   ============================ */
.can2025-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #ffffff !important;
}

.can2025-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.22);
  font-size: 13px;
  color: #fff;
}

.can2025-dot {
  width: 7px;
  height: 7px;
  background: #ffd86b;
  border-radius: 999px;
  margin-right: 6px;
}

.can2025-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff !important;
}

.can2025-subtitle {
  font-size: 14px;
  max-width: 420px;
  line-height: 1.4;
  color: #ffffff;
}

.can2025-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.can2025-badge {
  background: rgba(0,0,0,0.22);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
}

.can2025-badge i {
  color: #ffd86b;
}

/* ============================
   CTA BUTTON (reduced size)
   ============================ */
.can2025-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffd86b, #ffcf4a);
  color: #222;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.25s ease;
}

.can2025-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ffe083, #ffd246);
}

/* ============================
   SPINNER AREA (reduced height)
   ============================ */
.can2025-spinner-wrapper {
  width: 100%;
  overflow: hidden;
}

.can2025-spinner {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: can2025Loop 12s linear infinite;
}

.can2025-slide {
  width: 110px;          /* smaller cards */
  height: 170px;         /* reduced height */
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(0,0,0,0.25);
}

.can2025-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Infinite loop animation */
@keyframes can2025Loop {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * (110px * 3 + 14px * 3))); }
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 600px) {
  .can2025-slide {
    width: 90px;
    height: 140px;
  }
}