/* Template: blog (from mockup blog.html) */
.blog-hero .chips { margin-top: 2rem; }
.blog-hero .searchbar { margin-top: 1.2rem; }
.featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); overflow: hidden; border-radius: var(--r-xl); background: var(--paper); border: 1px solid var(--line); color: inherit; text-decoration: none; transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.featured:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.featured .cover { min-height: 320px; font-size: clamp(1.1rem, 0.9rem + 1vw, 1.6rem); padding: 2rem; }
.featured__body { display: flex; flex-direction: column; gap: 1rem; padding: clamp(1.5rem, 1rem + 2vw, 2.6rem); }
.featured__body .tag { align-self: flex-start; }
.featured__body h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem); font-stretch: 116%; }
.featured__body p { color: var(--slate); }
.featured__body .more { margin-top: auto; }
.hubs { list-style: none; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0.8rem; }
.hub { display: grid; gap: 0.7rem; padding: 1.1rem 1.1rem 1.2rem; border-radius: var(--r-lg); background: var(--paper); border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 700; font-stretch: 108%; transition: border-color 0.2s, transform 0.3s var(--ease); }
.hub:hover { border-color: var(--night); transform: translateY(-3px); }
.hub__icon { width: 2.4rem; height: 2.4rem; border-radius: 12px; display: grid; place-items: center; background: var(--night); color: var(--lamp); }
.hub__icon svg { width: 1.15rem; height: 1.15rem; }
.hub small { display: block; font-weight: 500; font-stretch: 100%; color: var(--slate); font-size: 0.85rem; }
.row-head { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
.post-grid li[hidden] { display: none; }
.no-results { display: none; padding: 2rem 0; color: var(--slate); }
.no-results.is-visible { display: block; }
.band { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 1rem 2rem; align-items: center; padding: clamp(1.5rem, 1rem + 2vw, 2.4rem); border-radius: var(--r-xl); background: radial-gradient(circle at 90% 0%, rgba(255, 194, 75, 0.22), transparent 50%), var(--night); color: #fff; }
.band p { color: var(--mist); margin-top: 0.4rem; }
@media (max-width: 1100px) { .hubs { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 800px) { .featured { grid-template-columns: minmax(0, 1fr); } .featured .cover { min-height: 200px; } }
@media (max-width: 640px) { .hubs { grid-template-columns: repeat(2, minmax(0, 1fr)); } .band { grid-template-columns: minmax(0, 1fr); } }
