/* 🌟 Spotlight Block Styles */
.spotlight-block {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #800000;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  margin: 20px auto;
  padding: 20px;
  max-width: 1000px;
  color: #204161;
  font-family: 'Lato', sans-serif;
  transition: opacity 0.5s ease;
}

.spotlight-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.spotlight-content img {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.spotlight-text {
  flex: 1;
}

.spotlight-text h3 {
  margin-top: 0;
  color: #800000;
}

.spotlight-text button {
  background-color: #800000;
  color: #fff;
  padding: 8px 16px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.spotlight-text button:hover {
  background-color: #a00000;
  box-shadow: 0 0 8px #ffcc00;
}
