/* fortax.in/blog — only what a post adds to page.css: meta line, hero video, the "why" cards, the tier table. */

.post-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.post-meta .tag-new { font: 700 11px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--seal);
  background: color-mix(in srgb, var(--seal) 12%, transparent); padding: 6px 10px; border-radius: 999px; }

.post-hero .wrap { max-width: 1040px; }
.hero-video { display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius-lg); background: var(--surface-2);
  border: 1px solid var(--line); box-shadow: var(--shadow-2); object-fit: cover; }

.prose .dropcap { font-size: 18px; color: var(--ink); line-height: 1.65; }
.prose blockquote { font-size: 17px; font-weight: 500; color: var(--ink); }
.prose .illustrative { font-size: 14px; padding: 12px 16px; border: 1px dashed var(--line-2); border-radius: 14px; background: var(--surface-2); }

.why-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
@media (max-width: 860px) { .why-list { grid-template-columns: 1fr; } }
.why { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.why h3 { font: 600 17px/1.3 var(--font); margin: 0 0 8px; }
.why p { margin: 0; color: var(--ink-2); line-height: 1.65; font-size: 15px; }
.why .because { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--ink); }
.why .because span { font: 500 11.5px/1 var(--mono); color: var(--seal); text-transform: uppercase; letter-spacing: .14em; margin-right: 10px; }

.prose table.tiers th[scope="row"] { text-transform: none; letter-spacing: 0; font-size: 13.5px; color: var(--muted); width: 22%; }
.prose table.tiers td.sg { background: color-mix(in srgb, var(--seal) 7%, transparent); color: var(--ink); }
.prose table.tiers thead th:last-child { color: var(--seal); }

.blog-list { display: grid; gap: 18px; margin-top: 10px; }
.blog-card { display: grid; grid-template-columns: 1.618fr 1fr; gap: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-1); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.blog-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.blog-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9; display: block; }
.blog-card .txt { padding: 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.blog-card h2 { font: 700 22px/1.25 var(--font); letter-spacing: -.02em; margin: 0; }
.blog-card p { margin: 0; color: var(--ink-2); line-height: 1.6; font-size: 15px; }
.blog-card .more { color: var(--royal); font-weight: 600; font-size: 14px; margin-top: auto; }

@media (max-width: 760px) {
  .blog-card { grid-template-columns: 1fr; }
  .prose table.tiers { display: block; overflow-x: auto; white-space: normal; }
  .prose table.tiers th, .prose table.tiers td { min-width: 150px; }
}
