/* SECTION: THE KINGS BACON */
.the-kings-showcase {
  background-color: #ede8df;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.the-kings-showcase__header {
  text-align: center;
  margin-bottom: 60px;
}

.the-kings-showcase__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  color: #1a1a1a;
  line-height: 0.8;
  text-transform: uppercase;
}

.the-kings-showcase__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 3rem);
  color: #c9a84c;
  line-height: 1;
  text-transform: uppercase;
}

.the-kings-showcase__grid {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0; /* Cards are side by side without gaps */
  width: 100%;
  max-width: 1400px;
  padding: 0 20px;
}

.the-kings-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}

.the-kings-card__label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-transform: uppercase;
  text-align: center;
}

.the-kings-card__media {
  background-color: #1a1a1a;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.the-kings-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Specific adjustments for cards */
.the-kings-card--left,
.the-kings-card--right {
  flex: 0 1 350px;
  z-index: 1;
}

.the-kings-card--featured {
  flex: 0 1 450px;
  z-index: 2;
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.the-kings-card--featured .the-kings-card__label {
  font-size: 1.3rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .the-kings-showcase {
    padding: 60px 0;
  }

  .the-kings-showcase__grid {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .the-kings-card {
    max-width: 450px;
  }

  .the-kings-card--left,
  .the-kings-card--right,
  .the-kings-card--featured {
    flex: none;
    width: 90%;
    transform: none;
    box-shadow: none;
  }
}
