.spotlight-section {
  position: relative;
  margin-bottom: 4rem;
  padding: 0 20px;
  background-color: #1a2e29;
}

.spotlight-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  padding-top: var(--padding-section-top);
  padding-bottom: var(--padding-section-bottom);
  margin: 0 auto;
    max-width: 1150px;
}

.spotlight-image {
  position: relative;
  width: 100%;
}

.spotlight-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.spotlight-header-content {
  display: flex;
  flex-direction: column;
  z-index: 1;
  height: 100%;
}

.spotlight-header-top {
  color: #ffffff;
    margin-top: auto;
    margin-bottom: auto;
}

.spotlight-title h1 {
  font-family: var(--header-font-stack);
  margin: 0 0 1rem;
  line-height: 1.2;
  font-weight: 500;
  max-width: 350px;
}
.spotlight-title h1 span {
  font-family: var(--header-font-stack);
  font-size: 20px;
  text-transform: uppercase;
  display: block;
}

.spotlight-meta {
  font-size: 0.9rem;
  opacity: 0.8;
  color: white;
}

.spotlight-meta p {
  margin-bottom: 0;
}

.spotlight-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 0;
}

.spotlight-content {
  background: white;
}

.spotlight-text-offset {
  line-height: 1.6;
  color: white;
  font-family: var(--header-font-stack);
  font-size: 20px;
}

@media screen and (max-width: 768px) {


  .spotlight-header-top {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .spotlight-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .spotlight-text-offset { 
    color: white;
    padding-bottom: 0rem;
  }
  
  .spotlight-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .spotlight-header-content {
    text-align: center;
  }
} 