.footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #ffd331;
  color: #12181e;
  padding: 3rem 0 2.05rem;
}
.footer .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.footer .options-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.95rem;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.footer .options-list li {
  list-style: none;
  font-size: 1rem;
  line-height: 1.15;
}
.footer .options-list .decor {
  opacity: 1;
  font-size: 0.95rem;
  font-weight: 700;
}
.footer .options-list a {
  color: #12181e;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer .options-list a:hover {
  color: #ffffff;
}
.footer .since {
  margin: 0;
  color: #12181e;
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 1;
}

@media (min-width: 0) and (max-width: 839.9px) {
  .footer {
    padding: 1rem 0;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .footer .options-list {
    gap: 0.4rem 0.7rem;
  }
  .footer .options-list li {
    font-size: 0.9rem;
  }
  .footer .since {
    font-size: 0.95rem;
    align-self: center;
  }
}
