.ra-league-header {
  background: var(--ct-background-light, #f9fafc);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,.05);
}

.ra-lh-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.ra-lh-logo img {
  width: 72px;
  height: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: white;
}

.ra-lh-info {
  flex: 1;
}

.ra-lh-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.ra-lh-sub {
  font-size: .9rem;
  color: #666;
  margin-bottom: .5rem;
}

.ra-lh-progress {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: #444;
}
.ra-lh-progress .bar {
  flex: 1;
  height: 6px;
  background: #e6e6e6;
  border-radius: 3px;
  overflow: hidden;
}
.ra-lh-progress .fill {
  height: 100%;
  background: #276ef1;
}

.ra-lh-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}
.ra-tag {
  background: #f1f1f1;
  border-radius: 20px;
  padding: .3rem .8rem;
  font-size: .8rem;
}

.ra-lh-nav {
  margin-top: 1rem;
  border-top: 1px solid #ddd;
}
.ra-lh-nav ul {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: .8rem 0 0;
  list-style: none;
}
.ra-lh-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.ra-lh-nav li.active a {
  color: #276ef1;
  border-bottom: 2px solid #276ef1;
  padding-bottom: .2rem;
}
