/* Chocolate Club – Event module */
.cce-wrap {
  --cce-orange: #FF8C00;
  --cce-pink: #FF00CC;
  color: #fff;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 360px;
}
.cce-frame {
  background: linear-gradient(135deg, var(--cce-orange), var(--cce-pink));
  padding: 2px;
  border-radius: 12px;
}
.cce-inner {
  background: #000;
  border-radius: 10px;
  padding: 16px;
}
.cce-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cce-title {
  color: var(--cce-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.cce-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cce-pink);
  box-shadow: 0 0 10px var(--cce-pink);
}
.cce-poster {
  aspect-ratio: 1080 / 1920;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}
.cce-poster-link,
.cce-poster-link:hover,
.cce-poster-link:focus {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.cce-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cce-poster-link:hover img {
  transform: scale(1.03);
}
.cce-cta {
  display: block;
  margin-top: 14px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 13px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--cce-orange), var(--cce-pink));
  transition: transform 0.2s ease;
}
.cce-cta:hover,
.cce-cta:focus {
  transform: scale(1.01);
  color: #000;
}