/* Футер: без наложения текста на узких экранах.
   Базово .footer__confid с position:absolute — выпадает из flex и перекрывает соседей. */
@media only screen and (max-width: 768px) {
  .footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0.6rem;
    padding-left: 12px;
    padding-right: 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .footer__bottom .footer__copytr,
  .footer__bottom .footer__confid,
  .footer__bottom .footer__developer {
    position: static;
    left: auto;
    right: auto;
    -webkit-transform: none;
    transform: none;
    width: 100%;
    max-width: 100%;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .footer__bottom .footer__copytr {
    margin-bottom: 0;
  }

  .footer__bottom .footer__copytr p,
  .footer__bottom .footer__developer p {
    margin: 0;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 18px;
  }

  .footer__bottom .footer__confid {
    display: inline-block;
    margin: 1.35rem 0;
    padding: 0 4px;
  }

  .footer__bottom .footer__developer {
    margin-top: 0;
  }
}
.footer__confid::before {
  display: none;
}