.semc-feature-spotlight {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  width: 100%;
  margin: clamp(2.5rem, 6vw, 5rem) auto;
}

.semc-feature-spotlight__media {
  overflow: hidden;
  border-radius: 0.35rem;
  background: linear-gradient(135deg, #dce9e9, #ede3d9);
  box-shadow: 0 8px 24px rgba(48, 40, 34, 0.11);
}

.semc-feature-spotlight__media img,
.semc-feature-spotlight__media--fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.semc-feature-spotlight__media--fallback::after {
  content: "";
  display: block;
  width: 34%;
  aspect-ratio: 1;
  margin: 16% auto;
  border: 2px solid rgba(41, 79, 89, 0.25);
  border-radius: 50%;
}

.semc-feature-spotlight__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 0 0 0.35rem;
}

.semc-feature-spotlight__eyebrow,
.semc-feature-spotlight__source {
  margin: 0;
  color: #3f6f7a;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.semc-feature-spotlight__source {
  margin-left: auto;
  text-align: right;
}

.semc-feature-spotlight__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.semc-feature-spotlight__type-icon {
  flex: 0 0 1.05rem;
  width: 1.05rem;
  height: 1.05rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.semc-feature-spotlight__type-icon--article {
  background-image: url("../featured-card/icons/article-icon.svg");
}

.semc-feature-spotlight__type-icon--event {
  background-image: url("../featured-card/icons/event-calendar-icon.svg");
}

.semc-feature-spotlight__type-icon--zoom-meeting {
  background-image: url("../featured-card/icons/zoom-meeting-icon.svg");
}

.semc-feature-spotlight h2 {
  margin: 0 0 0.75rem;
  color: #292624;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.semc-feature-spotlight h2 a {
  color: inherit;
  text-decoration: none;
}

.semc-feature-spotlight h2 a:hover,
.semc-feature-spotlight h2 a:focus {
  color: #294f59;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.semc-feature-spotlight__when {
  margin: -0.2rem 0 0.75rem;
  color: #292624;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.5;
}

.semc-feature-spotlight__description {
  max-width: 54ch;
  color: #625d58;
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.65;
}

.semc-feature-spotlight__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  margin-top: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: 1px solid #3f6f7a;
  border-radius: 0.35rem;
  color: #fff;
  background: #3f6f7a;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(41, 79, 89, 0.2);
}

.semc-feature-spotlight__button:hover,
.semc-feature-spotlight__button:focus {
  color: #fff;
  background: #294f59;
  text-decoration: none;
}

.semc-feature-spotlight :where(a):focus-visible {
  outline: 3px solid #0b66c3;
  outline-offset: 3px;
}

@media (max-width: 48rem) {
  .semc-feature-spotlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .semc-feature-spotlight__media img,
  .semc-feature-spotlight__media--fallback {
    aspect-ratio: 16 / 9;
  }
}
