/*
 * This file is part of the UX SDC Bundle
 *
 * (c) Jozef Môstka <https://github.com/tito10047/ux-sdc>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

@layer components {
  .mirror-footer {
    position: relative;
    padding-block: var(--space-2xl);
    text-align: center;
    background: #0b0d17;
    color: #ffffff;
    overflow: hidden;

    & .mirror-footer__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.3;
    }

    & .mirror-footer__content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin-inline: auto;
    }

    & .mirror-footer__title {
      font-family: var(--font-serif);
      font-size: var(--size-step-3);
      margin-bottom: var(--space-xl);
    }

    & .mirror-footer__actions {
      display: flex;
      justify-content: center;
      gap: var(--space-m);
      flex-wrap: wrap;
      margin-bottom: var(--space-2xl);
    }

    & .mirror-footer__logo {
      margin-top: var(--space-2xl);
      opacity: 0.5;

      & img {
        width: 150px;
        height: auto;
        margin-inline: auto;
        filter: grayscale(1) brightness(2);
      }
    }
  }
}
