.post-figure {
  margin: 1.8rem 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 19, 33, 0.52);
}

.post-figure img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.post-figure figcaption {
  padding: 0.85rem 1rem 1rem;
  color: rgba(235, 244, 255, 0.94);
  font-size: 0.9rem;
}

.post-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.post-kpi {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(61, 183, 255, 0.1);
  border: 1px solid rgba(61, 183, 255, 0.24);
}

.post-kpi strong {
  display: block;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.1;
}

.post-kpi span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(235, 244, 255, 0.94);
  font-size: 0.86rem;
}

.flowchart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.9rem;
  margin: 1.6rem 0;
}

.flow-step {
  min-height: 110px;
  padding: 1rem;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(61, 183, 255, 0.16), rgba(0, 192, 163, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.flow-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -0.72rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.flow-step b {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.flow-step span {
  color: rgba(235, 244, 255, 0.95);
  font-size: 0.9rem;
}

.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  overflow: hidden;
  border-radius: 14px;
}

.post-table th,
.post-table td {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem;
  vertical-align: top;
}

.post-table th {
  color: #fff;
  background: rgba(61, 183, 255, 0.14);
}

.post-table td {
  color: rgba(235, 244, 255, 0.96);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 720px) {
  .flow-step:not(:last-child)::after {
    display: none;
  }
}
