/* =========================================================================
 * Case Studies Listing - Load more
 *
 * Pairs with cs-load-more.js. The fold is a class, never an inline style, so
 * it cannot collide with the filter scripts writing style.display on the same
 * cards - hence the !important, which is what lets it win over an inline
 * display:'' the filters set when a card passes.
 * ========================================================================= */

.a3-case-study-card.a3-cs-card--folded {
  display: none !important;
}

.a3-cs-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  /* The last visible card ends on its own divider rule; this is the breathing
     room between that rule and the button. */
  padding: 40px 0 8px;
}

.a3-cs-more__status {
  margin: 0;
  color: #71717a;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.a3-cs-more__btn {
  gap: 10px;
}

.a3-cs-more__btn svg {
  transition: transform 0.2s ease;
}

.a3-cs-more__btn:hover svg {
  transform: translateY(2px);
}

@media (prefers-reduced-motion: reduce) {

  .a3-cs-more__btn svg {
    transition: none;
  }

  .a3-cs-more__btn:hover svg {
    transform: none;
  }
}

@media (max-width: 767px) {

  .a3-cs-more {
    padding: 28px 0 4px;
  }

  .a3-cs-more__btn {
    width: 100%;
  }
}
