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

.page-hero__title {
  width: 541px;
  margin-left: 100px;
}

.page-hero__content .accent {
  margin-top: 10px;
  margin-left: 100px;
  display: inline-block;
  width: 161px;
  height: 9px;
  background-image: url("../img/accents/events-single/events-single-header.svg");
  background-repeat: no-repeat;
  background-size: contain; /* or 'cover', depending on your art */
  background-position: left center;
}

/* ========== Single Exchange / Event ========== */

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

.event-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 ---------- */

.event-sidebar {
  position: relative;
}

.event-sidebar__inner {
  position: sticky; /* keep details visible while reading */
  top: 96px; /* room for site header */
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding-bottom: 20px;
  max-width: 349px;
}

/* Status pill (e.g., Upcoming Event) */
.event-status__label {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 41px;
  background: #ffc845; /* 500 Yellow */
  font: 600 14px/1 Poppins, sans-serif;
  color: #000;
  margin-bottom: 16px;
}

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

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

/* Topic chips */
.event-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.event-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;
}
.event-topic:hover {
  border-color: #bfbfbf;
}

/* Register button */
.event-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;
}
.event-register-btn img {
  width: 24px;
  height: 24px;
}
.event-register-btn:hover {
  filter: brightness(0.95);
}
.event-register-btn:active {
  transform: translateY(1px);
}

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

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

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

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

/* Section headers + separators */
.event-partners,
.event-highlights,
.event-resources {
  padding: 0;
  padding-bottom: 60px;
}
.event-partners h3,
.event-highlights h3,
.event-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 */
.event-highlights__body ul {
  margin: 0;
  padding-left: 20px;
}

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

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

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

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

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

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

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

/* download chevron button */
.event-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;
}
.event-resource-download:hover {
  transform: translateY(1px);
}
.event-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) {
  .event-wrapper {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
  .event-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;
  }
  .event-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;
  }
}
