@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: none;
}

a {
  text-decoration: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("https://event.mediacdn.vn/web_fonts/ibm-plex-sans-var-normal.woff2") format("woff2 supports variations"), url("https://event.mediacdn.vn/web_fonts/ibm-plex-sans-var-normal.woff2") format("woff2-variations");
  font-weight: 100 700;
  font-style: normal;
  font-display: swap;
}
:root {
  /* ── Background ── */
  --bg-primary-color: #000;
  /* ── Text ── */
  --text-primary-color: rgba(255, 255, 255, 0.8);
  --text-secondary-color: rgba(255, 255, 255, 0.5);
  /* ── Alpha Overlays ── */
  --color-white-05: rgba(255, 255, 255, 0.05);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-100: rgba(255, 255, 255, 1);
  /* ── Typography ── */
  --font-primary: "IBM Plex Sans", sans-serif;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  /* ── Font Sizes ── */
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-base: 14px;
  --fs-md: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 32px;
  --fs-5xl: 40px;
  --fs-6xl: 48px;
  /* ── Spacing ── */
  --space-xs: 8px;
  --space-sm: 10px;
  --space-md: 15px;
  --space-lg: 20px;
  --space-xl: 30px;
  --space-2xl: 40px;
  --space-3xl: 50px;
  --space-4xl: 80px;
  --space-5xl: 100px;
  /* ── Layout ── */
  --container-width: 980px;
  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 10px;
  --radius-2xl: 12px;
  --radius-pill: 9999px;
  /* ── Borders ── */
  --border-subtle: 1px solid var(--color-white-10);
  --border-subtle-dashed: 1px dashed var(--color-white-10);
}

