.support-contact {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid #f1cd93;
  border-radius: 8px;
  background: #fff9ed;
  color: #5c431b;
}

.support-contact-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25a86a;
  color: #fff;
}

.support-contact strong {
  display: block;
  font-size: 12px;
}

.support-contact p {
  margin: 4px 0 10px;
  font-size: 11px;
  line-height: 1.45;
}

.support-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 6px;
  background: #168d58;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.support-contact a:hover {
  background: #107447;
}

@media (max-width: 760px) {
  .support-contact {
    margin-top: 16px;
  }

  .support-contact a {
    width: 100%;
    justify-content: center;
  }
}

.sidebar-footer {
  color: inherit;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.sidebar-footer:hover {
  background: #1b2741;
  border-color: #3c5277;
  color: #fff;
}

.sidebar-footer:focus-visible {
  outline: 2px solid #8ca8ff;
  outline-offset: -2px;
  border-radius: 8px;
}

.sidebar-footer small {
  color: #b9c7df;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .sidebar-footer {
    padding: 16px 10px;
  }

  .sidebar-footer small {
    font-size: 10px !important;
  }
}