/* ---- ESSEN SPOTLIGHT (ABOUT PAGE) ---- */
.essen-image-col {
  position: relative;
  height: 500px;
}

.essen-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.essen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.essen-img-wrap:hover .essen-img {
  transform: scale(1.05);
}

.essen-img-label {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--dark-800);
  color: var(--gold);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,175,55,0.3);
}

@media (max-width: 768px) {
  .essen-image-col { height: 350px; margin-bottom: 30px; }
  .essen-img-label { right: 20px; bottom: 20px; }
}
