/* Regulatory quick links - Figma node 1059:1916 */

.contact-quicklinks {
  background: var(--grey-pure-white);
  padding: 64px 0 64px;
}

.contact-quicklinks__grid {
  display: flex;
  gap: 24px;
}

.contact-quicklinks__card {
  flex: 1 1 0;
  background: var(--grey-pure-white);
  border: 1px solid var(--grey-lightest-grey);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-quicklinks__card:hover {
  box-shadow: 0px 8px 20px 0px rgba(0, 89, 154, 0.12); /* no matching Figma token */
  transform: translateY(-2px);
}

.contact-quicklinks__icon {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  background: #ebf2f7; /* no matching Figma token */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-quicklinks__icon img {
  width: 24px;
  height: 24px;
}

.contact-quicklinks__label {
  font-size: 18px;
  color: var(--grey-pure-black);
}

@media (max-width: 1023px) {
  .contact-quicklinks__grid {
    flex-direction: column;
  }
}

@media (max-width: 639px) {
  .contact-quicklinks {
    padding-bottom: 48px;
  }
}
