/* ==============================================
   Footer — navy bg, bone text, gold hover
   ============================================== */
.ch-ft {
  background: var(--primary-dark);
  color: rgba(240, 230, 207, 0.75);
  padding: 56px 0 0;
}

.ch-ft-inner {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

/* ==============================================
   Brand block
   ============================================== */
.ch-ft-brand {
  display: flex;
  flex-direction: column;
}

.ch-ft-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.ch-ft-logo-img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 56px;
  object-fit: contain;
}

.ch-ft-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.ch-ft-team-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f5f1e6;
  display: block;
}

.ch-ft-brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 230, 207, 0.6);
  display: block;
  margin-top: 4px;
}

.ch-ft-blurb {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(240, 230, 207, 0.6);
  max-width: 36ch;
  margin: 18px 0;
}

/* ==============================================
   Social squares
   ============================================== */
.ch-ft-social {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.ch-ft-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 230, 207, 0.2);
  color: rgba(240, 230, 207, 0.7);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.ch-ft-social a:hover {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* ==============================================
   Nav columns
   ============================================== */
.ch-ft-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}

.ch-ft-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ch-ft-col li {
  margin: 0;
  padding: 0;
}

.ch-ft-col a {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(240, 230, 207, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.ch-ft-col a:hover {
  color: var(--secondary);
}

/* ==============================================
   Bottom bar
   ============================================== */
.ch-ft-bottom {
  max-width: var(--content-max-width);
  margin: 56px auto 0;
  padding: 22px 32px;
  border-top: 1px solid rgba(240, 230, 207, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240, 230, 207, 0.45);
}

.ch-ft-copy,
.ch-ft-credit {
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  color: inherit;
}

/* ==============================================
   League affiliation logos (brand block)
   ============================================== */
.ch-ft-leagues {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(240, 230, 207, 0.12);
}

.ch-ft-league-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.ch-ft-league-link:hover {
  opacity: 1;
}

.ch-ft-league-img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.ch-ft-league-img--chip {
  background: #fff;
  padding: 5px;
  border-radius: 6px;
  box-sizing: content-box;
}
