/* ── POST WRAP ── */
.post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.post-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1f1f1f;
}

.post-breadcrumb {
  font-size: 0.8rem;
  color: #555555;
  margin-bottom: 1rem;
}

.post-breadcrumb a {
  color: #1D9E75;
  text-decoration: none;
}

.post-category-tag {
  display: inline-block;
  background: #0d1f1a;
  color: #1D9E75;
  border: 1px solid #1D9E75;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.post-info {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: #555555;
  flex-wrap: wrap;
}

.post-intro {
  font-size: 1.05rem;
  color: #aaaaaa;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding-left: 1rem;
  border-left: 3px solid #1D9E75;
}

.post-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 2rem 0 1rem;
}

.post-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #aaaaaa;
  margin-bottom: 1rem;
}

.post-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-body ul li {
  font-size: 0.95rem;
  color: #aaaaaa;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* ── FEE TABLE ── */
.fee-table {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
}

.fee-row:last-child { border-bottom: none; }

.fee-row.header {
  background: #1a1a1a;
  font-weight: 600;
  color: #ffffff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fee-row span:first-child { color: #aaaaaa; }
.fee-amount { font-weight: 600; color: #1D9E75; }
.fee-amount.red { color: #E24B4A; }

/* ── EXAMPLE BOX ── */
.example-box {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.example-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid #1a1a1a;
  font-size: 0.9rem;
  color: #aaaaaa;
}

.example-row:last-child { border-bottom: none; }
.example-row.deduct span:last-child { color: #E24B4A; font-weight: 600; }
.example-row.total { background: #0d1f1a; font-weight: 700; }
.example-row.total span:first-child { color: #ffffff; }
.example-row.total span:last-child { color: #1D9E75; font-size: 1.1rem; }

/* ── POST CTA ── */
.post-cta {
  background: #0d1f1a;
  border: 1px solid #1D9E75;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2.5rem 0;
}

.post-cta h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.post-cta p {
  font-size: 0.9rem;
  color: #888888;
  margin-bottom: 1.5rem;
}

.post-cta-btn {
  display: inline-block;
  background: #1D9E75;
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.post-cta-btn:hover { background: #0F6E56; }

/* ── RELATED POSTS ── */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #1f1f1f;
}

.related-posts h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.related-card {
  background: #111111;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  padding: 1.2rem;
  text-decoration: none;
  transition: border-color 0.2s;
}

.related-card:hover { border-color: #1D9E75; }

.related-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: #1D9E75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.related-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .post-header h1 { font-size: 1.5rem; }
  .related-grid { grid-template-columns: 1fr; }
  .post-wrap { padding: 1.5rem 1rem 4rem; }
}