/* ==========================================================================
   MPTFO Annual Report 2025 — Homepage Styles
   ========================================================================== */

/* ── Fonts ── */
@font-face {
  font-family: 'proxima-nova';
  src: local('proxima-nova'), url('./fonts/ProximaNova-Regular.woff') format('woff');
}
@font-face {
  font-family: 'proxima-nova-condensed-bold';
  src: local('proxima-nova'), url('./fonts/Proxima-Nova-Cond-Sbold.woff') format('woff');
}

/* ==========================================================================
   0. BASE
   ========================================================================== */
:root {
  --un-blue:        #2EABE1;
  --un-blue-hover:  #005880;
  --un-dark:        #15385F;
  --un-mid:         #66809D;
  --un-light:       #F0F7FC;
  --un-teal:        #007A74;
  --un-amber:       #F7A800;
  --un-green:       #3D7A27;
  --text-primary:   #0A0A0A;
  --text-secondary: #3D4D5C;
  --text-muted:     #5A6070;
  --border:         #C8D4E0;
  --bg:             #F3F4F8;
  --white:          #FFFFFF;
  --table-header:   #1A3A5C;
  --table-alt:      #EEF5FF;
  --focus-ring:     #0072A3;
  --section-gap: 48px;
  --radius: 12px;
  --max-w: 1152px;
  --side-pad: 24px;
}

body {
  font-family: 'proxima-nova', sans-serif;
  color: var(--text-primary);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
}

a { color: var(--text-primary); }

strong {
  color: var(--un-dark);
  font-weight: 700;
}

h2 { font-size: 24px; }
h3 { font-size: 18px; }

.headline-border {
  padding-left: 1rem;
  border-left: 2px solid var(--un-blue);
  font-weight: 300;
  margin-bottom: 1rem;
}

/* ==========================================================================
   ACCESSIBILITY UTILITIES
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--un-dark);
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.1s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   HEADER & NAV
   ========================================================================== */

.breadcrumb { background: var(--white); border-bottom: 1px solid var(--border); }
.bc-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 28px; max-width: 1160px; margin: 0 auto; flex-wrap: wrap; gap: 6px;
}
.bc-links { display: flex; align-items: center; gap: 5px; font-size: .77rem; color: var(--text-secondary); }
.bc-links a { color: var(--un-dark); text-decoration: none; }
.bc-links a:hover { text-decoration: underline; }
.bc-sep { color: var(--text-secondary); }
.bc-pdf { font-size: .78rem; font-weight: 600; color: var(--un-dark); text-decoration: none; display: inline-flex; align-items: center; }
.bc-pdf:hover { text-decoration: underline; }

.top-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.MPFTO-logo {
  max-width: 228px;
  height: auto;
}

.report-badge {
  margin-left: auto;
  font-size: 16px;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.4;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.report-badge strong {
  display: block;
  text-align: left;
  font-size: 14px;
  color: var(--text-primary);
}

/* ── HERO ── */
.hero-text { max-width: 350px; }
.logo-hero { width: 100%; height: auto; }

.hero {
  position: relative;
  margin: 24px auto;
  overflow: hidden;
  background: var(--un-dark);
  height: auto;
  display: flex;
  flex-direction: column;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  padding: 24px;
}

.hero-gif {
  flex: 1;
  width: 70%;
  display: block;
}

.org-tagline {
  color: white;
  font-size: 0.72rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 0.5rem;
}

.hero-title {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  margin: 16px 0;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.header-link { text-decoration: none !important; }

.section-wrap {
  margin: var(--section-gap) auto 0;
  max-width: var(--max-w);
  padding: 0 var(--side-pad);
}
.section-wrap:last-of-type { margin-bottom: var(--section-gap); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card {
  background: var(--white);
  overflow: hidden;
}

.card-body { padding: 48px; }
@media (max-width: 768px) { .card-body { padding: 28px 20px; } }

/* ==========================================================================
   FOREWORD
   ========================================================================== */

.foreword-section {
  margin-bottom: 4rem;
  padding-top: 1rem;
}

.foreword-grid {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 4rem;
  align-items: start;
}

.foreword-eyebrow {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.foreword-author {
  padding-top: 1.25rem;
  margin-top: 4rem;
}

.foreword-image {
  border-radius: 100%;
  max-width: 80px;
}
.author-name {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.2;
}
.author-role { font-size: 1rem; }

.lead {
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--un-blue);
}

.section-card {
  margin-bottom: 24px;
  padding: 32px 24px;
  background: var(--bg);
  position: relative;
}

.section-number {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--un-blue);
  margin-bottom: 8px;
}

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--un-dark);
  margin-bottom: 16px;
}

