:root {
  --bg-1: #1a1a1a;
  --bg-2: #333333;
  --accent-1: #b28828;
  --accent-2: #d4aa4a;
  --muted: #c0c0c0;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial; background: transparent; }

.cpt-banner-full {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-start;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  color: #f8fafc;
  z-index: 0;
}

.cpt-banner-full::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(270deg, rgba(178,136,40,0.05), rgba(212,170,74,0.05), rgba(178,136,40,0.05));
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cpt-banner-full::after {
  content: '';
  position: absolute;
  top: 0; left: -50%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shineMerge 3s ease 1 forwards;
  pointer-events: none;
  z-index: 2;
}

@keyframes shineMerge {
  0% { left: -50%; opacity: 1; width: 50%; }
  50% { left: 50%; opacity: 1; width: 50%; }
  100% { left: 0; width: 100%; opacity: 0.1; }
}

.cpt-wrap-full {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 80px;
  gap: 40px;
  height: 100%;
  position: relative;
  z-index: 3;
}

.cpt-left { flex: 1; }

.cpt-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 400px; /* Container für das größere Artikelbild */
  text-align: center;
}

/* Überschrift mit Glow-Effekt */
.cpt-title {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: var(--accent-1);
  letter-spacing: 0.2px;
  text-align: center;
  position: relative;
  animation: glowTitle 2.5s ease-in-out infinite alternate;
  transition: color 0.3s ease;
}

@keyframes glowTitle {
  0% { color: var(--accent-1); text-shadow: 0 0 5px rgba(178,136,40,0.5); }
  50% { color: var(--accent-2); text-shadow: 0 0 15px rgba(212,170,74,0.8); }
  100% { color: var(--accent-1); text-shadow: 0 0 5px rgba(178,136,40,0.5); }
}

.cpt-sub {
  margin: 0 0 20px;
  color: #e2e8f0;
  font-size: 1.1rem;
}

.cpt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.cpt-feature {
  background: rgba(178,136,40,0.08);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #ffffff; /* Text jetzt weiß */
  border: 1px solid rgba(178,136,40,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cpt-feature:hover {
  transform: translateY(-2px);
  background: rgba(178,136,40,0.2);
  box-shadow: 0 4px 12px rgba(178,136,40,0.3);
  cursor: pointer;
}

.cpt-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 100%;
}

.cpt-cta {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: white;
  padding: 18px 36px;
  font-size: 1.2rem;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(178,136,40,0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.cpt-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(178,136,40,0.48);
  color: white;
  cursor: pointer;
}

.cpt-article {
  max-width: 100%; /* füllt Container aus */
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 720px) {
  .cpt-wrap-full {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
    gap: 20px;
    height: auto;
  }
  .cpt-right { width: 100%; flex-direction: column; }
  .cpt-article { max-width: 90%; } /* mobile responsive */
  .cpt-cta { padding: 18px 28px; font-size: 1.05rem; }
}
