@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #E9F1F7;
  color: #0E1220;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* ページ幅の統一。ラッパーdivは公開ビルドで除去されるため、CSSでも同じ制限を掛けて開発版と公開版の表示を揃える */
header, main, footer {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
/* 一時非表示用。インラインstyleやdisplay指定クラスにも勝つ。復活はこのクラスを外すだけ */
.is-hidden {
  display: none !important;
}
a {
  color: #0B8FD6;
  text-decoration: none;
}
a:hover {
  color: #17209B;
}
::selection {
  background: #0B8FD6;
  color: #fff;
}
.eb {
  font-family: "Space Mono", monospace;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: #0B8FD6;
}
.mono {
  font-family: "Space Mono", monospace;
}
.grot {
  font-family: "Space Grotesk", sans-serif;
}
.mb-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.mb-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #17209B;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mb-btn:hover::before {
  transform: scaleX(1);
}
.mb-btn:hover {
  color: #fff !important;
  border-color: transparent;
}
.mb-btn.cta-reg {
  background-color: #EA580C !important;
  background-image: none !important;
  color: #fff !important;
  border: 2px solid transparent !important;
}
.mb-btn.cta-reg::before {
  background: #fff;
}
.mb-btn.cta-reg:hover {
  color: #EA580C !important;
  border-color: #EA580C !important;
}
.reveal {
  transition: opacity 0.85s cubic-bezier(0.22, 0.7, 0.24, 1), transform 0.85s cubic-bezier(0.22, 0.7, 0.24, 1);
}
html.js-reveal .reveal {
  opacity: 0;
  transform: translateY(26px);
}
html.js-reveal .reveal.in {
  opacity: 1;
  transform: none;
}
html.js-reveal .reveal-text .rc {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.5s cubic-bezier(0.22, 0.7, 0.24, 1), transform 0.5s cubic-bezier(0.22, 0.7, 0.24, 1);
}
html.js-reveal .reveal-text.in .rc {
  opacity: 1;
  transform: none;
}
html.js-reveal .slide-right {
  opacity: 0;
  transform: translateX(46px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.7, 0.24, 1), transform 0.7s cubic-bezier(0.22, 0.7, 0.24, 1);
}
html.js-reveal .slide-right.in {
  opacity: 1;
  transform: none;
}
html.js-reveal .slide-right:nth-child(2) {
  transition-delay: 0.13s;
}
html.js-reveal .slide-right:nth-child(3) {
  transition-delay: 0.26s;
}
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: #17209B;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link:hover {
  color: #17209B;
}
#navToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  line-height: 0;
}
#navToggle .ico-close {
  display: none;
}
@media (max-width: 1024px) {
  header {
    padding: 14px 18px !important;
  }
  header a[aria-label="Meet-up Box"] img {
    height: 28px !important;
  }
  header .header-right {
    gap: 12px !important;
  }
  header .header-actions {
    gap: 9px;
  }
  #navToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  header .header-actions a.mb-btn {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }
  header nav#mainNav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(23, 32, 155, 0.1);
    box-shadow: 0 14px 26px -14px rgba(23, 32, 155, 0.3);
    padding: 8px 24px 18px;
    display: none !important;
  }
  header nav#mainNav.open {
    display: flex !important;
  }
  header nav#mainNav a {
    padding: 13px 4px;
    font-size: 15px;
  }
  #navToggle[aria-expanded="true"] .ico-menu {
    display: none;
  }
  #navToggle[aria-expanded="true"] .ico-close {
    display: inline;
  }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
  }
  .product-grid > div {
    grid-row: auto !important;
  }
  .videos-grid {
    grid-template-columns: 1fr !important;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
    gap: 14px;
  }
  .stats-grid > div {
    border-right: none !important;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(23, 32, 155, 0.05), 0 0 0 1px rgba(23, 32, 155, 0.08);
    padding: 22px 18px !important;
    text-align: center;
  }
  .stats-grid .grot {
    font-size: 30px !important;
  }
}
@media (max-width: 420px) {
  header a[aria-label="Meet-up Box"] img {
    height: 24px !important;
  }
  header .header-actions a.mb-btn {
    padding: 7px 11px !important;
    font-size: 12px !important;
  }
  header .header-actions {
    gap: 7px !important;
  }
  header .header-right {
    gap: 9px !important;
  }
}
@media (max-width: 768px) {
  [data-content] {
    padding: 56px 22px !important;
  }
}
@media (max-width: 768px) {
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
/* ===== FLOATING CTA ===== */
#floatCta {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom,0px));
  z-index: 58;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 100px;
  background: #EA580C;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(154, 52, 18, 0.35);
  opacity: 0;
  transform: translateY(14px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s, visibility 0s 0.35s;
}
#floatCta.show {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s, visibility 0s 0s;
}
#floatCta:hover {
  box-shadow: 0 10px 28px rgba(154, 52, 18, 0.45);
}
#floatCta:focus-visible {
  outline: 3px solid #8FC7E8;
  outline-offset: 3px;
}
#floatCta .fc-arrow {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#floatCta:hover .fc-arrow {
  transform: translateX(3px);
}
@media (max-width: 768px) {
  #floatCta {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom,0px));
    padding: 11px 18px;
    font-size: 13px;
    gap: 6px;
  }
}
/* ===== STATS AS-OF NOTE ===== */
.stats-asof {
  text-align: right;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #000000;
}
@media (max-width: 768px) {
  .stats-asof {
    margin-top: 8px;
  }
}
/* ===== STATS DIVIDERS（上下1文字分あけた仕切り線） ===== */
.stats-grid > div {
  position: relative;
}
.stats-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1em;
  bottom: 1em;
  width: 1px;
  background: rgba(163, 177, 198, 0.35);
}
@media (max-width: 768px) {
  .stats-grid > div::after {
    display: none;
  }
}
/* ===== RELEASE LIST ===== */
/* ===== ARTICLE ARCHIVE ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 76px;
}
.article-card {
  display: block;
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 22px;
  box-shadow: 0 2px 8px rgba(23, 32, 155, 0.05), 0 0 0 1px rgba(23, 32, 155, 0.08);
  color: #17209B;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.article-card:hover {
  color: #17209B;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23, 32, 155, 0.14), 0 0 0 1px rgba(23, 32, 155, 0.08);
}
.article-thumb {
  position: relative;
  aspect-ratio: 1.7777777778;
  border-radius: 11px;
  overflow: hidden;
  background: #E3EEF9;
  margin-bottom: 15px;
}
.article-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #17209B;
}
@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 56px;
  }
  .article-card {
    padding: 12px 12px 16px;
    border-radius: 14px;
  }
  .article-thumb {
    border-radius: 9px;
    margin-bottom: 11px;
  }
  .article-title {
    font-size: 14px;
    line-height: 1.65;
  }
}
/* ===== EXHIBITORS GRID ===== */
.ex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ex-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(23, 32, 155, 0.05), 0 0 0 1px rgba(23, 32, 155, 0.08);
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}
.ex-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(23, 32, 155, 0.14), 0 0 0 1px rgba(23, 32, 155, 0.08);
}
.ex-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ex-no {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: none;
  background: linear-gradient(135deg, #17209B, #0B8FD6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.ex-tag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #17209B;
  background: rgba(23, 32, 155, 0.07);
  border: 1px solid rgba(23, 32, 155, 0.14);
  border-radius: 100px;
  padding: 4px 12px;
  white-space: nowrap;
}
.ex-name {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #68727F;
}
.ex-comment {
  font-size: 16px;
  line-height: 1.95;
  color: #1E252E;
  border-left: 3px solid rgba(11, 143, 214, 0.4);
  padding-left: 13px;
}
@media (max-width: 1024px) {
  .ex-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .ex-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
/* ===== BIZWEEK LIMITED FEATURES ===== */
.bw-box {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 42fr 58fr;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(23, 32, 155, 0.12), 0 10px 30px rgba(23, 32, 155, 0.08);
}
.bw-left {
  background: #17209B;
  padding: 48px 44px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.bw-eyebrow {
  font-family: "Space Mono", monospace;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.bw-title {
  font-weight: 900;
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.32;
  letter-spacing: 0.02em;
  margin: 20px 0 22px;
  color: #fff;
}
.bw-lead {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.bw-left-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.bw-left .bw-lead {
  margin-bottom: 44px;
}
.bw-period-label {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}
.bw-period-date {
  font-family: "Space Grotesk", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.02em;
  color: #fff;
}
.bw-right {
  background: #fff;
  padding: 30px 38px 14px;
  display: flex;
  flex-direction: column;
}
.bw-index-head {
  display: flex;
  justify-content: space-between;
  font-family: "Space Mono", monospace;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #68727F;
  padding-bottom: 14px;
  border-bottom: 2px solid #181878;
}
.bw-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 21px 6px;
  border-bottom: 1px solid rgba(23, 32, 155, 0.15);
  color: #0E1220;
  transition: background 0.25s;
}
.bw-row:last-child {
  border-bottom: none;
}
.bw-row.is-active {
  background: #F4F8FB;
}
.bw-no {
  font-family: "Space Mono", monospace;
  font-weight: 700;
  font-size: 13px;
  color: #17209B;
  flex: none;
  width: 30px;
}
.bw-row-main {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.bw-row-title {
  font-weight: 700;
  font-size: 18px;
  color: #0E1220;
}
.bw-row-sub {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #68727F;
}
.bw-row-title2 {
  flex-basis: 100%;
  font-weight: 700;
  font-size: 16.5px;
  color: #0E1220;
}
@media (max-width: 1024px) {
  .bw-box {
    grid-template-columns: 1fr;
  }
  .bw-left {
    padding: 38px 30px;
  }
  .bw-left .bw-lead {
    margin-bottom: 34px;
  }
  .bw-right {
    padding: 26px 26px 10px;
  }
}
@media (max-width: 768px) {
  .bw-box {
    border-radius: 20px;
  }
  .bw-left {
    padding: 30px 22px;
  }
  .bw-title {
    font-size: 28px;
    margin: 16px 0 18px;
  }
  .bw-left .bw-lead {
    margin-bottom: 30px;
  }
  .bw-left-foot {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .bw-right {
    padding: 20px 18px 8px;
  }
  .bw-row {
    gap: 14px;
    padding: 17px 2px;
  }
  .bw-row-main {
    flex-direction: column;
    gap: 3px;
  }
  .bw-row-title {
    font-size: 15px;
  }
}
/* ===== CHALLENGE / SOLUTION ===== */
.issue-panel {
  background: #F4F8FB;
  border-radius: 28px;
  padding: 46px 40px 50px;
  box-shadow: 0 2px 8px rgba(23, 32, 155, 0.05), 0 0 0 1px rgba(23, 32, 155, 0.08);
}
.issue-title {
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
  color: #0E1220;
  margin: 0 0 40px;
  padding-bottom: 14px;
  position: relative;
}
.issue-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  border-radius: 2px;
  background: #0B8FD6;
}
.issue-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(200px, 24vw, 300px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.issue-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.issue-bubble {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(23, 32, 155, 0.06), 0 0 0 1px rgba(23, 32, 155, 0.06);
}
.issue-bubble::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 10px solid transparent;
}
.issue-bubble.b-l::after {
  right: -19px;
  border-left-color: #fff;
}
.issue-bubble.b-r::after {
  left: -19px;
  border-right-color: #fff;
}
.issue-bubble p {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: #1E252E;
  margin: 0 0 12px;
}
.issue-marks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.issue-mark {
  display: inline-block;
  background: #17209B;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  padding: 5px 14px;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .issue-mark {
    font-size: 16px;
    padding: 4px 12px;
  }
}
.issue-illust {
  border-radius: 20px;
  overflow: hidden;
}
.issue-arrow {
  width: 0;
  height: 0;
  margin: 34px auto 30px;
  border-left: 26px solid transparent;
  border-right: 26px solid transparent;
  border-top: 22px solid #A9C3DD;
}
.solve-title {
  font-weight: 900;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
  color: #17209B;
  letter-spacing: 0.01em;
  margin: 0 0 44px;
}
.solve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.solve-item {
  text-align: center;
}
.solve-circle {
  width: clamp(180px, 21vw, 260px);
  aspect-ratio: 1;
  margin: 0 auto 26px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid rgba(11, 143, 214, 0.45);
}
.solve-circle img {
  width: 70% !important;
  height: 70% !important;
  margin: 15% !important;
  object-fit: contain;
}
.solve-item h4 {
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  color: #0E1220;
  margin: 0 0 16px;
}
.solve-item p {
  font-size: 16px;
  line-height: 1.95;
  color: #000000;
  margin: 0;
}
@media (max-width: 900px) {
  .issue-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .issue-bubble::after {
    display: none;
  }
  .issue-illust {
    width: min(280px, 100%);
    justify-self: center;
    order: -1;
  }
  .solve-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .issue-panel {
    padding: 32px 20px 36px;
    border-radius: 20px;
  }
  .issue-title {
    font-size: 23px;
    margin-bottom: 32px;
  }
  .issue-title::after {
    width: 150px;
  }
  .solve-title {
    font-size: 24px;
    margin-bottom: 34px;
  }
}
/* ===== CO-CREATION THEME / 7 MOVES ===== */
.move7-banner {
  color: #17209B;
  font-weight: 900;
  font-size: 38px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}
.move7-lead {
  font-size: 17px;
  line-height: 2.05;
  color: #000000;
  margin: 34px 0 54px;
}
.move7-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 24px;
}
.move7-item {
  width: calc(25% - 18px);
  text-align: center;
}
.move7-icon {
  width: min(190px, 100%);
  margin: 0 auto 10px;
  border-radius: 16px;
  overflow: hidden;
}
.move7-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #000000;
  margin: 0;
}
@media (max-width: 900px) {
  .move7-item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 560px) {
  .move7-grid {
    gap: 26px 14px;
  }
  .move7-item {
    width: calc(50% - 7px);
  }
  .move7-icon {
    width: min(140px, 100%);
    margin-bottom: 8px;
  }
  .move7-item p {
    font-size: 13.5px;
    line-height: 1.8;
  }
}
/* ===== 2 MATCHING METHODS ===== */
.match-panel {
  background: #EEF3FA;
  border-radius: 24px;
  padding: 38px 34px 42px;
  box-shadow: 0 0 0 1px rgba(23, 32, 155, 0.07);
}
.match-panel-title {
  font-weight: 900;
  font-size: 25px;
  line-height: 1.5;
  color: #0E1220;
  margin: 0 0 28px;
}
.match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.match-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid #0B8FD6;
}
.match-card.mc-theme {
  border-color: #17209B;
}
.match-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: #0B8FD6;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}
.match-card.mc-theme .match-head {
  background: #17209B;
}
.match-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 24px 26px;
}
.match-desc {
  font-weight: 700;
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin: 0 0 20px;
  min-height: 3.6em;
}
/* 2行分を確保して左右のイラスト位置をそろえる */
.match-illust {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 22px;
}
.match-rec {
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: 0.04em;
  color: #0B8FD6;
  margin: auto 0 12px;
}
.match-card.mc-theme .match-rec {
  color: #17209B;
}
.match-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.match-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #000000;
}
.match-list svg {
  flex: none;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .match-grid {
    grid-template-columns: 1fr;
  }
  .match-panel {
    padding: 28px 20px 32px;
    border-radius: 20px;
  }
  .match-panel-title {
    font-size: 21px;
  }
  .match-desc {
    font-size: 16px;
  }
  .match-list li {
    font-size: 15px;
  }
}
/* ===== mobile side gutters ===== */
@media (max-width: 768px) {
  section:not(.kv-hero) {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  footer {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .issue-panel {
    padding-left: 14px;
    padding-right: 14px;
  }
  .match-panel {
    padding-left: 14px;
    padding-right: 14px;
  }
  .match-body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 420px) {
  section:not(.kv-hero) {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
/*# sourceMappingURL=./top_2026.css.map */