/* Home — FACEIT-style match focus */
.page-home-match .hm-hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: end;
  min-height: min(72vh, 640px);
  padding-top: 48px;
  padding-bottom: 40px;
}
@media (max-width: 960px) {
  .page-home-match .hm-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }
}

.hm-hero-copy h1 {
  margin: 8px 0 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  line-height: 1.05;
}
.hm-hero-copy .lede {
  max-width: 46ch;
  color: #c4c4c8;
}
.hm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hm-queue-card {
  border: 1px solid rgba(232,163,60,.4);
  border-radius: 10px;
  background: rgba(14, 14, 18, 0.88);
  padding: 18px 18px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
}
.hm-queue-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}
.hm-queue-head strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hm-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hm-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: .95rem;
  color: #d1d5db;
}
.hm-step-n {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(232,163,60,.15);
  border: 1px solid rgba(232,163,60,.45);
  color: #e8a33c;
  font-family: "JetBrains Mono", monospace;
  font-size: .78rem;
  font-weight: 700;
}
.hm-queue-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 16px;
}
.hm-queue-note {
  margin: 10px 0 0;
  font-size: .82rem;
}

.hm-faction-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 720px) {
  .hm-faction-grid { grid-template-columns: 1fr; }
}
.hm-faction {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border: 1px solid #000;
  border-radius: 8px;
  background: rgb(26 26 30 / 0.92);
}
.hm-faction img { width: 48px; height: 48px; object-fit: contain; }
.hm-faction strong {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 1.15rem;
}

.hm-public-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid #2a2a30;
  border-radius: 8px;
  background: #121218;
}
.hm-public-card h2 {
  margin: 4px 0 6px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home-match .clan-cta-section { padding-top: 8px; }

.hm-match-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 36px !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem) !important;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(232, 163, 60, 0.35);
}
.page-home-match .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}
