/* Подпись веб-студии в нижней строке футера.

   Образец был с тёмного сайта; композиция сохранена (оранжевая иконка кода,
   приглушённый текст, жирный домен с оранжевым подчёркиванием), а цвета
   подобраны под светлый футер Diva — светлый домен на #fff6ed не читался бы. */

.gift-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}

/* a.dev-credit, а не .dev-credit: в gifts.css стоит .gift-footer a:not(.gift-brand)
   с той же специфичностью (0,2,1) — выигрываем порядком подключения. */
.gift-footer a.dev-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #947e88;
  font-size: 12px;
  text-decoration: none;
}

.dev-credit__icon {
  display: inline-flex;
  color: #ee7a35;
}

.dev-credit__brand {
  position: relative;
  padding-bottom: 3px;
  color: #4b3341;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: color .2s ease;
}

.dev-credit__brand::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: #ee7a35;
}

.gift-footer a.dev-credit:hover { color: #766570; }
.gift-footer a.dev-credit:hover .dev-credit__brand { color: #ee7a35; }

.gift-footer a.dev-credit:focus-visible {
  outline: 2px solid #ee7a35;
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 760px) {
  .gift-footer__bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
