/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
Description: Child theme for Twenty Twenty-Five
Author: Your Name
*/


/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; }

/* ── Design tokens ── */
:root {
  --nf-bg:       #040B1A;
  --nf-bg2:      #070F23;
  --nf-surface:  #0C1628;
  --nf-surface2: #111E35;
  --nf-border:   rgba(99,179,237,0.12);
  --nf-accent:   #4F8EF7;
  --nf-cyan:     #22D3EE;
  --nf-green:    #10F5C8;
  --nf-text:     #E8F0FF;
  --nf-muted:    #7A90B8;
  --nf-grad:     linear-gradient(135deg, #4F8EF7 0%, #7B5FF7 50%, #22D3EE 100%);
  --nf-glow:     0 0 40px rgba(79,142,247,0.25);
}

/* ── Site body ── */
body {
  background: var(--nf-bg);
  color: var(--nf-text);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body a { text-decoration: none; }
body h1, body h2, body h3, body h4 { color: var(--nf-text); }

/* remove default WP theme spacing on full-width page */
.wp-site-blocks { padding-top: 70px !important; padding-bottom: 0 !important; }
.wp-site-blocks > * { margin: 0 !important; }

/* ────────────────────────────────────────────────
   UTILITIES
   ──────────────────────────────────────────────── */
.nf-c {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nf-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.3);
  color: var(--nf-accent); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
}
.nf-tag::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--nf-cyan); box-shadow: 0 0 8px var(--nf-cyan);
}
.nf-gt {
  background: var(--nf-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nf-sec-title { font-size: clamp(28px,4vw,42px); font-weight: 800; line-height: 1.2; color: var(--nf-text); }
.nf-sec-sub   { color: var(--nf-muted); font-size: 17px; margin-top: 12px; max-width: 520px; }
.nf-sec-hdr   { margin-bottom: 60px; }

.nf-btn-p {
  background: var(--nf-grad); color: #fff; border: none;
  padding: 15px 32px; border-radius: 10px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(79,142,247,0.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.nf-btn-p:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(79,142,247,0.45); color: #fff; }
.nf-btn-s {
  background: transparent; color: var(--nf-text);
  border: 1px solid var(--nf-border); padding: 15px 32px; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nf-btn-s:hover { border-color: rgba(79,142,247,0.4); background: rgba(79,142,247,0.05); color: var(--nf-text); }

/* ────────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────────── */
.nf-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(4,11,26,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--nf-border);
  transition: box-shadow 0.3s;
  font-family: 'Inter', sans-serif;
}
.nf-site-header .nf-header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nf-logo-wrap {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  text-decoration: none; color: var(--nf-text);
}
.nf-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--nf-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nf-logo-name {
  background: var(--nf-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nf-logo-suffix { color: var(--nf-text); -webkit-text-fill-color: var(--nf-text); }

/* Navigation block overrides inside header */
.nf-site-header .wp-block-navigation { background: transparent !important; }
.nf-site-header .wp-block-navigation__container {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
.nf-site-header .wp-block-navigation-item__content {
  color: var(--nf-muted) !important; font-size: 14px; font-weight: 500;
  text-decoration: none; padding: 0 !important; transition: color 0.2s;
}
.nf-site-header .wp-block-navigation-item__content:hover { color: var(--nf-text) !important; }
.nf-site-header .wp-block-navigation__responsive-container-open,
.nf-site-header .wp-block-navigation__responsive-container-close { display: none; }

.nf-header-cta {
  background: var(--nf-grad); color: #fff !important; border: none;
  padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 14px;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.nf-header-cta:hover { opacity: 0.9; transform: translateY(-1px); color: #fff !important; }

/* ────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────── */
.nf-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
  background: var(--nf-bg);
}
.nf-hero-bg { position: absolute; inset: 0; z-index: 0; }
.nf-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.nf-o1  { width: 600px; height: 600px; background: rgba(79,142,247,0.15); top: -100px; right: -100px; }
.nf-o2  { width: 400px; height: 400px; background: rgba(123,95,247,0.12); bottom: -50px; left: -80px; }
.nf-o3  { width: 300px; height: 300px; background: rgba(34,211,238,0.08);  top: 40%; left: 40%; }
.nf-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(79,142,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,142,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}
.nf-hero-content { position: relative; z-index: 1; max-width: 720px; }
.nf-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,245,200,0.08); border: 1px solid rgba(16,245,200,0.2);
  color: var(--nf-green); font-size: 12px; font-weight: 600;
  padding: 8px 16px; border-radius: 100px; margin-bottom: 28px;
}
.nf-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--nf-green); box-shadow: 0 0 10px var(--nf-green);
  animation: nf-pulse 2s infinite;
}
@keyframes nf-pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.nf-h1 {
  font-size: clamp(38px,6vw,72px); font-weight: 900;
  line-height: 1.08; letter-spacing: -2px; margin-bottom: 24px; color: var(--nf-text);
}
.nf-hero-sub   { font-size: 18px; color: var(--nf-muted); margin-bottom: 40px; max-width: 520px; line-height: 1.7; }
.nf-hero-acts  { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 56px; }
.nf-hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.nf-sv {
  font-size: 28px; font-weight: 800;
  background: var(--nf-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.nf-sl { font-size: 13px; color: var(--nf-muted); }

/* ────────────────────────────────────────────────
   BRANDS MARQUEE
   ──────────────────────────────────────────────── */
.nf-brands {
  padding: 56px 0; background: var(--nf-bg);
  border-top: 1px solid var(--nf-border); border-bottom: 1px solid var(--nf-border);
  overflow: hidden;
}
.nf-bl {
  text-align: center; color: var(--nf-muted); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px;
}
.nf-bw {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.nf-bt { display: flex; width: max-content; animation: nf-scroll 28s linear infinite; }
.nf-bt:hover { animation-play-state: paused; }
@keyframes nf-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.nf-bi {
  display: flex; align-items: center; gap: 10px; padding: 0 40px;
  white-space: nowrap; color: var(--nf-muted); font-size: 15px; font-weight: 700;
  letter-spacing: -0.3px; transition: color 0.2s; border-right: 1px solid var(--nf-border);
}
.nf-bi:hover { color: var(--nf-text); }

/* ────────────────────────────────────────────────
   SERVICES
   ──────────────────────────────────────────────── */
.nf-services { padding: 100px 0; background: var(--nf-bg); }
.nf-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.nf-svc-card {
  background: var(--nf-surface); border: 1px solid var(--nf-border);
  border-radius: 20px; padding: 32px; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.nf-svc-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: var(--nf-grad); opacity: 0; transition: opacity 0.3s;
}
.nf-svc-card:hover { transform: translateY(-4px); border-color: rgba(79,142,247,0.4); box-shadow: var(--nf-glow); }
.nf-svc-card:hover::before { opacity: 0.04; }
.nf-si {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px; position: relative; z-index: 1;
}
.nf-si-1 { background: rgba(79,142,247,0.12); }
.nf-si-2 { background: rgba(123,95,247,0.12); }
.nf-si-3 { background: rgba(34,211,238,0.12); }
.nf-si-4 { background: rgba(16,245,200,0.12); }
.nf-si-5 { background: rgba(245,158,11,0.12); }
.nf-si-6 { background: rgba(239,68,68,0.12); }
.nf-svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; position: relative; z-index: 1; color: var(--nf-text); }
.nf-svc-card p  { color: var(--nf-muted); font-size: 14px; line-height: 1.7; position: relative; z-index: 1; margin-bottom: 0; }
.nf-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; position: relative; z-index: 1; }
.nf-t {
  background: rgba(79,142,247,0.08); border: 1px solid rgba(79,142,247,0.15);
  color: var(--nf-accent); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
}

/* ────────────────────────────────────────────────
   STATS / DATA
   ──────────────────────────────────────────────── */
.nf-stats { padding: 100px 0; position: relative; overflow: hidden; background: var(--nf-bg); }
.nf-stats-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(79,142,247,0.06), transparent);
}
.nf-stats-in  { position: relative; z-index: 1; }
.nf-stats-hdr { text-align: center; margin-bottom: 64px; }
.nf-stats-hdr .nf-sec-sub { margin: 12px auto 0; }
.nf-sg {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--nf-border); border-radius: 24px; overflow: hidden;
}
.nf-sc { background: var(--nf-surface); padding: 48px 32px; text-align: center; transition: background 0.3s; }
.nf-sc:hover { background: var(--nf-surface2); }
.nf-sn {
  font-size: clamp(36px,5vw,56px); font-weight: 900; line-height: 1;
  background: var(--nf-grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px;
}
.nf-sk { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--nf-text); }
.nf-sd { color: var(--nf-muted); font-size: 13px; line-height: 1.5; }

/* ────────────────────────────────────────────────
   INDUSTRIES
   ──────────────────────────────────────────────── */
.nf-ind { padding: 100px 0; background: var(--nf-bg); }
.nf-ig  { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 60px; }
.nf-ic  {
  background: var(--nf-surface); border: 1px solid var(--nf-border);
  border-radius: 16px; padding: 28px 24px; cursor: pointer;
  transition: all 0.3s; text-align: center;
}
.nf-ic:hover {
  border-color: rgba(79,142,247,0.4); background: var(--nf-surface2);
  transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.nf-ie { font-size: 36px; margin-bottom: 14px; }
.nf-ic h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--nf-text); }
.nf-ic p  { color: var(--nf-muted); font-size: 13px; line-height: 1.5; margin-bottom: 0; }
.nf-ip {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px; color: var(--nf-cyan);
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.15);
}

