/* ── Clubes Page ── */
body.page-template-page-clubes-php {
  background: #f8fafc;
  color: #0f172a;
}

body.page-template-page-clubes-php .site-content {
  width: 100%;
  max-width: 100%;
}

.tmls-clubes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.tmls-clubes__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.tmls-clubes__title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .5rem;
}
.tmls-clubes__sub {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
}
.tmls-clubes__conf {
  margin-bottom: 3rem;
}
.tmls-clubes__conf-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid #00c97b;
}
.tmls-clubes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.tmls-clubes__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
  position: relative;
}
.tmls-clubes__card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.tmls-clubes__card-logo {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tmls-clubes__card-logo img {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}
.tmls-clubes__card-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.tmls-clubes__card-info {
  flex: 1;
  min-width: 0;
}
.tmls-clubes__card-name {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 .25rem;
  line-height: 1.3;
}
.tmls-clubes__card-meta {
  display: block;
  font-size: .8rem;
  color: #64748b;
  line-height: 1.4;
}
.tmls-clubes__card-stadium::before {
  content: "🏟 ";
}
.tmls-clubes__card-rank {
  position: absolute;
  top: .75rem;
  right: .75rem;
  font-size: .7rem;
  font-weight: 700;
  color: #00c97b;
  background: #ecfdf5;
  padding: .15rem .5rem;
  border-radius: 6px;
}
