#associations {
  padding: 40px 0 30px 0;
  position: relative;
  overflow: hidden;
}

#associations::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo/eagle-head-pure.svg") center / 45% no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

#associations .associations {
  margin-top: 60px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

#associations .article {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 200ms ease, background-color 200ms ease;
  background: transparent;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(6, 12, 34, 0.12);
  box-shadow: 0 10px 20px rgba(6, 12, 34, 0.08);
}

#associations .association-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

#associations .associations .article img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  padding: 0;
  transition: transform 200ms ease;
}

#associations .article:hover img,
#associations .association-logo-link:focus-visible img {
  transform: scale(1.04);
}

#associations .article:hover,
#associations .association-logo-link:focus-visible {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 28px rgba(6, 12, 34, 0.18);
}

@media (max-width: 767px) {
  #associations::before {
    display: none;
  }
}
