/* SMARTGen City */
/* Úvodní zvýrazněná citace */
.smart-quote {
  position: relative;
  padding: 1.5em 2em;
  margin: 2em 0;
  font-style: italic;
  background: #f3efe5; /* světle béžová */
  border-left: 6px solid #a2becd; /* modro-šedý akcent */
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.smart-quote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3em;
  color: #a2becd;
  opacity: 0.4;
  font-family: Georgia, serif;
}

/* Speciální styly pro p v rámci NextGen */
p.nextgen {
  line-height: 1.6;
  margin-bottom: 1em;
  color: #333;
  font-size: 1.05em;
}

/* Zvýrazněný termín */
p.smart-date {
  background: #eef4f7;
  border-left: 4px solid #3f51b5;
  border-radius: 4px;
  padding: 1em;
  margin: 2em 0;
}

/* Zvýrazněné vyhlášení výsledků */
p.smart-announce {
  background: linear-gradient(90deg, #a2becd 0%, #eef4f7 100%);
  border-radius: 4px;
  font-weight: bold;
  padding: 1em;
  margin: 2em 0;
}

.nextgen-highlight {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #3f51b5, #673ab7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  margin: 2em 0;

  /* animace */
  opacity: 0;
  transform: translateX(-100px);
  animation: slideIn 1.2s ease-out forwards;
}

/* světelná žárovka před textem */
.nextgen-highlight::before {
  content: "💡";
  font-size: 1.9em;
  animation: glowBulb 2s infinite alternate;
}

/* efekt příjezdu zleva */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* jemné svícení žárovky */
@keyframes glowBulb {
  from { text-shadow: 0 0 4px #ffd54f, 0 0 8px #ffeb3b; }
  to   { text-shadow: 0 0 10px #ffc107, 0 0 20px #ffeb3b; }
}



/* Konec SMARTGen City */