.main_container {
  padding-top: 80px !important;
}

.page-hero__title {
  width: 541px;
  margin-left: 0;
  color: #000;
}

.page-hero__content .accent {
  width: 161px;
  height: 9px;
  background-image: url(../img/accents/generics/white-main-header.svg);
}
/* ========== Single Exchange / Event ========== */

.lp-single {
  padding: 56px 0 96px;
}

.lp-wrapper {
  /* 1240px content area centered */
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 816px; /* sidebar | content */
  column-gap: 32px;
  row-gap: 60px;
  padding: 0 12px; /* tiny gutter so edges never kiss */
}

/* ---------- LEFT: sidebar ---------- */

.lp-sidebar {
  position: relative;
  max-width: 391px;
}

.lp-sidebar__inner {
  position: sticky; /* keep details visible while reading */
  top: 180px; /* room for site header */
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

/* Status pill (e.g., Upcoming Event) */
.lp-status__label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 41px;
  background: #ffc845;
  color: #000;
  margin-bottom: 16px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;

  leading-trim: both;
  text-edge: cap;

  color: #000000;
}

.lp-status__label.past {
  background: #eaeaea !important;
}

/* One row (icon + text) */
.lp-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #cad4de;
}
.lp-detail:last-of-type {
  border-bottom: none;
}
.lp-detail img {
  display: block;
  width: 20px;
  height: 20px;
}

/* Topic chips */
.lp-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.lp-topic {
  display: inline-flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  border: 1px solid #d0d0d0;
  backdrop-filter: blur(6px);
  font: 500 12px/1 Poppins, sans-serif;
  color: #2b2b2b;
  text-decoration: none;
}
.lp-topic:hover {
  border-color: #bfbfbf;
}

/* Register button */
.lp-register-btn {
  display: inline-flex;
  height: 48px;
  padding: 16px 24px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  background: #fa455c; /* 500 Crea Pink */
  color: #fff;
  text-decoration: none;
  font: 600 14px/1 Poppins, sans-serif;
  margin-top: 50px;
  transition: filter 0.15s ease, transform 0.02s ease;
  max-width: 199px;
}
.lp-register-btn img {
  width: 24px;
  height: 24px;
}
.lp-register-btn:hover {
  filter: brightness(0.95);
}
.lp-register-btn:active {
  transform: translateY(1px);
}

/* ---------- RIGHT: main content ---------- */

.lp-content {
  min-width: 0; /* prevent overflow with long words */
}

/* Reuse your global slider styles from crea-slider component */
.lp-content .crea-slider {
  margin-bottom: 24px;
}

/* Body prose block */
.lp-body {
  border-bottom: 1px solid #cad4de;
  padding-bottom: 50px;
  margin-bottom: 60px;
}

/* Section headers + separators */
.lp-partners,
.lp-highlights,
.lp-resources {
  padding: 0;
  padding-bottom: 60px;
}
.lp-partners h3,
.lp-highlights h3,
.lp-resources h3 {
  margin: 0 0 18px 0;
}

/* Partner logo grid – same tone as About */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.partner-logo {
  box-sizing: border-box;
  height: 100px;
  border: 1px solid #e2e2e2;
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.partner-logo img {
  max-width: 70%;
  max-height: 60%;
  object-fit: contain;
}

/* Highlights is just WYSIWYG content; tighten list spacing a tad */
.lp-highlights__body ul {
  margin: 0;
  padding-left: 20px;
}

/* ---------- Event Resources (file list) ---------- */

.lp-resources {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cad4de;
}

.lp-resource-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #cad4de;
  gap: 24px;
}

.lp-resource-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffc845; /* yellow circle like Figma */
  padding: 8px;
  object-fit: contain;
}

.lp-resource-name {
  font: 600 18px/30px Poppins, sans-serif;
  color: #000;
  text-decoration: none;
}

.lp-resource-name:hover {
  text-decoration: underline;
}

/* download chevron button */
.lp-resource-download {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 41px;
  background: #fa455c;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}
.lp-resource-download:hover {
  transform: translateY(1px);
}
.lp-resource-download img {
  width: 24px;
  height: 24px;
}

.related-resources__inner {
  margin-top: 40px;
}

.related-resources__inner .kr-topics {
  width: 100%;
  margin-bottom: 0px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1100px) {
  .lp-wrapper {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .lp-sidebar__inner {
    position: static; /* disable sticky on small screens */
  }
  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .partner-logos {
    grid-template-columns: 1fr;
  }
  .lp-register-btn {
    width: 100%;
  }
}

/* Related Grid */

/* Grid */
.related-exchanges {
  margin-top: 100px;
}

.related-exchanges .accent {
  margin-top: 10px;

  display: inline-block;
  width: 153px;
  height: 9px;
  background-image: url("../img/accents/events-single/related_exhange.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

.related-exchanges__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 60px 0;
}

@media (max-width: 900px) {
  .related-exchanges__grid {
    grid-template-columns: 1fr;
  }
}

.icon-language {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/language.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.icon-mode {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url("../img/icons/mode.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.crea-course-session-label {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  gap: 10px;
  background: #fee6ad;
  backdrop-filter: blur(6px);
  border-radius: 8px;

  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  leading-trim: both;
  text-edge: cap;
  text-align: center;
  letter-spacing: -0.01em;
  width: 109px;
  height: 31px;
}

.crea-course-lesson-row {
  padding: 10px;
  gap: 12px;
}

.crea-mode-label {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: -0.01em;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}
.crea-mode-value {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.lp-button {
  margin-top: 32px;
  color: #fff;
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 24px;
  position: relative;
  background-color: #fa455c;
  border-radius: 12px;
  border: 0;
}

.course-btn-continue,
.course-btn-enroll {
  position: relative;
  width: fit-content;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  color: #ffffff;
  font-size: 15px;
  letter-spacing: 0.15px;
  line-height: 22px;
  white-space: nowrap;
  text-transform: uppercase;
}
/*
#popup-course.course-summary {
  padding-top: 80px;
}
.site-nav {
  z-index: 99999 !important;
}
#popup-course {
  background: #fff;
  width: 100%;
}*/
