/* =========================
   Spotlight Bootstrap cards
   ========================= */

.view-spotlight .views-row,
.view-search .views-row {
  margin-bottom: 1.25rem;
}

.spotlight-card {
  border: none;
  border-radius: 0.75rem;
  background-color: #f8f9fa;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  will-change: transform;
  font-size: 0.9rem;
}

/* Hover lift */
.spotlight-card:hover {
  transform: scale(1.01);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.09);
  z-index: 2;
}

.spotlight-card .card-body {
  padding: 0.75rem 0.75rem 0.9rem;
}



/* Logo */
.spotlight-logo {
  margin-bottom: 0.25rem;	
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-logo img {
  max-height: 140px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s ease;	
}

.spotlight-card:hover .spotlight-logo img {
  transform: scale(1.05);
}



/* Title */
.spotlight-card .card-title {
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 1.25;
}

.spotlight-title {
  font-size: 0.95rem;
  font-weight: 600;
}

.spotlight-title a {
  color: #212529;
}

.spotlight-title a:hover {
  text-decoration: underline;
}

/* Bio */
.spotlight-bio {
  font-size: 0.8rem;
  line-height: 1.4;
  color: #555;
}

/* Contacts */
.spotlight-contacts {
  font-size: 0.85rem;
}

.spotlight-contact {
  color: #495057;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.spotlight-contact i {
  font-size: 1rem;
}

.spotlight-contact:hover {
  color: #000;
}

/* Compact spacing on small screens */
@media (max-width: 576px) {
  .spotlight-card .card-body {
    padding: 0.75rem;
  }
}