/* ── Event Hub Main Wrapper ── */
.event-hub {
  background-color: var(--bg-primary-color);
  color: var(--text-primary-color);
  font-family: var(--font-primary);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  /* ── 1. Top Ads Section ── */
}
.event-hub__top-sponsored {
  background-color: var(--color-white-05, rgba(255, 255, 255, 0.05));
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  width: 100%;
}
.event-hub__top-sponsored .top-sponsored__banner {
  width: 1040px;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md, 6px);
}
.event-hub {
  /* ── 2. Sticky Navigation Bar ── */
}
.event-hub__sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  padding: 10px 32px;
  display: flex;
  align-items: center;
  width: 100%;
  transition: background 0.3s ease;
  box-sizing: border-box;
}
.event-hub__sticky-nav .sticky-nav__back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-white-80);
  text-decoration: none;
  font-size: var(--fs-xs, 12px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.event-hub__sticky-nav .sticky-nav__back-link:hover {
  opacity: 1;
  color: #fff;
}
.event-hub__sticky-nav .sticky-nav__back-link:hover .sticky-nav__icon {
  transform: translateX(-3px);
}
.event-hub__sticky-nav .sticky-nav__back-link .sticky-nav__icon {
  width: 15px;
  height: 12px;
  display: inline-block;
  transition: transform 0.2s ease;
}
.event-hub__sticky-nav .sticky-nav__back-link .sticky-nav__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.event-hub__sticky-nav .sticky-nav__back-link .sticky-nav__text-light {
  font-weight: 400;
}
.event-hub__sticky-nav .sticky-nav__back-link .sticky-nav__text-bold {
  font-weight: 700;
}
.event-hub {
  /* ── 4. Main Event Body Container ── */
}
.event-hub__body {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .event-hub__body {
    box-sizing: border-box;
    padding: 30px 15px;
  }
}
.event-hub__body {
  /* Section Separator Line */
}
.event-hub__body .event-body__divider {
  height: 1px;
  background-color: var(--color-white-10, rgba(255, 255, 255, 0.1));
  border: none;
  margin: 0;
  width: 100%;
}
.event-hub {
  /* ── 5. Featured News Section ── */
}
.event-hub .featured-news {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .event-hub .featured-news {
    flex-direction: column;
  }
}
.event-hub .featured-news {
  /* Big Featured Article */
}
.event-hub .featured-news__big {
  width: 627px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .event-hub .featured-news__big {
    width: 100%;
  }
}
.event-hub .featured-news__big .featured-news__thumb-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 627/394;
  overflow: hidden;
  border: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 8px);
}
.event-hub .featured-news__big .featured-news__thumb-link img,
.event-hub .featured-news__big .featured-news__thumb-link video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.event-hub .featured-news__big .featured-news__thumb-link:hover img,
.event-hub .featured-news__big .featured-news__thumb-link:hover video {
  transform: scale(1.03);
}
.event-hub .featured-news__big .featured-news__title {
  font-size: var(--fs-3xl, 30px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.event-hub .featured-news__big .featured-news__title a {
  color: var(--text-primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-hub .featured-news__big .featured-news__title a:hover {
  color: var(--color-white-100);
}
.event-hub .featured-news__big .featured-news__summary {
  font-size: var(--fs-md, 16px);
  color: var(--text-secondary-color);
  line-height: 1.5;
  margin: 0;
}
.event-hub .featured-news {
  /* Small Featured Article */
}
.event-hub .featured-news__small {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .event-hub .featured-news__small {
    width: 100%;
  }
}
.event-hub .featured-news__small .featured-news__thumb-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 300/394;
  overflow: hidden;
  border: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  border-radius: var(--radius-lg, 8px);
}
@media (max-width: 768px) {
  .event-hub .featured-news__small .featured-news__thumb-link {
    aspect-ratio: 627/394;
  }
}
.event-hub .featured-news__small .featured-news__thumb-link img,
.event-hub .featured-news__small .featured-news__thumb-link video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.event-hub .featured-news__small .featured-news__thumb-link:hover img,
.event-hub .featured-news__small .featured-news__thumb-link:hover video {
  transform: scale(1.03);
}
.event-hub .featured-news__small .featured-news__title {
  font-size: var(--fs-xl, 20px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.event-hub .featured-news__small .featured-news__title a {
  color: var(--text-primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-hub .featured-news__small .featured-news__title a:hover {
  color: var(--color-white-100, rgb(255, 255, 255));
}
.event-hub {
  /* ── 6. Two-Column Layout (News Stream + Right Sidebar) ── */
}
.event-hub .content-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .event-hub .content-grid {
    flex-direction: column-reverse;
  }
}
.event-hub .content-grid {
  /* News Stream Feed (Left Column) */
}
.event-hub .content-grid__main {
  width: 627px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .event-hub .content-grid__main {
    width: 100%;
  }
}
.event-hub .content-grid__main .news-stream {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.event-hub .content-grid__main .news-stream__heading {
  font-size: var(--fs-md, 15px);
  color: var(--text-secondary-color);
  margin: 0;
  font-weight: 400;
}
.event-hub .content-grid__main .news-stream__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.event-hub .content-grid__main {
  /* Article Item BEM Component */
}
.event-hub .content-grid__main .article-card {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.event-hub .content-grid__main .article-card__content {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .event-hub .content-grid__main .article-card__content {
    flex-direction: column;
  }
}
.event-hub .content-grid__main .article-card__thumb-link {
  position: relative;
  display: block;
  width: 250px;
  aspect-ratio: 250/156;
  overflow: hidden;
  border-radius: var(--radius-md, 6px);
}
@media (max-width: 768px) {
  .event-hub .content-grid__main .article-card__thumb-link {
    width: 100%;
  }
}
.event-hub .content-grid__main .article-card__thumb-link img,
.event-hub .content-grid__main .article-card__thumb-link video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.event-hub .content-grid__main .article-card__thumb-link:hover img,
.event-hub .content-grid__main .article-card__thumb-link:hover video {
  transform: scale(1.04);
}
.event-hub .content-grid__main .article-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.event-hub .content-grid__main .article-card__title {
  font-size: var(--fs-xl, 20px);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.event-hub .content-grid__main .article-card__title a {
  color: var(--text-primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-hub .content-grid__main .article-card__title a:hover {
  color: var(--color-white-100);
}
.event-hub .content-grid__main .article-card__summary {
  font-size: var(--fs-sm, 13px);
  color: var(--text-secondary-color);
  line-height: 1.5;
  margin: 0;
}
.event-hub .content-grid__main .article-card__divider {
  height: 1px;
  background-color: var(--color-white-10);
  border: none;
  margin: 0;
  width: 100%;
}
.event-hub .content-grid__main {
  /* Load More Section */
}
.event-hub .content-grid__main .news-stream__load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.event-hub .content-grid__main .news-stream__load-more .load-more__spinner {
  width: 34px;
  height: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-hub .content-grid__main .news-stream__load-more .load-more__spinner img {
  width: 100%;
  height: 100%;
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background-color: var(--color-white-10);
  color: var(--text-primary-color);
  border: none;
  border-radius: var(--radius-pill, 9999px);
  font-size: var(--fs-base, 14px);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button path {
  fill: var(--text-primary-color);
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button:hover .load-more__icon {
  transform: translateY(2px);
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button .load-more__icon {
  width: 9px;
  height: 5px;
  transition: transform 0.2s ease;
}
.event-hub .content-grid__main .news-stream__load-more .load-more__button .load-more__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.event-hub .content-grid {
  /* Right Sidebar Column */
}
.event-hub .content-grid__sidebar {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar {
    width: 100%;
  }
}
.event-hub .content-grid__sidebar {
  /* Related Events Block */
}
.event-hub .content-grid__sidebar .related-events {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar .related-events {
    width: 100vw;
    margin-left: -15px;
  }
}
.event-hub .content-grid__sidebar .related-events__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar .related-events__header {
    padding: 0 15px;
    box-sizing: border-box;
  }
}
.event-hub .content-grid__sidebar .related-events__title {
  font-size: var(--fs-md, 15px);
  color: var(--text-secondary-color);
  margin: 0;
  font-weight: 400;
}
.event-hub .content-grid__sidebar .related-events__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-base, 14px);
  color: var(--color-white-20, rgba(255, 255, 255, 0.2));
  text-decoration: none;
  transition: color 0.2s ease;
}
.event-hub .content-grid__sidebar .related-events__view-all:hover {
  color: var(--text-primary-color);
}
.event-hub .content-grid__sidebar .related-events__view-all:hover .related-events__icon {
  transform: translateX(3px);
}
.event-hub .content-grid__sidebar .related-events__view-all .related-events__icon {
  width: 6px;
  height: 9px;
  transition: transform 0.2s ease;
}
.event-hub .content-grid__sidebar .related-events__view-all .related-events__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.event-hub .content-grid__sidebar .related-events__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar .related-events__list {
    flex-direction: row;
    overflow-x: scroll;
    padding: 0 15px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
  }
}
.event-hub .content-grid__sidebar .related-events {
  /* Sidebar Event Item BEM Card */
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px;
  background-color: var(--color-white-05);
  border: 1px solid var(--color-white-10);
  border-radius: var(--radius-xl, 10px);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar .related-events .sidebar-event-card {
    flex-direction: column;
    width: 45%;
    flex-shrink: 0;
    box-sizing: border-box;
  }
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card__thumb {
  width: 100px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg, 8px);
}
@media (max-width: 768px) {
  .event-hub .content-grid__sidebar .related-events .sidebar-event-card__thumb {
    width: 100%;
  }
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card__date {
  font-size: var(--fs-base, 14px);
  font-weight: 600;
  color: var(--color-white-50);
  margin: 0;
}
.event-hub .content-grid__sidebar .related-events .sidebar-event-card__title {
  font-size: var(--fs-md, 16px);
  font-weight: 700;
  color: var(--text-primary-color);
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
}
.event-hub .content-grid__sidebar {
  /* Sidebar Banner Display Ad */
}
.event-hub .content-grid__sidebar .sidebar-ads {
  width: 300px;
  height: 600px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md, 6px);
}
.event-hub .content-grid__sidebar .sidebar-ads img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*# sourceMappingURL=main.css.map */