/* FORUM TIMELINE NUONAT */

.forum-timeline-wrapper {
  max-width: 700px;
  margin: 0 auto 20px auto;
}

.forum-timeline-stream {
  list-style: none;
  margin: 0;
  padding: 0;
}

.forum-timeline-stream > li {
  margin-bottom: 15px;
}

.forum-timeline-card {
  border: 1px solid #e9ecef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

/* ALIGNEMENT CORRECT */
.forum-timeline-card .post-body {
  padding: 15px;
}

/* TEXTE */
.forum-timeline-action {
  display: block;
  color: #666;
  font-size: 14px;
  margin-top: 2px;
}

/* BLOC PRINCIPAL */
.forum-timeline-content {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  background: #f8fbff;
  border: 1px solid #e6f0ff;
  border-radius: 12px;
  padding: 15px;
}

/* ICONE */
.forum-timeline-badge {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 10px;
  background: #eaf3ff;
  color: #1877f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* CONTENU */
.forum-timeline-main {
  flex: 1;
}

/* LABEL */
.forum-timeline-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1877f2;
  margin-bottom: 5px;
}

/* TITRE */
.forum-timeline-title {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 700;
}

.forum-timeline-title a {
  color: #222;
  text-decoration: none;
}

.forum-timeline-title a:hover {
  color: #1877f2;
}

/* TEXTE */
.forum-timeline-excerpt {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}

/* BOUTON CENTRÉ */
.forum-timeline-button-wrap {
  text-align: center;
}

.forum-timeline-btn {
  display: inline-block;
  min-width: 220px;
  border-radius: 50px;
  font-weight: 600;
  padding: 8px 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .forum-timeline-wrapper {
    max-width: 100%;
  }

  .forum-timeline-content {
    flex-direction: column;
  }

  .forum-timeline-btn {
    width: 100%;
  }
}
.forum-timeline-stats {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.forum-timeline-stats i {
  margin-right: 5px;
  color: #1877f2;
}