/* Pages marketing : vidéos, à propos */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.video-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card__embed {
  aspect-ratio: 9 / 16;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 16px;
}

.video-card__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card__body {
  padding: 14px 16px;
}

.video-card__body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.video-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(34, 197, 94, 0.35);
  padding-left: 20px;
}

.about-timeline li {
  margin-bottom: 18px;
  position: relative;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -27px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.about-timeline strong {
  display: block;
  margin-bottom: 4px;
}

.about-timeline span {
  color: var(--muted);
}
