.judges {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 1.5rem;
}

@media (max-width: 719px) {
  .judges {
    grid-template-columns: 1fr;
  }
}

.judges-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.1rem solid #eae6e2;
  padding: 1.25rem;
  background-color: #faf6f2;
  border-radius: 0.25rem;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}

.judges-avatar-container {
  position: relative;
  width: calc(12rem / 1.42);
  height: calc(12rem / 1.42);
  margin: 1.8rem 0 2.4rem;
  background-color: #fff;
  transform: rotate(45deg);
}

.judges-avatar {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.judges-avatar img {
  width: 100%;
  transform: rotate(-45deg) scale(1.42);
}

.judges-avatar-container::before {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  width: 50%;
  height: 50%;
  border-bottom: 0.25rem solid #3eaf7c;
  border-left: 0.25rem solid #3eaf7c;
}

.judges-avatar-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: -0.5rem;
  width: 50%;
  height: 50%;
  border-right: 0.5rem solid #3eaf7c;
}

.judges-name {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: #3eaf7c;
  text-align: center;
}
