/* Shared components */
.hover-swap {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.hover-swap__a,
.hover-swap__b {
  display: block;
  width: 100%;
}

.hover-swap__b {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.hover-swap:hover .hover-swap__b {
  opacity: 1;
}

.btn-more {
  display: inline-block;
  padding: 10px 28px;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
}

.btn-more:hover {
  background: var(--color-accent);
  color: #fff;
  text-decoration: none;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.faq__q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  color: inherit;
  padding: 14px 0;
  cursor: pointer;
  font-size: 15px;
}

.faq__num {
  display: inline-block;
  width: 1.5em;
  color: var(--color-accent);
  font-weight: 700;
}

.faq__a {
  padding: 0 0 16px 1.5em;
  opacity: 0.95;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.clients-grid li {
  width: 20%;
  padding: 12px;
  text-align: center;
}

.clients-grid img {
  max-height: 75px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}

.clients-grid img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .clients-grid li {
    width: 33.33%;
  }
}
