@layer components {
  .footer {
    padding: clamp(28px, 5vw, 44px) clamp(20px, 8vw, 10%);
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    justify-content: space-between;
    flex-wrap: wrap;
    color: #fff;
    background:
      linear-gradient(rgba(34, 21, 14, 0.82), rgba(34, 21, 14, 0.82)),
      url("../../img/madeira.png") center / cover no-repeat;
  }

  .footer h4 {
    color: var(--gold);
    font-family: system-ui, sans-serif;
    font-size: 1.17em;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
  }

  .footer-left,
  .footer-right {
    width: 48%;
    min-width: 280px;
  }

  .sponsors {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }

  .sponsor-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
  }

  .sponsor-item--stack {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sponsor-item-thumb {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    object-fit: contain;
  }

  .sponsor-item-thumb--large {
    width: 72px;
    height: 72px;
    flex-basis: 72px;
  }

  .social-icons a {
    margin-right: 15px;
    color: #fff;
    font-size: 40px;
    transition:
      transform 0.3s,
      color 0.3s;
  }

  .contact-info {
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .footer-copy {
    width: 100%;
    margin: 12px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.58);
    line-height: 1.7;
    letter-spacing: 0.01em;
  }

  .footer-copy p {
    margin: 0;
  }

  .footer-copy-highlight {
    color: var(--gold);
    font-weight: 700;
  }

  .footer-copy a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
  }
}