.section-body {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text-primary);
}

.closing { font-size: 15.5px; line-height: 1.8; }

.stat {
  font-weight: 900;
  color: var(--un-dark);
}

/* ==========================================================================
   FAST FACTS
   ========================================================================== */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.stat-tile {
  background: #fff;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
}

.stat-top    { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.stat-number { font-size: 38px; font-weight: 700; color: var(--un-dark); line-height: 1; }
.stat-unit   { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; color: var(--un-blue); }
.stat-label  { font-size: 14px; font-weight: 700; color: var(--un-dark); line-height: 20px; }

.stat-bar { height: 2px; width: 28px; background: var(--un-blue); transition: width 0.35s ease; }

.stat-hint {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  color: var(--un-blue);
  text-transform: uppercase; letter-spacing: 0.6px;
  margin-top: 2px;
  transition: opacity 0.2s;
}
.stat-hint::after {
  content: '+';
  font-size: 14px; font-weight: 700; line-height: 1;
  transition: transform 0.25s ease, opacity 0.2s;
}

.stat-desc {
  font-size: 14px; color: var(--text-primary); line-height: 20px;
  max-height: 0; opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
  padding-bottom: 24px;
}

/* Desktop: hover to reveal */
@media (hover: hover) {
  .stat-tile { cursor: default; }
  .stat-tile:hover { background: var(--un-light); }
  .stat-tile:hover .stat-bar  { width: 56px; }
  .stat-tile:hover .stat-hint { opacity: 0; pointer-events: none; }
  .stat-tile:hover .stat-hint::after { transform: rotate(45deg); }
  .stat-tile:hover .stat-desc { max-height: 220px; opacity: 1; }
}

/* Mobile: tap to toggle */
@media (hover: none) and (max-width: 600px) {
  .stat-tile { cursor: pointer; }
  .stat-tile.active { background: var(--un-light); }
  .stat-tile.active .stat-bar  { width: 56px; }
  .stat-tile.active .stat-hint { opacity: 0; pointer-events: none; }
  .stat-tile.active .stat-hint::after { transform: rotate(45deg); }
  .stat-tile.active .stat-desc { max-height: 220px; opacity: 1; }
}

/* ==========================================================================
   EXPLORE IN DETAILS
   ========================================================================== */

.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.explore-card {
  position: relative; height: 320px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end; text-decoration: none;
}
.explore-card:focus-visible { outline: 3px solid var(--un-blue); outline-offset: 2px; }
.explore-card__photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transition: transform 0.5s ease;
}
.explore-card:hover .explore-card__photo { transform: scale(1.05); }
.explore-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,56,95,0.97) 0%, rgba(21,56,95,0.75) 50%, rgba(21,56,95,0.10) 100%);
}
.explore-card__bar {
  position: absolute; top: 0; left: 0;
  height: 3px; background: var(--un-blue);
  width: 0; transition: width 0.4s ease;
}
.explore-card:hover .explore-card__bar { width: 100%; }
.explore-card__body {
  position: relative; padding: 0 24px 24px;
  display: flex; flex-direction: column;
}
.explore-card__tag   { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; color: var(--un-blue); }
.explore-card__title { font-size: 18px; font-weight: 700; color: #fff; margin: 0; }
.explore-card__cta   { display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.explore-card__cta-text { font-size: 13px; color: var(--un-blue); transition: color 0.2s; }
.explore-card:hover .explore-card__cta-text { color: #fff; }
.explore-card__arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.explore-card:hover .explore-card__arrow { background: var(--un-blue-hover); }

/* ==========================================================================
   CONTRIBUTORS COALITION
   ========================================================================== */

.contrib-total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.contrib-total__num   { font-size: 48px; font-weight: 700; color: var(--un-dark); line-height: 1; }
.contrib-total__label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--un-dark);
  padding-bottom: 4px;
}

.contrib-breakdown {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 12px;
  padding-left: 8px;
}
.contrib-breakdown__line {
  width: 2px;
  background: var(--border);
  margin-right: 20px;
  flex-shrink: 0;
  border-radius: 1px;
}
.contrib-breakdown__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
}
.contrib-sub { display: flex; align-items: baseline; gap: 8px; }
.contrib-sub__num {
  font-size: 28px; font-weight: 700;
  color: var(--un-dark);
  line-height: 1;
}
.contrib-sub__label {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.7px;
  color: var(--text-muted);
}
.contrib-of-which {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 2px;
  padding-left: 30px;
}

