.officer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 80%;
  margin: 20px auto;
}

.officer {
  flex-basis: calc(30% - 20px);
  height: 225px; /* You may want to remove this fixed height or adjust it */
  margin: 10px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--base-fg);
  background: var(--base-bg);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease-in-out;
}

.officer:hover {
  transform: scale(1.05);
}

.officer-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 0;
  margin-right: 20px;
  flex-shrink: 0;      /* Prevent image from shrinking */
}

.officer-details {
  text-align: left;
  height: 100%;
}

.officer-name {
  font-size: 16px;
  margin-bottom: 10px;
}

.officer-rank {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}