// FOOTER (базовые стили)
.footer {
  padding: 8px 0;
  background: #9c9c9c;

  flex-shrink: 0;

  &__container {
    max-width: 390px;
    text-align: center;
    margin: 0 auto;

    p {
      font-size: 11px;
      font-weight: 400;
      color: #333333;
      opacity: 0.8;
      margin: 0;
      line-height: 1.4;

      a {
        color: #333333;
        text-decoration: underline;
        transition: color 0.2s ease;

        &:hover {
          color: #000000;
        }
      }
    }
  }
}