/* ────────────────────────────────────────────────
   CTA BANNER
   ──────────────────────────────────────────────── */
.nf-cta {
  padding: 80px 24px; margin: 0 24px 80px;
  background: var(--nf-surface); border: 1px solid var(--nf-border);
  border-radius: 28px; position: relative; overflow: hidden;
}
.nf-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(79,142,247,0.12), transparent);
}
.nf-cta-in     { position: relative; z-index: 1; text-align: center; }
.nf-cta-in h2  { font-size: clamp(28px,4vw,44px); font-weight: 900; margin-bottom: 16px; color: var(--nf-text); }
.nf-cta-in p   { color: var(--nf-muted); font-size: 17px; margin-bottom: 36px; }
.nf-cta-acts   { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────── */
.nf-site-footer footer{
  background: var(--nf-bg2);
  border-top: 1px solid var(--nf-border);
  padding: 64px 0 32px;
  font-family: 'Inter', sans-serif;
  color: var(--nf-text);
}
footer > .wp-block-group  { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
footer .nf-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.nf-footer-brand-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  text-decoration: none; color: var(--nf-text);
}
.nf-footer-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--nf-grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.nf-footer-logo-name {
  background: var(--nf-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.nf-footer-desc    { color: var(--nf-muted); font-size: 14px; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.nf-footer-socials { display: flex; gap: 12px; }
.nf-footer-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--nf-surface); border: 1px solid var(--nf-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--nf-text); text-decoration: none; transition: all 0.2s;
}
.nf-footer-social-btn:hover { border-color: rgba(79,142,247,0.4); background: rgba(79,142,247,0.08); color: var(--nf-text); }
.nf-footer-col-title {
  font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--nf-muted) !important; margin-bottom: 18px !important;
}

/* Navigation block overrides inside footer columns */
.nf-footer-nav-col .wp-block-navigation { background: transparent !important; }
.nf-footer-nav-col .wp-block-navigation__container {
  display: flex; flex-direction: column; gap: 10px;
  list-style: none; margin: 0; padding: 0;
}
.nf-footer-nav-col .wp-block-navigation-item__content {
  color: var(--nf-muted) !important; font-size: 14px;
  text-decoration: none; padding: 0 !important; transition: color 0.2s; display: block;
}
.nf-footer-nav-col .wp-block-navigation-item__content:hover { color: var(--nf-text) !important; }

.nf-footer-bottom {
  border-top: 1px solid var(--nf-border); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.nf-footer-copy    { color: var(--nf-muted); font-size: 13px; margin: 0; }
.nf-footer-badges  { display: flex; gap: 12px; }
.nf-footer-badge   {
  background: var(--nf-surface); border: 1px solid var(--nf-border);
  color: var(--nf-muted); font-size: 11px; font-weight: 600;
  padding: 5px 12px; border-radius: 6px; letter-spacing: 0.04em;
}
.nf-footer-links   { display: flex; gap: 20px; }
.nf-footer-links a { color: var(--nf-muted); font-size: 13px; text-decoration: none; transition: color 0.2s; }
.nf-footer-links a:hover { color: var(--nf-text); }

/* ────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nf-svc-grid  { grid-template-columns: repeat(2,1fr); }
  .nf-sg        { grid-template-columns: repeat(2,1fr); }
  .nf-ig        { grid-template-columns: repeat(2,1fr); }
  footer .nf-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nf-site-header .wp-block-navigation__container { display: none; }
  .nf-header-cta  { display: none; }
  .nf-svc-grid    { grid-template-columns: 1fr; }
  .nf-sg          { grid-template-columns: 1fr 1fr; }
  .nf-ig          { grid-template-columns: repeat(2,1fr); }
  footer .nf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nf-hero-stats  { gap: 24px; }
  .nf-cta         { margin: 0 16px 60px; }
}


/* ────────────────────────────────────────────────
   SERVICE CARDS — native Gutenberg block overrides
   ──────────────────────────────────────────────── */

/* Section wrapper */
.nf-services.alignfull { padding: 100px 0; background: var(--nf-bg); }

/* Header area */
.nf-services .nf-sec-hdr { margin-bottom: 60px; }
.nf-services .nf-services-heading { margin-top: 16px !important; font-size: clamp(28px,4vw,42px) !important; font-weight: 800 !important; color: var(--nf-text) !important; }

/* Columns grid — override WP default flex */
.nf-services .nf-svc-grid.wp-block-columns {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  flex-wrap: unset !important;
  align-items: unset !important;
}
.nf-services .nf-svc-grid .wp-block-column {
  flex-basis: unset !important;
  flex-grow: unset !important;
  min-width: unset !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Card — heading */
.nf-svc-card .nf-svc-title {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
  color: var(--nf-text) !important;
  position: relative;
  z-index: 1;
}

/* Card — description */
.nf-svc-card .nf-svc-desc {
  color: var(--nf-muted) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
}

/* Tags — wp:buttons wrapper */
.nf-svc-card .wp-block-buttons.nf-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin-top: 18px !important;
  position: relative;
  z-index: 1;
}

/* Tags — individual wp:button */
.nf-svc-card .wp-block-button.nf-svc-tag { margin: 0 !important; }
.nf-svc-card .wp-block-button.nf-svc-tag .wp-block-button__link {
  background: rgba(79,142,247,0.08) !important;
  border: 1px solid rgba(79,142,247,0.15) !important;
  color: var(--nf-accent) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 4px 10px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  display: inline-block;
  transition: background 0.2s;
  box-shadow: none !important;
}
.nf-svc-card .wp-block-button.nf-svc-tag .wp-block-button__link:hover {
  background: rgba(79,142,247,0.18) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .nf-services .nf-svc-grid.wp-block-columns { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .nf-services .nf-svc-grid.wp-block-columns { grid-template-columns: 1fr !important; }
}
.wp-block-latest-posts__list {

  li {
    background: var(--nf-surface);
    border: 1px solid var(--nf-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;

    .wp-block-latest-posts__post-title {
      font-weight: 700;
      font-size: 18px;
    }

    &:hover {
      transform: translateY(-4px);
      border-color: rgba(79, 142, 247, 0.4);
      box-shadow: var(--nf-glow);
    }

    .wp-block-latest-posts__post-excerpt {
      color: var(--nf-muted) !important;
      font-size: 14px !important;
      line-height: 1.7 !important;
      margin-bottom: 0 !important;
      position: relative;
      z-index: 1;
    }

    .wp-block-latest-posts__post-categories {
      margin-top: 40px;
      display: flex;
      align-items: end;

      a {
        background: rgba(79, 142, 247, 0.08) !important;
        border: 1px solid rgba(79, 142, 247, 0.15) !important;
        color: var(--nf-accent) !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        padding: 4px 10px !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        display: inline-block;
        transition: background 0.2s;
        box-shadow: none !important;
      }

    }

  }

  @media screen and (min-width:900px){

	display: grid !important;
	grid-template-columns: 1fr 1fr 1fr !important;
	column-gap: 20px;

	li {
    width: 100% !important;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
	}
	
  }
  @media screen and (max-width:767px){

	li {
          margin-right:0 !important;
	}
	
  }

}

.archive.category .wp-block-latest-posts__list {
  max-width: 1200px;
}