.mc-news-layout { display: grid; grid-template-columns: 1fr 280px; gap: 56px; }
  .mc-news-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--mc-line); }
  .mc-news-filters button { padding: 8px 18px; border: 1px solid var(--mc-line); border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--mc-text-2); background: #fff; transition: all .2s; }
  .mc-news-filters button:hover, .mc-news-filters button.is-active { background: var(--mc-red); color: #fff; border-color: var(--mc-red); }
  .mc-news-list { display: grid; gap: 0; }
  .mc-news-item { display: grid; grid-template-columns: 110px 110px 1fr; gap: 24px; padding: 24px 4px; border-bottom: 1px solid var(--mc-line); align-items: center; transition: background .2s; }
  .mc-news-item:hover { background: #FAFAFB; }
  .mc-news-item:hover .title { color: var(--mc-red); }
  .mc-news-date { font-family: var(--mc-font-en); font-weight: 700; font-size: 13px; color: var(--mc-ink); letter-spacing: 0.05em; }
  .mc-news-cat { display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-align: center; }
  .mc-cat-press { background: #FCE6E8; color: var(--mc-red); }
  .mc-cat-product { background: #E5F0FF; color: #1B5FB8; }
  .mc-cat-event { background: #FFF6DC; color: #B5840E; }
  .mc-cat-recruit { background: #E5F8EE; color: #1F8A5B; }
  .mc-news-item .title { font-size: 14px; font-weight: 600; line-height: 1.7; color: var(--mc-text); transition: color .2s; }
  .mc-news-item .title small { display: block; font-weight: 400; font-size: 12px; color: var(--mc-text-3); margin-top: 4px; }
  .mc-pager { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
  .mc-pager a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--mc-line); border-radius: 4px; font-family: var(--mc-font-en); font-weight: 700; font-size: 13px; color: var(--mc-text); transition: all .2s; }
  .mc-pager a.is-active, .mc-pager a:hover { background: var(--mc-red); color: #fff; border-color: var(--mc-red); }
  .mc-side-block { background: #fff; border: 1px solid var(--mc-line); border-radius: 12px; padding: 22px 22px 24px; margin-bottom: 20px; }
  .mc-side-block h4 { font-size: 13px; font-weight: 700; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--mc-line); }
  .mc-side-cats { display: grid; gap: 6px; }
  .mc-side-cats a { display: flex; justify-content: space-between; padding: 8px 0; font-size: 12px; color: var(--mc-text); border-bottom: 1px dashed var(--mc-line); transition: color .2s; }
  .mc-side-cats a:hover { color: var(--mc-red); }
  .mc-side-cats span { font-family: var(--mc-font-en); color: var(--mc-text-3); }
  .mc-side-archive { display: grid; gap: 6px; font-family: var(--mc-font-en); font-size: 12px; }
  .mc-side-archive a { display: flex; justify-content: space-between; padding: 6px 0; color: var(--mc-text); }
  .mc-side-archive a:hover { color: var(--mc-red); }

  @media (max-width: 960px) {
    .mc-news-layout { grid-template-columns: 1fr; gap: 32px; }
    .mc-news-item { grid-template-columns: auto auto 1fr; gap: 12px; }
  }
  @media (max-width: 640px) {
    .mc-news-item { grid-template-columns: 1fr; gap: 6px; padding: 18px 4px; }
    .mc-news-date { font-size: 12px; }
  }
