/* ws-footer.css — extracted from artefact 05-footer-ws.html, generated by build_ws_footer.py */

/* ── Footer base ───────────────────────────────────────────────────── */
  .ws-footer {
    background: #EFEBE5;
    color: #292929;
    padding: 60px 0 32px;
    font-family: 'soleilRegular', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* ── Logo ──────────────────────────────────────────────────────────── */
  .ws-footer__logo { text-align: center; }
  .ws-footer__logo a {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .ws-footer__logo a:hover { opacity: 0.75; }
  .ws-footer__logo img {
    width: 370px;
    height: 60px;
    object-fit: contain;
    display: block;
  }

  /* ── Container (left contacts / right links + social) ──────────────── */
  .ws-footer__container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 0 100px;
    gap: 24px;
    width: 100%;
    max-width: 1440px;
  }
  .ws-footer__left {
    display: flex; flex-direction: column;
    align-items: flex-start; gap: 12px;
    flex: 1;
  }

  /* ── Contact row ───────────────────────────────────────────────────── */
  .ws-footer__row {
    display: flex; flex-direction: row;
    align-items: center; gap: 12px;
    width: 100%;
  }
  .ws-footer__row svg {
    width: 22px; height: 22px;
    flex-shrink: 0;
    fill: #292929; stroke: none;
  }
  .ws-footer__row svg.stroke-icon {
    fill: none; stroke: #292929; stroke-width: 1.4;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .ws-footer__link {
    font-family: 'soleilRegular', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #292929;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .ws-footer__link:hover { color: #976338; }
  .ws-footer__link:focus-visible { outline: 2px solid #976338; outline-offset: 3px; border-radius: 2px; }

  /* ── Right ─────────────────────────────────────────────────────────── */
  .ws-footer__right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex: 1;
  }
  .ws-footer__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
  }
  .ws-footer__legal {
    font-family: 'soleilRegular', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: #292929;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .ws-footer__legal:hover { color: #976338; }

  .ws-footer__social-col {
    display: flex; flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
  }

  /* ── Language row (ES | EN | RU) ───────────────────────────────────── */
  .ws-footer__lang {
    display: flex; flex-direction: row;
    align-items: center; gap: 8px;
  }
  .ws-footer__lang a {
    font-family: 'soleilRegular', sans-serif;
    font-size: 16px; line-height: 22px;
    color: #292929; text-decoration: none;
    transition: opacity 0.2s ease, color 0.2s ease;
  }
  .ws-footer__lang a.is-inactive { opacity: 0.5; }
  .ws-footer__lang a.is-inactive:hover { opacity: 1; color: #976338; }
  .ws-footer__lang a.is-unavailable {
    opacity: 0.35;
    pointer-events: none;
    text-decoration: line-through;
  }
  .ws-footer__lang a.is-unavailable:hover { opacity: 0.35; color: #292929; }
  .ws-footer__lang-divider {
    width: 0; height: 22px;
    border-right: 1px solid rgba(41,41,41,0.4);
  }

  /* ── Social icons ──────────────────────────────────────────────────── */
  .ws-footer__social {
    display: flex; flex-direction: row;
    align-items: center; gap: 12px;
  }
  .ws-footer__social a {
    display: flex; align-items: center; justify-content: center;
    color: #292929;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 32px; height: 32px;
    border-radius: 50%;
  }
  .ws-footer__social a:hover { color: #976338; }
  .ws-footer__social a:focus-visible { outline: 2px solid #976338; outline-offset: 2px; }
  .ws-footer__social svg {
    width: 22px; height: 22px;
    fill: currentColor;
  }

  /* ── Bottom ────────────────────────────────────────────────────────── */
  .ws-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1440px;
    padding: 0 20px;
  }
  .ws-footer__divider {
    width: 100%;
    border-top: 1px solid rgba(41,41,41,0.2);
  }
  .ws-footer__copy {
    font-family: 'soleilRegular', sans-serif;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #292929;
    margin: 0;
    opacity: 0.85;
  }

  /* ── Mobile ────────────────────────────────────────────────────────── */
  @media (max-width: 768px) {
    .ws-footer { padding: 48px 20px 24px; gap: 32px; }
    .ws-footer__logo img { width: 240px; height: auto; }
    .ws-footer__container {
      flex-direction: column;
      padding: 0;
      gap: 28px;
      align-items: flex-start;
    }
    .ws-footer__right {
      flex-direction: column;
      align-items: flex-start;
      gap: 24px;
    }
    .ws-footer__links,
    .ws-footer__social-col { margin: 0; }
  }
