.flash-info-block {
  border-radius: 4px;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 25px;
}

.flash-info-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--vdm-button-hover-color);
  color: white;
  padding: 16px;
  cursor: pointer;
  user-select: none;
}



.flash-info-title {
  margin: 0;
  font-size: 18px;
    color: white;
    text-transform: uppercase;
font-family: Orkney Bold;
}

.flash-info-chevron {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 8px;
  transition: transform 0.3s ease;
}

.flash-info-chevron[aria-expanded="true"] .chevron-icon {
  transform: rotate(180deg);
}

.chevron-icon {
  transition: transform 0.3s ease;
  width: 24px;
  height: 24px;
}

.flash-info-content {
  background-color: #f9f9f9;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #333;
  line-height: 1.6;
  padding: 30px 25px;
}

.flash-info-content.open {
  max-height: none;
}

/* Style du contenu texte */
.flash-info-content p {
  margin: 12px 0;
}

.flash-info-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.flash-info-content li {
  margin: 6px 0;
}

.flash-info-content strong {
  font-weight: 600;
  color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
  .flash-info-title {
    font-size: 16px;
  }

  .flash-info-toggle {
    padding: 12px;
  }

  .flash-info-content {
    padding: 12px;
  }

  .flash-info-chevron-text {
    display: none;
  }
}
