.team-card {
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 5px #2483FE;
  background-color: #fff;
  height: 100%;
}

.team-card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.team-card h5 {
  margin-top: 10px;
  margin-bottom: 2px;
  font-size: 1.1rem;
  font-weight: 600;
}

.team-card small {
  color: #6c757d;
  font-size: 0.9rem;
}

.hero-slogan {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: 500;
    line-height: 1.3;
    font-size: 1.2em;
    text-shadow: 0 3px 8px rgba(0,0,0,.55);
    -webkit-text-stroke: .4px rgba(0,0,0,.35);
}

.hero-logo {
    display: block;
    width: min(8em,80%);
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}

.video-placeholder {
  position: relative; /* needed for absolute children */
  cursor: pointer;
}

.video-placeholder img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}

.play-button {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  text-shadow: 0 0 10px black;
  opacity: 0.8;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s ease;
  width: 10%;
}

.video-placeholder:hover .play-button {
  opacity: 1;
}