
/* ═══ ARTICLES PATCH — Featured images, categories, news cards ═══ */

/* Article featured image — uniform aspect ratio */
.wp-post-image{display:block;width:100%;height:100%;object-fit:cover}

/* Category badge */
.cat-badge{display:inline-block;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.06em;padding:.15rem .5rem;border-radius:1px}
.cat-badge--brand{color:var(--brand);background:var(--brand-pale)}
.cat-badge--light{color:rgba(255,255,255,.8);background:rgba(255,255,255,.15)}

/* News page sidebar responsive */
@media(max-width:900px){
  [style*="grid-template-columns:1fr 320px"]{grid-template-columns:1fr!important}
}

/* Article page sidebar responsive */
@media(max-width:900px){
  [style*="grid-template-columns:1fr 280px"]{grid-template-columns:1fr!important}
  [style*="grid-template-columns:1fr 280px"] aside [style*="position:sticky"]{position:static!important}
}

/* Featured image on article page responsive */
@media(max-width:600px){
  [style*="aspect-ratio:16/7"]{aspect-ratio:16/9!important;max-height:250px!important}
}

/* Category tab active state hover */
[style*="border-bottom:2px solid var(--brand)"]:hover{opacity:.9}
[style*="border-bottom:2px solid transparent"]:hover{border-bottom-color:var(--g2)!important;color:var(--g7)!important}
