/* =========================
    ROADMAP LEGEND
    ========================= */
.roadmap-legend {  font-size: 0.8rem;  color: #6B7280;  margin-bottom: 24px;
}

/* =========================
    ROADMAP TIMELINE
    ========================= */
.roadmap-header {
    text-align: center;
    max-width: 760px;
    margin: 80px auto 40px;
}

.roadmap-header h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.roadmap-header p {
    color: #475569;
    line-height: 1.6;
}

.roadmap-timeline {
    position: relative;
    max-width: 960px;
    margin: 80px auto;
    padding-left: 40px;
}

.roadmap-timeline::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #0F172A;
    opacity: 0.25;
}

.timeline-item {  display: grid;  grid-template-columns: 220px 1fr;  gap: 40px;  margin-bottom: 72px;  position: relative;
}

.timeline-content {  display: block;
}

.timeline-articles {  list-style: none;  padding-left: 0;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 45px;
    width: 10px;
    height: 10px;
    background-color: #16A34A;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.4);
}

.timeline-left h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
}

.timeline-saga {
    font-size: 0.9rem;
    color: #475569;
}

.timeline-right a {
    display: block;
    margin-bottom: 10px;
    color: #0F172A;
    font-weight: 500;
    text-decoration: none;
}

.timeline-right a:hover {
    text-decoration: underline;
}

.timeline-right .draft {
    display: block;
    font-size: 0.85rem;
    color: #64748B;
    font-style: italic;
}

/* ===========================
   ESTADO DOS ARTIGOS
=========================== */

/* Base */
.timeline-link {
  list-style: none;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* ===========================
   PUBLICADO
=========================== */

.timeline-link[data-status="published"] a {
  color: #2563EB; /* azul adapT4 */
  text-decoration: none;
  font-weight: 500;
}

.timeline-link[data-status="published"] a::before {
  content: "●";
  color: #16A34A; /* verde */
  margin-right: 6px;
}

.timeline-link[data-status="published"] a:hover {
  text-decoration: underline;
}

/* ===========================
   RASCUNHO / EM DESENVOLVIMENTO
=========================== */

.timeline-link[data-status="draft"] {
  color: #6B7280; /* cinza */
  font-style: italic;
  cursor: default;
}

.timeline-link[data-status="draft"]::before {
  content: "○";
  color: #9CA3AF;
  margin-right: 6px;
}






.roadmap-footer {
    max-width: 760px;
    margin: 80px auto;
    text-align: center;
    color: #475569;
    line-height: 1.6;
}

@media (min-width: 768px) {
    /* ===========================
    DESKTOP - reativamos o layout lado a lado
    =========================== */

}

@media (max-width: 768px) {
    /* ===========================
    MOBILE FIRST - Base (mobile como padrão) RESPONSIVIDADE
    =========================== */
    .roadmap-timeline {
    padding-left: 24px;
    }

    .timeline-item {
    display: block; /* REMOVE grid */
    margin-bottom: 48px;
    }

    .timeline-dot {
    left: -18px;
    top: 40px;
    }

    .timeline-month {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    }

    .timeline-saga {
    margin-bottom: 12px;
    }

    .timeline-articles {
    margin-top: 8px;
    }

    .timeline-articles li.published a {
    color: #0b57d0;
    font-weight: 500;
    }

    .timeline-articles li.draft {
    color: #888;
    font-style: italic;
    }


}