/* Clean layout matching the screenshot structure without copying assets/text */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:#1b1f23;background:#f2f3f4}

.wrap{max-width:1200px;margin:0 auto;padding:0 24px}

/* Utility */
.utility{background:#ffffff;border-bottom:1px solid #e5e7eb}
.util-inner{display:flex;gap:18px;justify-content:flex-end;padding:8px 0}
.util-link{color:#475569;text-decoration:none;font-size:14px}
.util-link:hover{color:#111827}

/* Header */
.header{background:#ffffff;border-bottom:1px solid #e5e7eb;position:sticky;top:0;z-index:20}
.head-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0}
.brand-logo{height:36px;width:auto;display:block}
.nav-list{display:flex;gap:22px;list-style:none;margin:0;padding:0}
.nav-list a{color:#111827;text-decoration:none;font-weight:700;letter-spacing:.02em}
.nav-list a:hover{color:#be1e2d}

/* Hero/feature band placeholder */
.feature{height:120px;background:#111827}

/* What's New layout */
.whats-new{display:grid;grid-template-columns:320px 1fr;gap:32px;padding:28px 0}
.rail{background:#cf2b23;color:#fff;padding:28px;border-radius:4px;display:flex;flex-direction:column;gap:10px;min-height:420px}
.rail .arrow{font-size:40px;line-height:1}
.rail h2{margin:0 0 6px 0;font-size:30px}
.rail p{margin:0 0 16px 0;color:#ffe8e7;line-height:1.5}
.rail .visit{color:#fff;text-transform:uppercase;letter-spacing:.06em;text-decoration:none;font-weight:800}
.rail .visit:hover{text-decoration:underline}

.cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px}
.news-card{background:#eef0f2;border-radius:4px;padding:0 0 16px 0;box-shadow:0 1px 0 rgba(0,0,0,.04)}
.thumb{height:220px;background:#c7ccd1 center/cover no-repeat;margin:16px;border-radius:2px}
.tag{display:block;color:#60708a;font-size:12px;letter-spacing:.06em;text-transform:uppercase;margin:0 16px}
.news-card h3{margin:8px 16px 0 16px;line-height:1.25;font-size:24px;color:#0f172a}

.footer{background:#ffffff;border-top:1px solid #e5e7eb;margin-top:32px}
.foot-inner{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.foot-nav a{color:#334155;text-decoration:none;margin-right:12px}
.foot-nav a:hover{color:#111827}

@media (max-width: 1024px){
  .cards{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 760px){
  .whats-new{grid-template-columns:1fr;gap:18px}
  .rail{min-height:auto}
  .cards{grid-template-columns:1fr}
  .feature{height:80px}
}
