.rugby-page {
  padding-bottom: 64px;
}

.rugby-hero-visual {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 32px 24px 0;
  overflow: hidden;
}

.rugby-hero-visual img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  display: block;
}

.rugby-pull-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 0;
}

.rugby-pull-layout h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text);
  font-weight: 700;
  margin-bottom: 24px;
}

.rugby-pull-quote {
  float: right;
  width: min(280px, 100%);
  margin: 0 0 24px 32px;
  background: var(--nav-bg);
  color: #FFFFFF;
  padding: 28px;
  border-radius: 24px;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 600;
}

.rugby-pull-layout h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 28px 0 12px;
  clear: both;
  font-weight: 700;
}

.rugby-pull-layout p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.rugby-markets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
  clear: both;
}

.rugby-market-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
}

.rugby-market-card h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.rugby-market-card p {
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 768px) {
  .rugby-pull-quote {
    float: none;
    width: 100%;
    margin: 0 0 24px;
  }

  .rugby-markets {
    grid-template-columns: 1fr;
  }

  .rugby-hero-visual {
    padding: 24px 16px 0;
  }

  .rugby-hero-visual img {
    max-height: 200px;
  }
}
