.block-spotlight {
  position: relative;
  overflow: hidden;
  min-height: 600px; /* Ensure adequate height for the image */
  padding: 88px 0;
}

.block-spotlight__grid {
  display: flex;
  min-height: 600px; /* Match section height */
  position: relative;
  z-index: 2;
}

.block-spotlight__content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 6rem; /* Add some spacing from the empty column */
}

.block-spotlight__empty {
  width: 50%;
}

.block-spotlight__image {
  position: absolute;
  top: 88px;
  bottom: 88px;
  left: 50%;
  right: 0;
  z-index: 1;
}

.block-spotlight__img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Tag styles */
.block-spotlight .tag {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1C355E;
  margin-bottom: 16px;
}

/* Title styles */
.block-spotlight .heading--4 {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0;
  color: #1C355E;
  margin-bottom: 16px;
  text-transform: none;
}

.block-spotlight__copy {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: #1C355E;
}

.block-spotlight__location {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.block-spotlight__location-text {
  font-weight: 400;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: 0;
  color: #1C355E;
}

.block-spotlight__location svg {
  flex-shrink: 0;
}

.block-spotlight__links {
  margin-bottom: 2rem;
}

.block-spotlight__links-heading,
.block-spotlight .block-spotlight__links-heading,
.block-spotlight__links h3 {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  letter-spacing: 0 !important;
  color: #1C355E !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  font-family: inherit !important;
  display: block !important;
}

.block-spotlight__links-list {
  line-height: 150%;
  display: block;
}

.block-spotlight__link {
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 150% !important;
  letter-spacing: 0 !important;
  color: #037481 !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.block-spotlight__link:hover {
  color: #025a65 !important;
}

.block-spotlight__cta {
  margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .block-spotlight .tag {
    font-size: 18px;
    text-transform: uppercase;
  }

  .block-spotlight .heading--4 {
    font-size: 32px;
    text-transform: none;
  }

  .block-spotlight__location-text {
    font-size: 24px;
  }

  .block-spotlight__copy {
    font-size: 18px;
  }

  .block-spotlight__grid {
    flex-direction: column;
    min-height: auto;
  }

  .block-spotlight__content,
  .block-spotlight__image {
    width: 100%;
  }

  .block-spotlight__content {
    margin-bottom: 48px;
  }

  .block-spotlight__image {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    min-height: 300px;
  }
}