.coalition {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding: 2rem 0;
}

.coalition-intro {
  position: sticky;
  top: 24px;
  align-self: start;
}

.coalition-text {
  font-size: 0.95rem;
  color: var(--un-dark);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.coalition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 1.25rem 0.75rem;
}

.coalition-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  text-align: left;
  background: transparent;
  border: none;
  padding: 0;
  font-family: 'proxima-nova', sans-serif;
  color: var(--un-dark);
  cursor: default;
}
.coalition-item.is-clickable { cursor: pointer; }
.coalition-item.is-clickable:hover .coalition-flag,
.coalition-item.is-clickable:focus-visible .coalition-flag {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15,35,71,.18);
}
.coalition-item:focus-visible { outline: none; }
.coalition-item:focus-visible .coalition-flag {
  outline: 2px solid var(--un-dark);
  outline-offset: 3px;
}

.coalition-flag {
  width: 80px;
  height: 54px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15,35,71,.15);
  transition: transform .18s, box-shadow .18s;
  background: var(--un-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.coalition-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.coalition-flag.cat-flag {
  background: var(--un-dark);
  color: #fff;
}
.coalition-flag.cat-flag .cat-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}
.coalition-flag.cat-flag svg {
  width: 48px !important;
  height: 36px;
  fill: #fff;
}

.coalition-label {
  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 400;
}

.coalition-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-left: 6px;
  font-size: 0.75rem;
  line-height: 1;
  color: var(--un-dark);
  vertical-align: 1px;
  font-weight: 400;
}
.coalition-item[aria-expanded="true"] .coalition-expand {
  background: var(--un-dark);
  color: #fff;
  border-color: var(--un-dark);
}

.coalition-detail {
  background: #f3f7fb;
  border-left: 3px solid var(--un-dark);
  padding: 1.5rem 1.75rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
  animation: slideDown .25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.coalition-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
.coalition-detail-title {
  text-transform: uppercase;
  color: var(--un-dark);
  font-weight: 700;
}
.coalition-detail-title::before { content: "* "; }

.coalition-detail-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--un-dark);
  font-size: 1.1rem;
  line-height: 1;
}
.coalition-detail-close:hover { background: #fff; }
.coalition-detail-close:focus-visible {
  outline: 2px solid var(--un-dark);
  outline-offset: 2px;
}

.coalition-detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem 1.25rem;
  padding: 0;
}
.coalition-detail-list li {
  font-size: 0.9rem;
  color: var(--un-dark);
  padding: 4px 0 4px 14px;
  position: relative;
  line-height: 1.45;
}
.coalition-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 4px;
  height: 4px;
  background: var(--un-dark);
  border-radius: 50%;
}

/* ==========================================================================
   PREVIOUS REPORTS
   ========================================================================== */

.reports-grid-reports {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  list-style: none;
}

.report-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden;
  border: 0.5px solid var(--border);
  background: #e8e7e3;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.report-card:hover {
  transform: translateY(-2px);
  border-color: var(--un-dark);
}
.report-card:focus-visible {
  outline: 3px solid #185fa5;
  outline-offset: 2px;
  transform: translateY(-2px);
}

