.rebot-common .hero {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--panel-radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(6px);
  padding: 24px 26px;
  margin-bottom: 18px;
}

.rebot-common .hero-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.rebot-common .hero-copy {
  min-width: 0;
}

.rebot-common .hero-copy h2 {
  margin: 0 0 8px;
  font-size: 36px;
}

.rebot-common .hero-copy p {
  margin: 0;
  color: rgba(15, 23, 42, 0.75);
  line-height: 1.55;
}

.rebot-common .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.rebot-common .club-context {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.rebot-common .club-context-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15, 23, 42, 0.55);
  font-weight: 700;
}

.rebot-common .club-context-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  color: var(--ink);
}

.rebot-common .club-context-meta {
  margin: 0;
  font-size: 13px;
  color: rgba(15, 23, 42, 0.68);
}

.rebot-common .club-context-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.rebot-common .club-context-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.rebot-common .club-context-link:hover,
.rebot-common .club-context-link:focus-visible {
  background: rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.16);
}

.rebot-common .club-context-link.is-active {
  background: rgba(251, 154, 60, 0.95);
  border-color: rgba(15, 23, 42, 0.16);
  color: #111827;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.rebot-common .context-card {
  background: var(--card);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--panel-radius);
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(6px);
  padding: 14px;
}

.rebot-common .hero-main {
  margin-top: 12px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 14px;
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
}

.rebot-common .hero-club {
  display: flex;
  align-items: stretch;
  gap: 14px;
  min-width: 0;
}

.rebot-common .club-logo {
  width: clamp(44px, 5.4vw, 58px);
  height: clamp(44px, 5.4vw, 58px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(28, 25, 23, 0.22);
  background: var(--card);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  padding: 2px;
  flex: 0 0 auto;
  align-self: center;
  overflow: hidden;
  display: block;
}

.rebot-common .club-name {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.rebot-common .dateline {
  margin: 3px 0 0;
  color: rgba(15, 23, 42, 0.68);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rebot-common .page-freshness {
  margin-top: 10px;
  color: rgba(15, 23, 42, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.rebot-common .scoreboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px 10px;
}

.rebot-common .score-team {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--ink-soft, rgba(15, 23, 42, 0.72));
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.rebot-common .score-value {
  border-top: 1px solid var(--border);
  padding-top: 8px;
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}

.rebot-common .muted {
  color: rgba(15, 23, 42, 0.68);
  margin: 0;
}

@media (max-width: 860px) {
  .rebot-common .hero-head {
    flex-direction: column;
  }

  .rebot-common .hero-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .rebot-common .hero {
    padding: 20px 18px;
  }

  .rebot-common .hero-copy h2 {
    font-size: 30px;
  }

  .rebot-common .club-logo {
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
}
