/* Единый подвал — на всех пользовательских страницах одинаково */

.yuya-footer {
  border-top: 1px solid rgba(232, 223, 208, 0.08);
  background: #161210;
  color: rgba(232, 223, 208, 0.72);
  padding: 32px 0 36px;
  font-size: 14px;
  font-family: "PT Sans", sans-serif;
  line-height: 1.45;
  margin-top: auto;
}

.yuya-footer__wrap {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 28px 40px;
  align-items: start;
}

@media (max-width: 800px) {
  .yuya-footer__wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 860px) {
  .yuya-footer {
    padding: 28px 0 20px;
    font-size: 13px;
  }
  .yuya-footer__title { font-size: 15px; }
  .yuya-footer__brand {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }
  .yuya-footer__brand img {
    width: 40px;
    height: 40px;
  }
}

.yuya-footer__brand {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.yuya-footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.45);
  display: block;
}

.yuya-footer__brand-text {
  min-width: 0;
}

.yuya-footer__title {
  margin: 0 0 6px;
  color: #E8DFD0;
  font-family: "Literata", Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.yuya-footer__meta {
  margin: 0;
  font-size: 13px;
  color: rgba(232, 223, 208, 0.65);
  max-width: 36ch;
}

.yuya-footer__col-title {
  margin: 0 0 10px;
  color: #E8DFD0;
  font-family: "Literata", Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.yuya-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}

.yuya-footer__col a {
  color: rgba(232, 223, 208, 0.72);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
}

.yuya-footer__col a:hover {
  color: #D4A017;
}

/* На узких auth/sell — те же 3 колонки, но контейнер уже не режем криво */
.yuya-footer--compact .yuya-footer__wrap {
  width: min(1180px, calc(100% - 32px));
}