.report-thumb {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.report-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.report-label {
  padding: 10px 12px 14px;
  font-size: 14px;
  font-weight: 400;
  color: #1a1a18;
  text-align: center;
  border-top: 3px solid var(--un-blue);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
   .social-media-icon{
    width: 34px;
    height: auto;
   }


    /* ── Top accent line ── */
    .footer-accent {
      height: 3px;
      background: #009edb;
    }

    /* ── Main footer body ── */
    footer {
      padding: 48px 40px 0;
      color: #333;
      background-color: white;

    }

    .footer-main {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      padding-bottom: 40px;
    }

    /* ── Contact column ── */
    .col-contact {
      flex: 0 0 220px;
    }

    .col-contact p {
      font-size: 14px;
      line-height: 1.6;
      color: #333;
      margin-bottom: 20px;
    }

    .btn-send {
      display: inline-block;
      padding: 10px 22px;
      background: #1a3d6e;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
    }

    .btn-send:hover { background: #0f2a50; }

    .social-icons {
      display: flex;
      gap: 14px;
      margin-top: 28px;
      align-items: center;
    }

    .social-icons a {
      color: #222;
      text-decoration: none;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: color 0.2s;
    }

    .social-icons a:hover { color: #009edb; }

    /* LinkedIn uses a bordered box in the screenshot */
    .social-icons a.linkedin svg {
      border: 2px solid currentColor;
      border-radius: 5px;
      padding: 2px;
    }

    /* ── Brand column ── */
    .col-brand {
      text-align: right;
      flex: 0 0 200px;
    }

    .undp-logo {
      display: inline-grid;
      grid-template-columns: 1fr 1fr;
      gap: 3px;
      margin-bottom: 16px;
    }

    .logo-cell {
      width: 52px;
      height: 52px;
      background: #1a3d6e;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-cell.globe {
      background: #1a3d6e;
      grid-column: 1 / -1;
      width: 107px;
      height: 52px;
    }

    .logo-cell.globe svg { width: 36px; height: 36px; }

    .logo-cell span {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -1px;
      line-height: 1;
    }

    .col-brand address {
      font-style: normal;
      font-size: 13px;
      line-height: 1.7;
      color: #333;
    }

    .col-brand address strong {
      display: block;
      font-size: 14px;
      margin-bottom: 4px;
    }

    /* ── Bottom bar ── */
    .footer-bottom {
      border-top: 1px solid #e0e0e0;
      padding: 16px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: #555;
    }

    .footer-bottom a {
      color: var(--un-dark);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-bottom a:hover { text-decoration: underline; color: #0073a8; }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }


/* ==========================================================================
   RESPONSIVE TABLES — horizontal scroll on small screens
   ========================================================================== */

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 600px) {
  .table-scroll {
    border: 1px solid var(--border);
  }
  .table-scroll table {
    min-width: 480px;
  }
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */

@media (max-width: 1024px) {
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .explore-grid .explore-card:last-child { grid-column: 1 / -1; height: 260px; }
}

@media (max-width: 880px) {
  .foreword-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .foreword-author { margin-top: 1.5rem; padding-top: 1.25rem; }
  .coalition { grid-template-columns: 1fr; gap: 2rem; }
  .coalition-intro { position: static; }
}

@media (max-width: 700px) {
  .section-wrap { padding: 8px; margin-top: 24px; }
  .hero-text { width: 100%; }
  .hero-title { font-size: 1.5rem; }
  .logo-hero { max-width: 200px; }
  .reports-grid-reports { padding: 0; }
  .col-contact{
    order: 2;
    text-align: center;
  }
  .col-brand {
    order: 1;
    text-align: center;
  }
  .footer-main {
    display: flex;
    flex-direction: column;
    padding-bottom: 40px;
    justify-content: center;
  }
  .social-icons{
    justify-content: center;
  }
  .footer-links{
    justify-content: center;
  }
  .copyright{
    margin-top: 24px;
    order: 2;
    text-align: center;
  }
  .footer-links{
    order: 1;
  }
  .hero-gif {
    width: 90%;
  }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-tile  { padding: 22px 18px; }
  .stat-number { font-size: 32px; }
  .explore-grid { grid-template-columns: 1fr; gap: 14px; }
  .explore-card,
  .explore-grid .explore-card:last-child { grid-column: auto; height: 240px; }
  .explore-card__title { font-size: 16px; line-height: 22px; }
  .MPFTO-logo { max-width: 180px; height: auto; }
}

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; }
  .coalition-grid { grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 1rem 0.5rem; }
  .coalition-flag { width: 64px; height: 44px; }
  .coalition-label { font-size: 0.78rem; }
}
