/**
 * @file
 * Footer Styling.
 */

.site-footer {
  margin-bottom: 1rem;
  padding: 0;

  .layout-container {
    padding: 0 15px;
  }

  .region {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    padding: 1rem;

    > * {
      flex: 1 0;
    }
  }

  blockquote {
    color: #555;
  }

  .content {
    color: #c0c0c0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.857em;

    a,
    a.is-active {
      color: #fcfcfc;
      color: rgba(255, 255, 255, 0.8);
    }

    a:hover,
    a:focus {
      color: #fefefe;
      color: rgba(255, 255, 255, 0.95);
    }
  }


  .block {
    margin: 20px 0;
    padding: 10px;
  }

  table {
    font-size: 1em;
  }

  tr td,
  tr th {
    border-color: #555;
    border-color: rgba(255, 255, 255, 0.18);
  }

  tr.odd {
    background-color: transparent;
  }

  tr.even {
    background-color: #2c2c2c;
    background-color: rgba(0, 0, 0, 0.15);
  }
}

/* Footer Top Styling. */
.site-footer__top {
  h2 {
    border-bottom: 1px solid #555;
    border-color: rgba(255, 255, 255, 0.15);
    font-size: 1em;
    margin-bottom: 0;
    padding-bottom: 3px;
    text-transform: uppercase;
  }

  .content {
    margin-top: 0;
    padding: calc(var(--bs-gutter-x) * .5);
  }

  p {
    margin-top: 1em;
  }
}

.site-footer__top .block,
.site-footer__bottom .block {
  border: none;
  margin: 0;
  padding: 0;
}

/* Footer Bottom Styling. */
.site-footer__bottom {
  .block {
    h2 {
      margin: 0;
    }
  }

  .content {
    margin-top: 0;
    padding: calc(var(--bs-gutter-x) * .5);
  }
}


