.act4all-forum-overview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.act4all-forum-overview__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.act4all-forum-overview__list a:first-child {
  border-top: 1px solid var(--bs-dark-bg-subtle);
}
.act4all-forum-overview__eyebrow {
  color: #874312;
}

.forum-section {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--bs-dark-bg-subtle);
  transition: box-shadow 0.2s ease, -webkit-transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  transition: box-shadow 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.forum-section > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.forum-section:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(16, 20, 49, 0.1);
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  background: #f6f7f2;
}
.forum-section .forum-section__icon {
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #1d2456;
  background: #dfe0eb;
  border-radius: 0.625rem;
}
.forum-section .forum-section__icon svg {
  width: 22px;
  height: 22px;
}
.forum-section .forum-section__title {
  margin: 0;
  font-family: "Manrope", "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  color: #101431;
}
.forum-section .forum-section__stats {
  font-size: 0.8125rem;
  color: var(--bs-secondary-color);
}
.forum-section--health .forum-section__icon {
  color: #c92a2a;
  background: rgba(201, 42, 42, 0.12);
}
.forum-section--rescue .forum-section__icon {
  color: #1d2456;
  background: #dfe0eb;
}
.forum-section--animals .forum-section__icon {
  color: #c9a800;
  background: rgba(201, 168, 0, 0.14);
}

/*# sourceMappingURL=forum-section.css.map*/