/* ==========================================================================
   KSC CONTENT HUB Event Feed for Private Salon LUNA
   Gentle ivory, navy & soft gold tones with clean typography (No images)
   ========================================================================== */

.cnj-luna-hub-section {
  background: #fbfafd;
  padding: clamp(3.5rem, 6vw, 5.5rem) 1.25rem;
  color: #2c2930;
}

.cnj-luna-hub-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.2rem;
  max-width: 1080px;
  margin-inline: auto;
}

.cnj-luna-hub-list--events {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cnj-luna-hub-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(160, 135, 185, 0.24);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(44, 41, 48, 0.04);
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cnj-luna-hub-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(44, 41, 48, 0.08);
  border-color: rgba(160, 135, 185, 0.45);
}

.cnj-luna-hub-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: #766f82;
}

.cnj-luna-hub-card__date {
  font-weight: 600;
  color: #433c4f;
}

.cnj-luna-hub-card__area {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.55rem;
  border-radius: 6px;
  background: #f0ecf4;
  color: #5c4a75;
  font-size: 0.75rem;
  font-weight: 500;
}

.cnj-luna-hub-card__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif, "Noto Serif JP", serif);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 600;
}

.cnj-luna-hub-card__title-link {
  color: #2c2930;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cnj-luna-hub-card__title-link:hover {
  color: #5c4a75;
  text-decoration: underline;
}

.cnj-luna-hub-card__excerpt {
  margin: 0 0 1.2rem;
  color: #5a5363;
  font-size: 0.88rem;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cnj-luna-hub-card__link {
  margin-top: auto;
  align-self: flex-start;
  color: #5c4a75;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cnj-luna-hub-card__link:hover {
  color: #3f3252;
  text-decoration: underline;
}

/* Static Fallback */
.cnj-luna-hub-fallback {
  max-width: 680px;
  margin: 2rem auto 0;
  padding: 1.8rem 1.5rem;
  border: 1px dashed rgba(160, 135, 185, 0.35);
  border-radius: 12px;
  background: #ffffff;
  color: #5a5363;
  text-align: center;
}

.cnj-luna-hub-fallback p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.cnj-luna-hub-fallback__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: #5c4a75;
  color: #ffffff !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.cnj-luna-hub-fallback__cta:hover {
  opacity: 0.9;
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 767px) {
  .cnj-luna-hub-list--events {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .cnj-luna-hub-card {
    padding: 1.35rem 1.15rem;
  }
}
