/* Media page */
.press-big { background: #fff; border-radius: var(--r); border: 1px solid var(--border); box-shadow: var(--sh-sm); overflow: hidden; transition: all .3s; height: 100%; display: flex; flex-direction: column; }
.press-big:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.press-big-img { height: 195px; overflow: hidden; background: var(--slate); flex-shrink: 0; }
.press-big-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.press-big:hover .press-big-img img { transform: scale(1.05); }
.press-big-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.pb-tag { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 9px; border-radius: var(--rp); background: #dbeafe; color: #1d4ed8; margin-bottom: 10px; display: inline-block; }
.press-big-body h5 { font-family: var(--fp); font-size: .93rem; font-weight: 700; color: var(--navy); line-height: 1.45; margin-bottom: 7px; flex: 1; }
.press-big-body p  { font-size: .78rem; color: var(--muted); line-height: 1.68; margin-bottom: 12px; }
.press-big-body .meta { font-size: .68rem; color: var(--muted); font-weight: 600; }
.media-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.mf-btn { font-family: var(--fp); font-size: .74rem; font-weight: 600; padding: 6px 16px; border-radius: var(--rp); border: 1.5px solid var(--border); background: #fff; color: var(--navy); cursor: pointer; transition: all .2s; }
.mf-btn:hover, .mf-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
@media (max-width: 767px) {
  .press-big-img { height: 160px; }
  .press-big-body { padding: 16px 16px 18px; }
}
@media (max-width: 575px) {
  .press-big-img { height: 145px; }
  .press-big-body h5 { font-size: .86rem; }
  .media-filter { gap: 6px; }
  .mf-btn { font-size: .70rem; padding: 5px 12px; }
}
