/* Underkitchen hero focus — sustainable word emphasis */
.uk-sustainable-word {
  display: inline-block;
  color: #55d98b !important;
  text-shadow: 0 0 18px rgba(85, 217, 139, .34);
  animation: uk-sustainable-blink 1.8s ease-in-out infinite;
}

.uk-seo-heading {
  margin: -.75rem auto 0;
  max-width: 42rem;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  letter-spacing: .01em;
}

@keyframes uk-sustainable-blink {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 18px rgba(85, 217, 139, .34);
  }
  50% {
    opacity: .58;
    text-shadow: 0 0 32px rgba(85, 217, 139, .82);
  }
}

[data-uk-static-cta="true"] {
  animation: none !important;
}

[data-uk-student-frame="true"] {
  width: min(72%, 920px) !important;
  height: clamp(260px, 34vw, 500px) !important;
  margin: 0 auto !important;
  overflow: hidden;
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
}

[data-uk-student-frame="true"] img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

@media (max-width: 640px) {
  [data-uk-student-frame="true"] {
    width: calc(100% - 2rem) !important;
    height: 260px !important;
    border-radius: .9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uk-sustainable-word {
    animation: none;
    opacity: 1;
  }
}
