.feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px;
}

/* .post-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #002064;
} */

.post-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* ===== TAGS ===== */
.post-tags {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.post-tags span {
  background: #eef3f8;
  color: #0a66c2;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
}

/* ===== FEED HEADER ===== */
.feed-header {
  text-align: end;
  position: sticky;
  top: 0;
  background: #f3f2ef;
  padding: 8px 0 16px;
  margin-bottom: 8px;
  z-index: 2;
}

.feed-header h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1d1d1f;
}

.feed-header span {
  font-size: 13px;
  color: #6b7280;
}


.post-context {
  font-size: 14px;
  color: #374151;
  margin-bottom: 6px;
}

.post-details {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 10px;
}

.post-impact {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}


.post-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* .post-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
} */

/* título mais forte */
.post-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #02143a;
  margin-bottom: 8px;
}

/* contexto = destaque leve */
.post-context {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 6px;
}

/* detalhes = leitura confortável */
.post-details {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 12px;
}

/* impacto = assinatura profissional */
.post-impact {
  display: block;
  margin-top: 12px;
  padding-left: 10px;
  border-left: 3px solid #e5e7eb;
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}


.experience-overview {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
}

/* ITEM */
.experience-item+.experience-item {
  margin-top: 12px;
}

/* HEADER */
.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #02143a;
}

.company-period {
  font-size: 12px;
  color: #6b7280;
}

/* BOTÃO */
.experience-toggle {
  background: none;
  border: none;
  font-size: 12px;
  color: #02143a;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.experience-toggle:hover {
  text-decoration: underline;
}

/* DETALHES (COLAPSADO) */
.experience-details {
  display: none;
  margin-top: 12px;
}

/* ESTADO ABERTO */
.experience-item.expanded .experience-details {
  display: block;
}

/* CONTEÚDO */
.experience-context {
  font-size: 13px;
  color: #374151;
  margin-bottom: 8px;
}

.experience-list {
  padding-left: 16px;
  margin-bottom: 8px;
}

.experience-list li {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 4px;
}

.experience-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.experience-stack span {
  font-size: 11px;
  background: #eef3f8;
  color: #0a66c2;
  padding: 3px 6px;
  border-radius: 6px;
}

.experience-routine {
  font-size: 12px;
  color: #6b7280;
  font-style: italic;
}

.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #02143a;
  margin: 8px 0 -9px;
}