/* OBK K-Culture Manager — Hub/Card styles v0.4.1 */

#obk-kculture {
  width: 100%;
  box-sizing: border-box;
}

#obk-kculture *,
#obk-kculture *::before,
#obk-kculture *::after {
  box-sizing: border-box;
}

/* HERO */
#obk-kculture .obk-kc-hero {
  padding: 58px 34px;
  margin: 0 0 34px;
  text-align: center;
  background: #f7f4ff;
  border: 1px solid #e4dcfa;
  border-radius: 30px;
}

#obk-kculture .obk-kc-hero-eyebrow {
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #704fe2;
}

#obk-kculture .obk-kc-hero-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.15;
  color: #062f69;
}

#obk-kculture .obk-kc-hero-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: #69779a;
}

/* MAIN HUB */
#obk-kculture .obk-kc-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 2px 0 28px;
}

#obk-kculture .obk-kc-hub-card {
  display: flex;
  align-items: center;
  min-height: 132px;
  padding: 24px 25px;
  gap: 18px;
  text-decoration: none !important;
  background: #ffffff;
  border: 1px solid #e5def7;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(34, 42, 75, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

#obk-kculture .obk-kc-hub-card:hover,
#obk-kculture .obk-kc-hub-card:focus {
  transform: translateY(-3px);
  border-color: #bcaaf2;
  box-shadow: 0 12px 30px rgba(34, 42, 75, 0.11);
  text-decoration: none !important;
}

#obk-kculture .obk-kc-hub-icon {
  display: flex;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  background: #f4f0ff;
  border-radius: 18px;
}

#obk-kculture .obk-kc-hub-copy {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

#obk-kculture .obk-kc-hub-title {
  display: block;
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  color: #0a376f;
}

#obk-kculture .obk-kc-hub-text {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: #6b7896;
}

#obk-kculture .obk-kc-hub-arrow {
  flex: 0 0 auto;
  font-size: 34px;
  line-height: 1;
  color: #7653df;
}

/* Last card sits neatly in the center when there are 7 cards */
#obk-kculture .obk-kc-hub-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 9px);
  justify-self: center;
}

/* CATEGORY PAGE */
#obk-kculture .obk-kc-category-section {
  padding: 8px 0 30px;
}

#obk-kculture .obk-kc-category-heading {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

#obk-kculture .obk-kc-category-icon {
  display: flex;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: #f4f0ff;
  border-radius: 20px;
}

#obk-kculture .obk-kc-category-eyebrow {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #704fe2;
}

#obk-kculture .obk-kc-category-title {
  margin: 0 0 8px;
  font-size: 36px;
  line-height: 1.2;
  color: #062f69;
}

#obk-kculture .obk-kc-category-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #69779a;
}

/* CONTENT CARDS */
#obk-kculture .obk-kc-content-grid {
  display: grid;
  gap: 22px;
}

#obk-kculture .obk-kc-content-card {
  padding: 30px 28px;
  background: #fff;
  border: 1px solid #e5def7;
  border-radius: 26px;
}

#obk-kculture .obk-kc-content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

#obk-kculture .obk-kc-content-number {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #704fe2;
}

#obk-kculture .obk-kc-hidden-badge,
#obk-kculture .obk-kc-coming-badge {
  display: inline-flex;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

#obk-kculture .obk-kc-hidden-badge {
  color: #b5372e;
  background: #fff0ee;
}

#obk-kculture .obk-kc-coming-badge {
  color: #745100;
  background: #fff6d9;
}

#obk-kculture .obk-kc-content-title {
  margin: 22px 0 10px;
  font-size: 28px;
  line-height: 1.3;
  color: #062f69;
}

#obk-kculture .obk-kc-content-summary {
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.65;
  color: #69779a;
}

#obk-kculture .obk-kc-content-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  text-decoration: none !important;
  font-weight: 800;
  color: #fff !important;
  background: #704fe2;
  border-radius: 15px;
}

#obk-kculture .obk-kc-content-button:hover,
#obk-kculture .obk-kc-content-button:focus {
  text-decoration: none !important;
  opacity: 0.92;
}

#obk-kculture .obk-kc-audio {
  display: block;
  width: 100%;
  margin-top: 18px;
}

#obk-kculture .obk-kc-lyrics {
  margin-top: 20px;
}

#obk-kculture .obk-kc-lyrics summary {
  cursor: pointer;
  font-weight: 800;
  color: #0a376f;
}

#obk-kculture .obk-kc-lyrics-text {
  margin-top: 12px;
  line-height: 1.75;
  color: #56647f;
}

#obk-kculture .obk-kc-empty {
  padding: 28px;
  text-align: center;
  color: #69779a;
  background: #faf9fd;
  border: 1px dashed #ddd4f3;
  border-radius: 22px;
}

/* MOBILE */
@media (max-width: 720px) {
  #obk-kculture .obk-kc-hero {
    padding: 42px 20px;
    border-radius: 24px;
  }

  #obk-kculture .obk-kc-hero-eyebrow {
    font-size: 13px;
    letter-spacing: 1.4px;
  }

  #obk-kculture .obk-kc-hero-title {
    font-size: 34px;
  }

  #obk-kculture .obk-kc-hero-text {
    font-size: 17px;
  }

  #obk-kculture .obk-kc-hub {
    grid-template-columns: 1fr;
  }

  #obk-kculture .obk-kc-hub-card {
    min-height: 112px;
    padding: 20px;
  }

  #obk-kculture .obk-kc-hub-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  #obk-kculture .obk-kc-hub-icon {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }

  #obk-kculture .obk-kc-hub-title {
    font-size: 19px;
  }

  #obk-kculture .obk-kc-hub-text {
    font-size: 14px;
  }

  #obk-kculture .obk-kc-category-title {
    font-size: 30px;
  }

  #obk-kculture .obk-kc-category-text {
    font-size: 16px;
  }

  #obk-kculture .obk-kc-content-card {
    padding: 24px 20px;
  }
}
