/* ── Copa 2026 Guide Page ── */
body.page-template-page-copa-2026-concacaf-php {
  background: #f8fafc;
  color: #0f172a;
}

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

.tmls-copa {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.tmls-copa__header {
  text-align: center;
  margin-bottom: 3rem;
}
.tmls-copa__title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 .75rem;
}
.tmls-copa__sub {
  font-size: 1.05rem;
  color: #64748b;
  margin: 0;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.6;
}
.tmls-copa__section {
  margin-bottom: 3rem;
}
.tmls-copa__section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 .5rem;
  padding-bottom: .75rem;
  border-bottom: 3px solid #00c97b;
}
.tmls-copa__section-desc {
  font-size: .95rem;
  color: #64748b;
  margin: 0 0 1.5rem;
}

/* Host Nations */
.tmls-copa__hosts {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tmls-copa__host-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  background: #fff;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
  min-width: 180px;
}
.tmls-copa__host-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.tmls-copa__host-logo {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tmls-copa__host-logo img {
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}
.tmls-copa__host-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  text-align: center;
}
.tmls-copa__host-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  background: #00c97b;
  padding: .2rem .6rem;
  border-radius: 4px;
}

/* Qualified Teams Grid */
.tmls-copa__teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.tmls-copa__team-card {
  display: flex;
  align-items: center;
  gap: .75rem;
  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;
  position: relative;
}
.tmls-copa__team-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,.1);
}
.tmls-copa__team-logo {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tmls-copa__team-logo img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}
.tmls-copa__team-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
}
.tmls-copa__team-name {
  font-size: .9rem;
  font-weight: 600;
  color: #0f172a;
}
.tmls-copa__host-tag {
  position: absolute;
  top: .5rem;
  right: .5rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #00c97b;
  background: #ecfdf5;
  padding: .1rem .4rem;
  border-radius: 4px;
}

/* Articles Grid */
.tmls-copa__articles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.tmls-copa__article {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .15s;
}
.tmls-copa__article:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.tmls-copa__article-img {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: #e2e8f0;
}
.tmls-copa__article-body {
  padding: 1rem 1.25rem;
}
.tmls-copa__article-title {
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 .5rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tmls-copa__article-date {
  font-size: .75rem;
  color: #94a3b8;
}

/* Info Grid */
.tmls-copa__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.tmls-copa__info-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  text-align: center;
}
.tmls-copa__info-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #00c97b;
  margin-bottom: .5rem;
}
.tmls-copa__info-value {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
}
