.home-news { border-bottom: 1px solid var(--border); background: var(--bg); }
.home-news-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; margin-bottom: 42px; }
.home-news-head h2 { max-width: 820px; margin: 0; font-size: clamp(42px,5vw,72px); line-height: .96; letter-spacing: -.055em; }
.home-news-head-side { max-width: 430px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.home-news-head-side p { margin: 0; color: var(--muted); }
.home-news-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 7px; border-bottom: 2px solid var(--yellow-strong); color: var(--text); font-size: 14px; font-weight: 800; transition: color .2s ease,gap .2s ease; }
.home-news-link:hover { color: var(--yellow-strong); gap: 17px; }
.home-news-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,minmax(270px,1fr)); gap: 14px; }
.home-news-card { position: relative; min-height: 270px; overflow: hidden; border: 1px solid var(--border); background: var(--surface); color: var(--text); transition: transform .25s ease,border-color .25s ease; }
.home-news-card:hover { transform: translateY(-4px); border-color: var(--yellow-strong); }
.home-news-card:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }
.home-news-feature { grid-column: span 7; grid-row: span 2; min-height: 554px; background: #0a1018; color: #fff; }
.home-news-side { grid-column: span 5; }
.home-news-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; }
.home-news-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,8,13,.05),rgba(4,8,13,.94)); }
.home-news-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; }
.home-news-side .home-news-content { justify-content: space-between; }
.home-news-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.home-news-feature .home-news-meta { color: var(--yellow); }
.home-news-card h3 { max-width: 720px; margin: 16px 0 0; font-size: clamp(25px,2.5vw,39px); line-height: 1.03; letter-spacing: -.04em; text-wrap: balance; }
.home-news-side h3 { font-size: clamp(24px,2.15vw,33px); }
.home-news-card p { max-width: 660px; margin: 16px 0 0; color: var(--muted); }
.home-news-feature p { color: rgba(255,255,255,.72); }
.home-news-arrow { align-self: flex-end; width: 44px; height: 44px; display: grid; place-items: center; margin-top: 22px; border: 1px solid currentColor; border-radius: 50%; font-size: 19px; }
.home-news-mark { position: absolute; right: 18px; bottom: -22px; color: rgba(250,210,0,.13); font-size: 112px; font-weight: 800; line-height: .8; letter-spacing: -.09em; }
@media(max-width:980px) {
  .home-news-head { display: block; }
  .home-news-head-side { margin-top: 24px; }
  .home-news-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-news-feature,.home-news-side { grid-column: 1; grid-row: auto; }
  .home-news-feature { min-height: 520px; }
  .home-news-side { min-height: 330px; }
}
@media(max-width:520px) {
  .home-news-head h2 { font-size: 40px; }
  .home-news-feature { min-height: 470px; }
  .home-news-side { min-height: 350px; }
  .home-news-content { padding: 24px; }
}
@media(prefers-reduced-motion:reduce) { .home-news-card { transition-duration: .01ms!important; } }
