.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: start; /* prevent uneven vertical stretching */
  width: 100%;
}

.card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  text-align: center;
  width: 220px;
  height: 208px; /* fixed uniform height so they don’t stretch */
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* prevent stretch */
  color: #000;
  overflow: hidden; /* keep inner content tidy */
}

.card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.card img {
  height: 90px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  margin-top: 10px;
  border-radius: 6px;
  background: rgba(0,0,0,0.1);
}

.names {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* evenly space names */
  width: 100%;
  padding: 8px 5px;
  flex-grow: 0; /* prevents content pushing height */
}

.short-name {
  font-weight: 700;
  font-size: 1.2em;
  color: #000;
  margin-top: 8px;
}

.full-name {
  font-weight: 400;
  font-size: 0.85em;
  color: #444;
  margin-top: 4px;
}


.main-box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 40px;
  max-width: 1200px;
  width: 95%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.org-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.org-section h1 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 2px;
}

.container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
  align-items: stretch;
  width: 100%;
}
