/* Tramoya Broadcast - footer */

.site-footer {
  background: var(--primary);
  color: rgba(242, 239, 232, 0.78);
  padding: 80px 0 32px;
  margin-top: 80px;
}
.site-footer a {
  color: rgba(242, 239, 232, 0.92);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .brand { color: var(--bg); }
.footer-brand .brand__suffix { color: rgba(242,239,232,0.6); }
.footer-brand p {
  margin: 20px 0 0;
  font-size: 0.92rem;
  color: rgba(242,239,232,0.65);
  max-width: 38ch;
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--bg);
  margin: 0 0 20px;
  font-weight: 700;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(242,239,232,0.14);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(242,239,232,0.55);
}
.footer-bottom__legal { display: flex; flex-wrap: wrap; gap: 22px; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 64px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
