/* AeroRide — blog */
.blog-nav { position: sticky; top: 70px; z-index: 5; background: rgba(251,250,248,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.blog-nav .wrap { display: flex; gap: 8px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; }
.blog-nav a { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; padding: 8px 15px; border-radius: 999px; border: 1px solid var(--line); background: #fff; color: var(--ink-2); }
.blog-nav a:hover { border-color: var(--red); color: var(--red); }
.blog-country { scroll-margin-top: 130px; }
.blog-country + .blog-country { padding-top: 0; }
.country-head { display: flex; align-items: baseline; gap: 14px; margin: 0 0 22px; padding-bottom: 14px; border-bottom: 2px solid var(--line); }
.country-head h2 { font-size: clamp(26px,3.4vw,38px); }
.country-head .count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }
.country-head .view-all { margin-left: auto; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--red); white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.country-head .view-all:hover { text-decoration: underline; }
.country-head .view-all svg { width: 15px; height: 15px; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article .cover img.cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-nav a.active { background: var(--red); color: #fff; border-color: var(--red); }
.blog-hero { background: var(--paper-2); padding-block: clamp(40px,6vw,72px); border-bottom: 1px solid var(--line); }
.blog-hero h1 { font-size: clamp(34px,5vw,56px); font-weight: 800; }
.blog-hero .lede { margin-top: 16px; max-width: 60ch; }

.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; display: block; position: relative; }
.post-thumb image-slot, .post-thumb img { width: 100%; height: 100%; display: block; }
.post-cbody { padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; color: inherit; text-decoration: none; }
.post-cat { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--red); font-weight: 700; }
.post-card h3 { font-size: 20px; }
.post-card p { color: var(--ink-2); font-size: 14.5px; flex: 1; }
.post-meta { font-size: 12.5px; color: var(--ink-3); }

.article { max-width: 760px; margin: 0 auto; padding-block: clamp(34px,5vw,64px); }
.article .cover { aspect-ratio: 16/8; border-radius: var(--r-xl); overflow: hidden; margin: 24px 0 8px; border: 1px solid var(--line); }
.article .cover image-slot { width: 100%; height: 100%; display: block; }
.article h1 { font-size: clamp(30px,4.4vw,46px); font-weight: 800; }
.article h2 { font-size: clamp(22px,3vw,30px); margin: 36px 0 12px; }
.article p { font-size: 17px; color: var(--ink-2); margin: 14px 0; }
.article ul.bul { margin: 14px 0; display: grid; gap: 8px; }
.article ul.bul li { position: relative; padding-left: 24px; color: var(--ink-2); }
.article ul.bul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.article a.inline { color: var(--red); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cta-box { background: var(--ink); color: #fff; border-radius: var(--r-xl); padding: clamp(26px,4vw,40px); margin: 38px 0; text-align: center; }
.cta-box h3 { color: #fff; font-size: 25px; }
.cta-box p { color: rgba(255,255,255,.78); margin: 10px 0 20px; }

@media (max-width: 860px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
