.collapse-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  transition: background-color 180ms ease, transform 180ms ease;
}

.collapse-button:hover,
.collapse-button:focus-visible {
  background: rgba(27, 28, 26, 0.05);
  outline: none;
}

.collapsible-content {
  overflow: hidden;
  transition: none;
  max-height: 4000px;
  opacity: 1;
}

.collapsible-content.is-ready {
  transition: max-height 260ms ease, opacity 180ms ease, margin-top 180ms ease;
}

.collapsible-content.is-collapsed {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0 !important;
}

.section-empty {
  border: 1px dashed rgba(27, 28, 26, 0.12);
  padding: 1rem 1.25rem;
  color: #5e5e5e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.resource-card-link {
  min-height: 14rem;
  min-width: 0;
  overflow: hidden;
}

.resource-card-link .material-symbols-outlined {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1;
}

.resource-card-copy {
  min-width: 0;
}

.resource-card-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.resource-card-label {
  line-height: 1.2;
}

@media (max-width: 767px) {
  .resource-card-link {
    min-height: 11.5rem;
  }
}

@media (max-width: 479px) {
  .resource-card-link {
    min-height: 10.5rem;
  }
}

.resource-card-link[aria-disabled="true"] {
  pointer-events: none;
}
