@media (min-width: 1200px) {
  .layout-sidebar .blockWysiwyg {
    align-self: flex-start;
    width: 100%;
  }
}
.blockWysiwyg__boundary {
  max-width: 862px;
}
.blockWysiwyg__boundary *:first-child {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .layout-sidebar .blockWysiwyg__boundary {
    max-width: 750px;
  }
}
.blockWysiwyg .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 2rem;
}
.blockWysiwyg .card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blockWysiwyg .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.blockWysiwyg .card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}
.blockWysiwyg .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.blockWysiwyg .card .name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 1rem 1rem 0;
}
.blockWysiwyg .card .graduation-year {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}
@media (max-width: 768px) {
  .blockWysiwyg .cards {
    grid-template-columns: 1fr;
  }
  .blockWysiwyg .card-image {
    height: 300px;
  }
  .blockWysiwyg .card {
    width: 100%;
  }
}