/* =====================================================================
   Media Center — Figma layout (banner, counters, tabs, portal, library)
   Extends media-center.css. Built on the site design system:
   DIN type, siteShell, anim-up, .mediaTabs/.mediaGrid/.mediaCard.
   ===================================================================== */
.mediaWrap { padding: 40px 16px 24px; }

/* ============================================================
   Brand Basics — downloadable brand-kit cards
   ============================================================ */
.mcBrand { padding: 56px 0 28px; }
.mcBrand__head {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #14365f;
  margin: 0 0 36px;
}
.mcBrand__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mcBrandCard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6ebf2;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 10px 30px rgba(16,31,60,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.mcBrandCard:hover {
  transform: translateY(-4px);
  border-color: #d4def0;
  box-shadow: 0 18px 40px rgba(16,31,60,.12);
}
.mcBrandCard__icon {
  width: 56px; height: 56px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: #eaf1fb;
  color: #2f6fed;
  margin-bottom: 22px;
}
.mcBrandCard__icon svg { width: 26px; height: 26px; }
.mcBrandCard__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #14365f;
  margin: 0 0 10px;
}
.mcBrandCard__desc {
  font-size: .98rem;
  line-height: 1.7;
  color: #5d6b82;
  margin: 0 0 26px;
}
.mcBrandCard__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mcBrandCard__size {
  font-size: .9rem;
  font-weight: 600;
  color: #9aa7bd;
}
.mcBrandCard__dl {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  border: 1px solid #cdd8ea;
  border-radius: 10px;
  background: #fff;
  color: #14365f;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.mcBrandCard__dl svg { width: 17px; height: 17px; }
.mcBrandCard__dl:hover {
  background: #14365f;
  border-color: #14365f;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .mcBrand__grid { grid-template-columns: 1fr; gap: 20px; }
  .mcBrand__head { font-size: 2rem; margin-bottom: 26px; }
}

html[dir="rtl"] .mcBrandCard { text-align: right; }

.mcBrandCard__soon {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 10px;
  background: #eef2f7; color: #8493ac;
  font-weight: 700; font-size: .9rem;
}
.mcBrandCard__soon svg { width: 16px; height: 16px; }

/* ============================================================
   Full-listing subpages (?view=library / ?view=news) + filters
   ============================================================ */
.mcListing { padding-top: 6px; }
.mcListing__title {
  font-size: 2.1rem; font-weight: 800; color: #14365f;
  margin: 10px 0 22px;
  text-align: start;
}
html[dir="rtl"] .mcListing__title { text-align: right; }
.mcFilters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.mcFilters__chip {
  padding: 9px 18px; border-radius: 999px;
  border: 1px solid #d4def0; background: #fff;
  color: #3a4a63; font-weight: 700; font-size: .9rem;
  cursor: pointer; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.mcFilters__chip:hover { border-color: #9bb6e6; }
.mcFilters__chip.is-active { background: #14365f; border-color: #14365f; color: #fff; }

/* pagination */
.mcPager { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; }
.mcPager__num, .mcPager__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px; border-radius: 10px;
  border: 1px solid #d4def0; background: #fff; color: #14365f;
  font-weight: 700; font-size: .92rem; text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.mcPager__num:hover, .mcPager__btn:hover { border-color: #14365f; }
.mcPager__num.is-active { background: #14365f; border-color: #14365f; color: #fff; pointer-events: none; }
.mcPager__btn.is-disabled { opacity: .4; pointer-events: none; }
.mcPager__btn svg { width: 16px; height: 16px; }
html[dir="rtl"] .mcPager__btn svg { transform: scaleX(-1); }

/* ============================================================
   Premium carousel (speakers 4-up, quotes 1-up) — arrows + dots + autoplay
   ============================================================ */
.mcSlider { position: relative; padding: 0 4px; }
.mcSlider__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.mcSlider__viewport::-webkit-scrollbar { display: none; }
/* Full-width slide CELLS tile the viewport exactly (no peeking next card); the gutter
   lives INSIDE each cell (padding) so the card floats with its shadow fully visible.
   Vertical track padding keeps the top/bottom shadows from being clipped. */
.mcSlider .mcSlider__track { display: flex; flex-wrap: nowrap; gap: 0; padding: 20px 0 42px; grid-template-columns: none; }
.mcSlide { box-sizing: border-box; flex: 0 0 100%; min-width: 0; scroll-snap-align: start; display: flex; }
.mcSlide > * { width: 100%; min-width: 0; }
/* keep hover shadows within the padded area so they never get cut off */
.mcSlider--spk .spkCard:hover { box-shadow: 0 16px 36px rgba(16,31,60,.14); }
.mcSlider--spk .spkCard--flip:hover .spkCard__face--front { box-shadow: 0 16px 36px rgba(16,31,60,.16); }
.mcSlider--quote .mcQuoteCard:hover { box-shadow: 0 18px 40px rgba(14,28,55,.14); }

/* speakers — 4 cells per view (responsive down to 1); gutter via cell padding */
.mcSlider--spk .mcSlide { flex-basis: 25%; padding: 0 12px; }
@media (max-width: 1100px) { .mcSlider--spk .mcSlide { flex-basis: 33.3333%; } }
@media (max-width: 820px)  { .mcSlider--spk .mcSlide { flex-basis: 50%; } }
@media (max-width: 560px)  { .mcSlider--spk .mcSlide { flex-basis: 100%; } }

/* quotes — 1 cell per view; wider gutter so the big card's shadow has room */
.mcSlider--quote .mcSlide { flex-basis: 100%; padding: 0 26px; }
@media (max-width: 560px) { .mcSlider--quote .mcSlide { padding: 0 14px; } }

/* arrows — clean circular nav buttons with SVG chevrons */
.mcSlider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 6; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #e8eef6; background: #fff;
  color: #14365f;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 14px rgba(16,31,60,.12);
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease, opacity .18s ease;
}
.mcSlider__arrow svg { width: 19px; height: 19px; display: block; }
.mcSlider__arrow:hover { background: #14365f; color: #fff; border-color: #14365f; box-shadow: 0 10px 24px rgba(16,31,60,.22); }
.mcSlider__arrow:active { box-shadow: 0 3px 10px rgba(16,31,60,.2); }
.mcSlider__arrow--prev { inset-inline-start: -8px; }
.mcSlider__arrow--next { inset-inline-end: -8px; }
html[dir="rtl"] .mcSlider__arrow { transform: translateY(-50%) scaleX(-1); }

/* dots */
.mcSlider__dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 22px; }
.mcSlider__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: #cdd8ea; cursor: pointer; transition: width .2s ease, background .2s ease, border-radius .2s ease; }
.mcSlider__dot.is-active { width: 26px; border-radius: 6px; background: #14365f; }

@media (max-width: 560px) {
  .mcSlider__arrow { width: 40px; height: 40px; }
  .mcSlider__arrow svg { width: 17px; height: 17px; }
  .mcSlider__arrow--prev { inset-inline-start: 0; }
  .mcSlider__arrow--next { inset-inline-end: 0; }
}

/* ---- Banner ---- */
.mcBanner { position: relative; border-radius: 20px; overflow: hidden; min-height: 200px; margin-bottom: 26px;
  background: linear-gradient(120deg, #101f3c 0%, #243089 48%, #3544b1 100%);
  box-shadow: 0 22px 50px rgba(14,28,55,.18); }
.mcBanner__slide { display: none; position: relative; padding: 44px 48px; min-height: 200px; }
.mcBanner__slide.is-active { display: block; animation: fadeInMove .7s cubic-bezier(.22,1,.36,1) both; }
.mcBanner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .22; }
.mcBanner__body { position: relative; z-index: 1; max-width: 760px; }
.mcBanner__title { margin: 0 0 14px; color: #fff; font-weight: 900; line-height: 1.12; font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
.mcBanner__msg { margin: 0; color: rgba(255,255,255,.86); font-size: 1.02rem; line-height: 1.75; }
.mcBanner__dots { position: absolute; bottom: 16px; inset-inline-start: 48px; z-index: 2; display: flex; gap: 8px; }
.mcBanner__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; }
.mcBanner__dot.is-active { background: #fff; width: 22px; border-radius: 6px; }

/* ---- Happening-now counters ---- */
.mcStats { margin-bottom: 30px; }
.mcStats__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.mcStat { background: #fff; border: 1px solid #e7eef7; border-radius: 16px; padding: 22px 18px; text-align: center;
  box-shadow: 0 12px 30px rgba(14,28,55,.06); display: flex; flex-direction: column; justify-content: center; min-height: 118px; }
.mcStat__label { color: #6a7e9f; font-size: .82rem; font-weight: 700; margin-bottom: 10px; }
.mcStat__num { font-size: clamp(2rem, 3vw, 2.7rem); font-weight: 300; color: #3fb6c8; line-height: 1; margin: 0; }
.mcStat__text { font-size: 1.15rem; font-weight: 800; color: #3544b1; line-height: 1.2; }

/* ---- Tabs + panels (reuses .mediaTabs / .mediaTab) ---- */
.mcTabsBlock { margin-bottom: 38px; }
.mcTabsBlock .mediaTabs { justify-content: center; margin: 0 0 26px; }
.mcPanel { display: none; }
.mcPanel.is-active { display: block; animation: fadeInMove .5s cubic-bezier(.22,1,.36,1) both; }
.mediaCard__excerpt { margin: 0; color: #6a7e9f; font-size: .92rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.mediaCard__badge--inline { position: static; display: inline-block; margin-top: 8px; background: rgba(63,182,200,.16); color: #0b6b73; border-color: transparent; }

/* share */
.mcShare { display: flex; gap: 8px; margin-top: 12px; }
.mcShare__btn { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%;
  background: #f2f6fb; color: #3544b1; text-decoration: none; font-size: 1rem; transition: background .15s, color .15s, transform .15s; }
.mcShare__btn:hover { background: #3544b1; color: #fff; transform: translateY(-2px); }

/* speaker card */
.mcSpeakerCard__top { display: flex; gap: 14px; align-items: center; padding: 18px 18px 0; }
.mcSpeakerCard__photo { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.mcSpeakerCard__photo--ph { display: flex; align-items: center; justify-content: center; background: #243089; color: #fff; font-weight: 800; font-size: 1.3rem; }
.mcSpeakerCard__name { font-weight: 900; color: #101f3c; font-size: 1.02rem; }
.mcSpeakerCard__pos { color: #3544b1; font-size: .85rem; font-weight: 600; }
.mcSpeakerCard__row { color: #5f708c; font-size: .88rem; line-height: 1.5; margin-bottom: 6px; }
.mcSpeakerCard__row b { color: #3544b1; font-weight: 800; }

/* live */
.mcLive { max-width: 900px; margin: 0 auto; }
.mcLive__frame { position: relative; width: 100%; padding-top: 56.25%; border-radius: 18px; overflow: hidden; background: #101f3c; box-shadow: 0 16px 40px rgba(14,28,55,.14); }
.mcLive__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mcLive__cap { margin: 14px 0 0; color: #101f3c; font-weight: 700; }
.mcLive__dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #e23b3b; margin-inline-end: 6px; vertical-align: middle; box-shadow: 0 0 0 0 rgba(226,59,59,.6); animation: mcPulse 1.6s infinite; }
@keyframes mcPulse { 70% { box-shadow: 0 0 0 9px rgba(226,59,59,0); } 100% { box-shadow: 0 0 0 0 rgba(226,59,59,0); } }

/* daily forum / summary */
.mcSummary { background: #fff; border: 1px solid #e7eef7; border-radius: 16px; padding: 26px 30px; box-shadow: 0 12px 30px rgba(14,28,55,.06); max-width: 900px; margin: 0 auto; }
.mcSummary__title { margin: 0 0 16px; color: #3544b1; font-weight: 800; font-size: 1.2rem; }
.mcSummary__list { margin: 0; padding-inline-start: 22px; }
.mcSummary__list li { color: #101f3c; line-height: 1.9; margin-bottom: 8px; }

/* ---- Portal: request form + sessions sidebar ---- */
.mcBlock__title { margin: 0 0 18px; color: #3544b1; font-weight: 900; font-size: clamp(1.2rem, 2.2vw, 1.5rem); }
.mcPortal { margin-bottom: 30px; }
.mcPortal__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 24px; align-items: stretch; }
.mcPortal__grid--single { grid-template-columns: 1fr; max-width: 860px; }
.mcPortal__main, .mcPortal__side { background: #fff; border: 1px solid #e7eef7; border-radius: 18px; padding: 28px; box-shadow: 0 12px 30px rgba(14,28,55,.06); }
/* sidebar fills the form's height; the Forum-agenda button pins to the bottom (18px floor gap on mobile) */
.mcPortal__side { display: flex; flex-direction: column; }
.mcPortal__side .mcSessions { margin-bottom: 18px; }

.mcForm__field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.mcForm__field > span { font-size: .86rem; font-weight: 700; color: #3544b1; }
.mcForm__field input, .mcForm__field select { padding: 12px 14px; border: 1px solid #d6e0ee; border-radius: 10px; font: inherit; color: #101f3c; background: #fff; outline: none; transition: border-color .15s, box-shadow .15s; }
.mcForm__field input:focus, .mcForm__field select:focus { border-color: #3fb6c8; box-shadow: 0 0 0 3px rgba(63,182,200,.15); }
.mcForm__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mcForm__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.mcForm__submit { width: 100%; margin-top: 6px; }

.mcNote { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.mcNote--ok { background: #e7f7ee; border: 1px solid #b9e4cb; color: #1c6b3f; }
.mcNote--err { background: #fdecec; border: 1px solid #f4c3c3; color: #a32525; }

.mcSessions { display: flex; flex-direction: column; gap: 14px; }
.mcSession { border: 1px solid #eef2f8; border-radius: 12px; padding: 16px; background: #fbfdff; }
.mcSession__time { color: #3fb6c8; font-weight: 800; font-size: .85rem; margin-bottom: 4px; }
.mcSession__title { margin: 0 0 6px; color: #101f3c; font-weight: 800; font-size: 1rem; line-height: 1.35; }
.mcSessions__cta { width: 100%; margin-top: auto; }

/* ---- Buttons ---- */
.mcBtn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 11px; font: inherit; font-weight: 800; cursor: pointer; text-decoration: none; border: 1px solid transparent; transition: background .15s, transform .15s, color .15s; }
.mcBtn--primary { background: #3544b1; color: #fff; }
.mcBtn--primary:hover { background: #2b369c; transform: translateY(-1px); color: #fff; }
.mcBtn--outline { background: #fff; color: #3544b1; border-color: #c5d6f0; width: 100%; }
.mcBtn--outline:hover { background: #f3f7fd; border-color: #3544b1; }

/* ---- Digital library ---- */
.mcLib { padding: 26px 0 80px; background: linear-gradient(180deg, rgba(238,244,251,0) 0%, rgba(231,240,251,.55) 100%); }
.mcLib__head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; background: #fff; border: 1px solid #e7eef7; border-radius: 18px; padding: 26px 30px; box-shadow: 0 12px 30px rgba(14,28,55,.06); margin-bottom: 30px; }
.mcLib__lead { margin: 0; color: #6a7e9f; font-size: .95rem; line-height: 1.7; max-width: 620px; }
.mcLib__counts { display: flex; gap: 14px; }
.mcLib__count { border: 1px solid #eef2f8; border-radius: 14px; padding: 14px 22px; text-align: center; min-width: 92px; }
.mcLib__num { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.mcLib__num--v { color: #3fb6c8; } /* videos — teal */
.mcLib__num--i { color: #3544b1; } /* images — indigo */
.mcLib__num--f { color: #14365f; } /* files — navy */
.mcLib__count span { display: block; margin-top: 6px; color: #6a7e9f; font-size: .76rem; font-weight: 700; }
.mcLib__sub { color: #3544b1; font-weight: 900; font-size: 1.25rem; margin: 0 0 22px; }
.mcLibCard { display: flex; flex-direction: column; }
.mcLibCard.is-hidden { display: none; }
.mcLibCard__thumb { height: 180px; background: linear-gradient(135deg, #cdd8e8, #b9c6da); display: flex; align-items: center; justify-content: center; position: relative; }
.mcLibCard__thumb img, .mcLibCard__thumb video { width: 100%; height: 100%; object-fit: cover; display: block; }
.mcLibCard__thumb a { display: block; width: 100%; height: 100%; }
.mcLibCard__ph { color: #5f708c; font-weight: 800; font-size: 1rem; }
.mcLibCard__play { display: flex !important; align-items: center; justify-content: center; color: #fff; font-size: 2rem; background: #101f3c; }
.mcLibCard__title { margin: 0 0 14px; color: #101f3c; font-weight: 700; font-size: .96rem; line-height: 1.4; }
.mcLib__more { display: flex; align-items: center; justify-content: center; width: fit-content; max-width: 100%; min-width: 200px; margin-top: 26px; margin-inline-end: auto; }

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .mcStats__grid { grid-template-columns: repeat(2, 1fr); }
  .mcPortal__grid { grid-template-columns: 1fr; }
  .mcLib__head { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .mcBanner__slide { padding: 30px 24px; }
  .mcBanner__dots { inset-inline-start: 24px; }
  .mcForm__row { grid-template-columns: 1fr; }
  .mcLib__counts { flex-wrap: wrap; }
}
/* phones: tighter spacing + guard against anything running edge-to-edge */
@media (max-width: 600px) {
  /* side padding so content doesn't stick to the screen edges (mediaWrap's base padding zeroes it) */
  .mediaWrap { padding: 18px 16px 10px; }
  .mcLib > .container { padding-left: 16px; padding-right: 16px; }
  .mcSecHead { font-size: 1.12rem; }
  .mcBanner__title { font-size: 1.5rem; }
  .mcStat { min-height: 76px; padding: 14px 12px; }
  .mcStat__num { font-size: 1.6rem; }
  .mcPortal__main, .mcPortal__side { padding: 22px 18px; }
  .mcSummary { padding: 24px 20px; }
  .mcQuoteCard__content { padding: 26px 22px; }
  .mcQuoteCard__text { font-size: 1.12rem; }
  .mcLib__head { padding: 20px 18px; }
  /* never let a card/grid exceed the viewport */
  .mediaGrid, .spkGrid, .mcQuoteGrid, .mcStats__grid { max-width: 100%; }
  .mcQuoteCard, .mediaCard, .spkCard, .mcStat { min-width: 0; }
}

/* ---- Equal-height cards with bottom-aligned actions ----
   Grid already makes cards in a row equal height; make each card a flex column so its
   body fills the cell, and pin the action (share / badge / download) to the bottom so the
   CTAs line up across the row instead of floating at different heights. */
.mediaGrid > .mediaCard { display: flex; flex-direction: column; height: 100%; }
.mediaGrid > .mediaCard > .mediaCard__body { flex: 1 1 auto; display: flex; flex-direction: column; }
.mediaCard__body .mcShare { margin-top: auto; }                     /* news: share row -> bottom */
.mcSpeakerCard .mediaCard__badge--inline { margin-top: auto; }      /* speaker: event badge -> bottom */
.mcLibCard .mediaCard__body .mcBtn--outline { margin-top: auto; }   /* library: download button -> bottom */

/* Featured-session cards in the sidebar share one column; equalise so the list reads as a tidy stack. */
.mcSessions .mcSession { display: flex; flex-direction: column; }

/* ---- RTL ---- */
html[dir="rtl"] .mcBanner__body,
html[dir="rtl"] .mcSummary,
html[dir="rtl"] .mcForm__field { text-align: right; }

/* ====================================================================
   Compaction + clear section headings (tighter page, unambiguous order)
   These override the looser defaults above / in media-center.css.
   ==================================================================== */
.mediaWrap { padding: 26px 16px 14px; }

/* Clean, consistent section heading (no accent bar) */
.mcSecHead {
  margin: 4px 0 18px; color: #101f3c; font-weight: 800;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem); line-height: 1.3;
}
.mcSecHead::before { content: none; }

/* Banner: shorter */
.mcBanner { min-height: 150px; margin-bottom: 22px; }
.mcBanner__slide { padding: 30px 40px; min-height: 150px; }
.mcBanner__dots { inset-inline-start: 40px; }

/* Counters: shorter and lighter */
.mcStats { margin-bottom: 24px; }
.mcStat { min-height: 88px; padding: 16px 14px; }
.mcStat__num { font-size: clamp(1.7rem, 2.6vw, 2.2rem); }

/* Tabs + portal: tighter spacing */
.mcTabsBlock { margin-bottom: 26px; }
.mcTabsBlock .mediaTabs { margin-bottom: 20px; }
.mcPortal { margin-bottom: 24px; }

/* Cards: size to content (grid still equalises each row); shorter thumbnails */
.mediaGrid > .mediaCard > .mediaCard__body { min-height: 0; padding-top: 14px; padding-bottom: 16px; }
.mcTabsBlock .mediaCard__thumb { height: 150px; }
.mcLibCard__thumb { height: 150px; }

/* Library: trim the large bottom gap */
.mcLib { padding: 22px 0 48px; }
.mcLib__head { padding: 22px 26px; margin-bottom: 24px; }
.mcLib__sub { margin-bottom: 18px; }

/* ====================================================================
   Read / view modal, clickable cards, and comprehensive RTL
   (site palette: #3544b1 blue · #3fb6c8 teal · #f79c37 accent · #101f3c ink)
   ==================================================================== */

/* Clickable news / library cards */
.mcCardOpen { cursor: pointer; }
.mcCardOpen:focus-visible { outline: 2px solid #3544b1; outline-offset: 2px; }
.mcCard__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 4px; }
.mcReadMore { font-weight: 800; font-size: .85rem; color: #3544b1; white-space: nowrap; }
.mcCardOpen:hover .mcReadMore { text-decoration: underline; }

/* Modal */
.mcModal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.mcModal[hidden] { display: none; }
.mcModal__overlay { position: absolute; inset: 0; background: rgba(16,31,60,.62); }
.mcModal__dialog { position: relative; z-index: 1; width: 100%; max-width: 720px; max-height: 88vh; overflow: auto;
  background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(16,31,60,.4); animation: fadeInMove .35s cubic-bezier(.22,1,.36,1) both; }
.mcModal__close { position: absolute; top: 12px; inset-inline-end: 12px; z-index: 2; width: 38px; height: 38px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,.92); color: #101f3c; font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: 0 2px 8px rgba(16,31,60,.2); }
.mcModal__close:hover { background: #fff; }
.mcModal__media { background: #101f3c; }
.mcModal__media img, .mcModal__media video { display: block; width: 100%; max-height: 440px; object-fit: contain; background: #101f3c; }
.mcModal__inner { padding: 26px 30px 30px; }
.mcModal__meta { color: #3fb6c8; font-weight: 800; font-size: .85rem; margin-bottom: 6px; }
.mcModal__title { margin: 0 0 16px; color: #101f3c; font-weight: 900; line-height: 1.25; font-size: clamp(1.3rem, 2.4vw, 1.75rem); }
.mcModal__body { color: #33445c; line-height: 1.95; white-space: pre-wrap; }
.mcModal__foot { margin-top: 22px; }
.mcModal__foot:empty { display: none; }

/* ---- Comprehensive RTL: text sides + flex alignment for the bespoke blocks ---- */
html[dir="rtl"] .mcStat,
html[dir="rtl"] .mcSession,
html[dir="rtl"] .mcLibCard__title,
html[dir="rtl"] .mcModal__inner,
html[dir="rtl"] .mcModal__body { text-align: right; }
html[dir="rtl"] .mcShare { justify-content: flex-end; }
html[dir="rtl"] .mediaCard__meta { justify-content: flex-start; }
html[dir="rtl"] .mcSecHead { flex-direction: row; }   /* accent bar stays leading (start side) */

/* Top agenda sessions — larger, more readable (fills the sidebar better) */
.mcSessions { gap: 16px; }
.mcSession { padding: 18px 20px; }
.mcSession__time { font-size: .95rem; }
.mcSession__title { font-size: 1.12rem; line-height: 1.45; }

/* ====================================================================
   Banner — approved design (Req1): blue → teal diagonal, large radius,
   text block on the leading side (right in RTL / left in LTR).
   ==================================================================== */
.mcBanner {
  border-radius: 28px;
  min-height: 260px;
  margin-bottom: 28px;
  background: linear-gradient(115deg, #15487f 0%, #1d63a6 40%, #2f93bd 72%, #46c1c4 100%);
  box-shadow: 0 24px 60px rgba(16,31,60,.20);
}
.mcBanner__slide { padding: 52px 60px; min-height: 260px; }
.mcBanner__slide.is-active { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.mcBanner__bg { opacity: .16; }
.mcBanner__body { width: min(620px, 100%); max-width: 620px; }
.mcBanner__title { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 900; margin: 0 0 18px; line-height: 1.2; }
.mcBanner__msg { font-size: clamp(.98rem, 1.35vw, 1.08rem); line-height: 2; color: rgba(255,255,255,.88); }
.mcBanner__dots { inset-inline: 0; bottom: 22px; justify-content: center; }   /* centered */

@media (max-width: 640px) {
  .mcBanner__slide { padding: 34px 26px; min-height: 220px; }
  .mcBanner__body { width: 100%; }
}

/* ====================================================================
   Happening-now counters — approved design (Req2): light-gray card,
   leading accent bar, muted label, bold navy value, rounded pill.
   ==================================================================== */
.mcStats__grid { gap: 16px; }
.mcStat {
  position: relative;
  background: #fff;                       /* white card */
  border: 1px solid #edf0f4;
  border-radius: 14px;
  padding: 15px 20px;
  padding-inline-start: 26px;            /* clear the full-height bar */
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: 140px;
  box-shadow: 0 4px 14px rgba(16,31,60,.05);
  overflow: hidden;
}
.mcStat::before {                        /* full-height accent bar, flush at the leading edge */
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0; bottom: 0;
  width: 6px;
  background: #1d63a6;
}
.mcStat--status::before { background: linear-gradient(180deg, #2f93bd, #45c0c5); }
.mcStat__label { color: #8a93a3; font-size: .72rem; font-weight: 600; margin: 0; line-height: 1.35; }
.mcStat__num, .mcStat__text { color: #16243f; font-weight: 900; line-height: 1.1; margin: 0; }
.mcStat__num { font-size: clamp(1.25rem, 1.9vw, 1.5rem); }
.mcStat__text { font-size: 1rem; }
.mcStat__pill {
  align-self: flex-start; margin-top: auto;
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: .7rem; font-weight: 700; line-height: 1.5;
  background: #d9f0ea; color: #1f8a78;
}
.mcStat__pill--live { background: #fde6e6; color: #e23b3b; }

/* ---- RTL: force all Media Center titles / text blocks to align right in Arabic ---- */
html[dir="rtl"] .mcSecHead,
html[dir="rtl"] .mcBlock__title,
html[dir="rtl"] .mcSummary__title,
html[dir="rtl"] .mcLib__sub,
html[dir="rtl"] .mcLib__lead,
html[dir="rtl"] .mcLib__intro,
html[dir="rtl"] .mcSpeakerCard__top,
html[dir="rtl"] .mcSpeakerCard__name,
html[dir="rtl"] .mcSpeakerCard__pos,
html[dir="rtl"] .mcSpeakerCard__row,
html[dir="rtl"] .mcLive__cap,
html[dir="rtl"] .mcLibCard__title,
html[dir="rtl"] .mediaCard__title,
html[dir="rtl"] .mediaCard__excerpt,
html[dir="rtl"] .mcRequest__lead { text-align: right; }

/* ====================================================================
   News article — clickable card (links to detail page) + the detail page
   ==================================================================== */
.mcCardLink { position: relative; }
.mcCard__hit { position: absolute; inset: 0; z-index: 1; }              /* whole card is the link */
.mcCardLink .mcShare { position: relative; z-index: 2; }                /* share stays clickable above it */
.mcCardLink:hover .mcReadMore { text-decoration: underline; }
.mcReadMore { font-weight: 800; font-size: .85rem; color: #3544b1; white-space: nowrap; }

.mcArticle { max-width: 820px; margin: 0 auto; }
.mcArticle__back { display: block; width: fit-content; max-width: 100%; margin-bottom: 20px; margin-inline-end: auto; color: #3544b1; font-weight: 700; font-size: .92rem; text-decoration: none; }
.mcArticle__back:hover { text-decoration: underline; }
.mcArticle__hero { border-radius: 18px; overflow: hidden; margin-bottom: 24px; max-height: 440px; box-shadow: 0 16px 40px rgba(16,31,60,.12); }
.mcArticle__hero img { width: 100%; height: 100%; max-height: 440px; object-fit: cover; display: block; }
.mcArticle__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: #6a7e9f; font-weight: 700; font-size: .9rem; margin-bottom: 10px; }
.mcArticle__badge { background: rgba(63,182,200,.16); color: #0b6b73; padding: 3px 12px; border-radius: 999px; font-size: .8rem; }
.mcArticle__title { color: #101f3c; font-weight: 900; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.25; margin: 0 0 20px; }
.mcArticle__body { color: #33445c; line-height: 2; font-size: 1.05rem; white-space: pre-wrap; }
.mcArticle__share { margin-top: 28px; }
html[dir="rtl"] .mcArticle__meta { text-align: right; }
html[dir="rtl"] .mcArticle__body { text-align: right; }

/* ---- Requested typography tweaks ---- */
.mcBanner__title { font-weight: 500; }
.mcSecHead { font-weight: 600; }
.mcStat__text { font-weight: 700; }
.mediaTab.is-active { font-weight: 600; }

/* Live "now" — the status CARD turns dark blue, with a true ripple (blue wave) emanating
   from the centre and washing outward. Content + accent bar stay above the ripple; the
   ripple is clipped to the card by overflow:hidden. */
.mcStat--live {
  background: linear-gradient(135deg, #0d1b36 0%, #143063 100%);
  border-color: transparent;
}
.mcStat--live > *      { position: relative; z-index: 2; }   /* label/value/pill above ripple */
.mcStat--live::before  { z-index: 2; }                       /* accent bar above ripple */
.mcStat--live::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,182,200,.55) 0%, rgba(63,182,200,0) 70%);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1; pointer-events: none;
  animation: mcRipple 2.6s ease-out infinite;
}
@keyframes mcRipple {
  0%   { transform: translate(-50%, -50%) scale(.2); opacity: .85; }
  100% { transform: translate(-50%, -50%) scale(7);  opacity: 0; }
}
.mcStat--live .mcStat__label { color: rgba(255,255,255,.72); }
.mcStat--live .mcStat__text,
.mcStat--live .mcStat__num { color: #fff; }
@media (prefers-reduced-motion: reduce) { .mcStat--live::after { display: none; } }

/* Requested: session title 600, section/block titles 700 */
.mcSession__title { font-weight: 600; }
.mcBlock__title { font-weight: 700; }

/* Top agenda sessions — clean, scannable list separated by a hairline underline.
   Hierarchy: session title (lead) → speaker → event / time / venue pills.
   Icons are muted so they structure the row without competing with the text. */
.mcSessions { gap: 0; }
.mcSession { background: transparent; border: 0; border-radius: 0; padding: 18px 0; border-bottom: 1px solid #edf1f6; }
.mcSession:first-child { padding-top: 2px; }
.mcSession:last-child { border-bottom: 0; padding-bottom: 2px; }

/* title — the session name, leads the card */
.mcSession__title { font-size: .95rem; font-weight: 700; line-height: 1.4; margin: 0 0 6px; color: #173461;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* speaker — supporting line */
.mcSession__speaker { display: flex; align-items: center; gap: 7px; margin-bottom: 11px;
  font-size: .84rem; font-weight: 600; color: #6a7993; }
.mcSession__speaker svg { flex: 0 0 auto; width: 14px; height: 14px; color: #b3c2d6; }

/* event / time / venue as soft pills */
.mcSession__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.mcSession__meta > span { display: inline-flex; align-items: center; gap: 6px; margin: 0;
  font-size: .76rem; font-weight: 600; border-radius: 999px; padding: 4px 11px; }
.mcSession__meta svg { flex: 0 0 auto; width: 13px; height: 13px; color: #9db0c8; }
.mcSession__event { color: #2a8a99; background: #e8f6f8; }          /* category — teal tint */
.mcSession__time, .mcSession__venue { color: #6c7689; background: #f1f5fa; }
.mcSession__time { white-space: nowrap; }
.mcSession__venue { min-width: 0; }

/* ============================ News load-more ============================ */
.mediaGrid .mediaCard.is-hidden { display: none; }
.mcMore { display: flex; align-items: center; justify-content: center; width: fit-content; max-width: 100%; min-width: 200px; margin: 24px 0 0; margin-inline-end: auto; }

/* ======================= Premium speaker cards ========================= */
.spkGrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; align-items: stretch; }
.spkCard { display: flex; flex-direction: column; background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: 0 14px 34px rgba(16,31,60,.10); transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease; }
.spkCard:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(16,31,60,.16); }
.spkCard__media { position: relative; aspect-ratio: 4 / 5; background: linear-gradient(135deg, #143063, #1d63a6); }
.spkCard__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.spkCard__img--ph { display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.92); font-size: 3rem; font-weight: 800; }
.spkCard__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(13,27,54,.45)); pointer-events: none; }
.spkCard__event { position: absolute; top: 14px; inset-inline-start: 14px; z-index: 1; max-width: calc(100% - 28px);
  background: rgba(255,255,255,.93); color: #143063; font-size: .68rem; font-weight: 800; line-height: 1.3;
  padding: 5px 12px; border-radius: 14px; }
.spkCard__body { padding: 16px 18px 20px; }
.spkCard__name { margin: 0 0 3px; font-size: 1.08rem; font-weight: 700; color: #101f3c; line-height: 1.25; }
.spkCard__role { color: #3544b1; font-size: .85rem; font-weight: 600; }
.spkCard__org { color: #6a7e9f; font-size: .8rem; margin-top: 2px; }
.spkCard__topic { margin: 12px 0 0; padding-top: 12px; border-top: 1px solid #eef2f7; color: #5b6b86; font-size: .82rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
html[dir="rtl"] .spkCard__body { text-align: right; }

/* ---- Flip variant: front = profile, back = scientific strengths ---- */
.spkCard--flip { display: block; background: transparent; box-shadow: none; overflow: visible; perspective: 1300px; cursor: pointer; }
.spkCard--flip:hover { transform: none; box-shadow: none; }
.spkCard--flip .spkCard__inner { position: relative; transform-style: preserve-3d; transition: transform .65s cubic-bezier(.22,1,.36,1); }
.spkCard--flip.is-flipped .spkCard__inner { transform: rotateY(180deg); }
html[dir="rtl"] .spkCard--flip.is-flipped .spkCard__inner { transform: rotateY(-180deg); }
/* desktop / pointer devices: flip on hover */
@media (hover: hover) {
  .spkCard--flip:hover .spkCard__inner { transform: rotateY(180deg); }
  html[dir="rtl"] .spkCard--flip:hover .spkCard__inner { transform: rotateY(-180deg); }
  .spkCard--flip:hover .spkCard__face--front { opacity: 0; }
}
.spkCard__inner { height: 100%; }
.spkCard__face { -webkit-backface-visibility: hidden; backface-visibility: hidden; border-radius: 18px; overflow: hidden;
  background: #fff; box-shadow: 0 14px 34px rgba(16,31,60,.10); }
.spkCard__face--front { position: relative; display: flex; flex-direction: column; height: 100%; }
.spkCard__face--front { transition: box-shadow .25s ease, opacity 0s linear .32s; }
.spkCard--flip:hover .spkCard__face--front { box-shadow: 0 24px 54px rgba(16,31,60,.18); }
/* iOS Safari drops backface-visibility when an element also has overflow:hidden, letting the
   MIRRORED front face show through on flip (reversed text). Hiding the front at the flip midpoint
   guarantees only the correctly-oriented back is visible. */
.spkCard--flip.is-flipped .spkCard__face--front { opacity: 0; }
.spkCard__face--back { position: absolute; inset: 0; transform: rotateY(180deg); display: flex; flex-direction: column;
  padding: 22px 20px; color: #fff; background: linear-gradient(165deg, #13294f 0%, #1d63a6 100%); text-align: start; }
html[dir="rtl"] .spkCard__face--back { transform: rotateY(-180deg); text-align: right; }
.spkCard__face--back::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 80% at 100% 0%, rgba(63,182,200,.30), transparent 60%); }
/* "Strengths" hint overlays the bottom-centre of the photo — fixed position, never floats at the card's bottom edge */
.spkCard__flipHint { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  background: #3544b1; color: #fff; font-size: .7rem; font-weight: 700; letter-spacing: .02em;
  padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 18px rgba(53,68,177,.34); }
.spkCard__flipIcon { font-size: .84rem; line-height: 1; }
.spkCard__backHead { position: relative; z-index: 1; padding-bottom: 12px; margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,.18); }
.spkCard__backName { margin: 0; font-size: 1.05rem; font-weight: 700; line-height: 1.25; }
.spkCard__backRole { margin-top: 3px; font-size: .8rem; color: rgba(255,255,255,.82); }
.spkCard__backLabel { position: relative; z-index: 1; font-size: .68rem; letter-spacing: .09em; text-transform: uppercase;
  font-weight: 800; color: #7fd4e0; margin-bottom: 9px; }
.spkCard__strengths { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; flex: 1 1 auto; overflow: auto;
  display: flex; flex-direction: column; gap: 9px; }
.spkCard__strengths li { position: relative; padding-inline-start: 18px; font-size: .82rem; line-height: 1.45; color: rgba(255,255,255,.92); }
.spkCard__strengths li::before { content: "◆"; position: absolute; inset-inline-start: 0; top: 1px; color: #3fb6c8; font-size: .66rem; }
.spkCard__flipBack { position: relative; z-index: 1; margin-top: 12px; align-self: center; text-align: center; font-size: .72rem; font-weight: 700; color: #9fd8e4; }

/* ======================= Premium library cards ========================= */
.mcLibCard { border: 0; box-shadow: 0 12px 30px rgba(16,31,60,.08); transition: transform .22s ease, box-shadow .22s ease; }
.mcLibCard:hover { transform: translateY(-5px); box-shadow: 0 26px 56px rgba(16,31,60,.16); }
.mcLibCard__thumb { position: relative; height: 170px; }
.mcLibCard__thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(13,27,54,.32)); pointer-events: none; }
.mcLibCard__play { position: relative; z-index: 1; }
.mcLibCard__chip { position: absolute; top: 10px; inset-inline-start: 10px; z-index: 2; font-size: .68rem; font-weight: 800;
  padding: 4px 11px; border-radius: 999px; background: rgba(255,255,255,.93); color: #143063; }
.mcLibCard__chip--video    { background: rgba(245,166,35,.96); color: #fff; }
.mcLibCard__chip--document { background: rgba(22,163,74,.96);  color: #fff; }
.mcLibCard__chip--image    { background: rgba(63,182,200,.96); color: #fff; }

/* ============================================================
   Quotes / wisdom — editorial featured quotes (big photo beside text)
   ============================================================ */
.mcQuotes { margin-bottom: 26px; }
.mcQuoteGrid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.mcQuoteCard { position: relative; display: grid; grid-template-columns: 300px 1fr; align-items: stretch; overflow: hidden;
  background: linear-gradient(180deg, #fff, #f8fbff); border: 1px solid #e7eef7; border-radius: 22px;
  box-shadow: 0 16px 40px rgba(14,28,55,.08); transition: transform .2s ease, box-shadow .2s ease; }
.mcQuoteCard:hover { transform: translateY(-4px); box-shadow: 0 28px 64px rgba(14,28,55,.15); }

/* big person photo */
.mcQuoteCard__media { position: relative; min-height: 300px; background: linear-gradient(150deg, #13294f, #1d63a6); }
.mcQuoteCard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.mcQuoteCard__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 72%, rgba(13,27,54,.14)); }
.mcQuoteCard__mediaPh { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.92); font-size: 4rem; font-weight: 800; }

/* quote beside the photo */
.mcQuoteCard__content { position: relative; padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.mcQuoteCard__mark { font-family: Georgia, "Times New Roman", serif; font-size: 4.6rem; line-height: .7; color: #3544b1; opacity: .18; }
.mcQuoteCard__text { margin: 6px 0 22px; font-size: 1.32rem; line-height: 1.7; color: #101f3c; font-weight: 500; }
.mcQuoteCard__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  padding-top: 18px; border-top: 1px solid #eef2f7; }
.mcQuoteCard__name { font-weight: 800; color: #101f3c; font-size: 1.02rem; line-height: 1.25; }
.mcQuoteCard__role { color: #6a7e9f; font-size: .85rem; margin-top: 2px; }
/* share row — WhatsApp / X / Email (premium editorial share widget) */
.mcQuoteCard__share { display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid #eef2f7; }
.mcShareBtn { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
  width: 40px; height: 40px; border-radius: 50%; background: #f1f5fb; color: #6a7e9f;
  border: 1px solid #e2eaf4;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease; }
.mcShareBtn svg { width: 17px; height: 17px; display: block; }
.mcShareBtn:hover { transform: translateY(-2px); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(16,31,60,.20); }
.mcShareBtn:focus-visible { outline: 2px solid #3544b1; outline-offset: 2px; }
.mcShareBtn--wa:hover   { background: #25d366; box-shadow: 0 8px 18px rgba(37,211,102,.34); }
.mcShareBtn--x:hover    { background: #0f1419; box-shadow: 0 8px 18px rgba(15,20,25,.30); }
.mcShareBtn--mail:hover { background: #3544b1; box-shadow: 0 8px 18px rgba(53,68,177,.34); }

/* alternate the photo side for an editorial rhythm */
.mcQuoteCard:nth-child(even) { grid-template-columns: 1fr 300px; }
.mcQuoteCard:nth-child(even) .mcQuoteCard__media { order: 2; }

html[dir="rtl"] .mcQuoteCard__content { text-align: right; }
@media (max-width: 760px) {
  .mcQuoteCard, .mcQuoteCard:nth-child(even) { grid-template-columns: 1fr; }
  .mcQuoteCard__media { min-height: 220px; }
  .mcQuoteCard:nth-child(even) .mcQuoteCard__media { order: 0; }
  .mcQuoteCard__content { padding: 28px 24px; }
  .mcQuoteCard__text { font-size: 1.15rem; }
  .mcQuoteCard__share { gap: 8px; margin-top: 16px; padding-top: 14px; }
  .mcShareBtn { width: 42px; height: 42px; }
}

/* ============================================================
   Premium polish — Media Center page cards (news + library)
   Image zoom on hover, gradient play badge, refined chips and
   a gradient download button. CSS-only; site palette.
   ============================================================ */

/* Rounded, deeper cards across the page */
.mcTabsBlock .mediaCard,
.mcLibCard { border-radius: 18px; }
.mcTabsBlock .mediaCard { border: 1px solid rgba(20,40,80,.05); box-shadow: 0 12px 30px rgba(14,28,55,.09); }
.mcLibCard { border: 1px solid rgba(20,40,80,.05); }

/* Clip the thumb and zoom the media on hover */
.mcTabsBlock .mediaCard__thumb,
.mcLibCard__thumb { overflow: hidden; }
.mcTabsBlock .mediaCard__img,
.mcLibCard__thumb img { transition: transform .55s cubic-bezier(.22,1,.36,1); will-change: transform; }
.mcTabsBlock .mediaCard:hover .mediaCard__img,
.mcLibCard:hover .mcLibCard__thumb img { transform: scale(1.07); }

/* News: stronger badge + read-more arrow that slides on hover */
.mediaCard__badge { box-shadow: 0 6px 16px rgba(16,31,60,.20); }
.mcReadMore { display: inline-flex; align-items: center; gap: 5px; transition: gap .2s ease, color .2s ease; }
.mcCardLink:hover .mcReadMore { gap: 9px; color: #2b369c; }

/* Library: kind-aware thumb backgrounds (no preview image) */
.mcLibCard__thumb:has(.mcLibCard__play) { background: linear-gradient(145deg, #101f3c, #244b86); }
.mcLibCard__thumb:has(.mcLibCard__ph)   { background: linear-gradient(145deg, #eef3fb, #d8e2f2); }

/* Library: premium circular gradient play badge */
.mcLibCard__play { width: 62px; height: 62px; border-radius: 50%; font-size: 1.35rem; padding-inline-start: 5px;
  background: linear-gradient(145deg, #3544b1, #5664d6) !important;
  box-shadow: 0 14px 32px rgba(53,68,177,.5), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .25s ease; }
.mcLibCard:hover .mcLibCard__play { transform: scale(1.09); }
.mcLibCard__ph { color: #3544b1; font-weight: 800; letter-spacing: .01em; }

/* Library: refined type chip + title */
.mcLibCard__chip { box-shadow: 0 6px 16px rgba(16,31,60,.20); padding: 5px 12px; letter-spacing: .02em; }
.mcLibCard__title { font-weight: 800; }

/* Library: premium download button (outline -> gradient on hover, with icon) */
.mcLibCard .mcBtn--outline { border-radius: 12px; border-color: #d6e2f5; background: linear-gradient(#fff, #f6f9ff); }
.mcLibCard .mcBtn--outline::before { content: "↓"; font-size: 1.05rem; font-weight: 900; }
.mcLibCard .mcBtn--outline:hover { color: #fff; border-color: transparent; transform: translateY(-1px);
  background: linear-gradient(135deg, #3544b1, #5664d6); box-shadow: 0 12px 26px rgba(53,68,177,.34); }

/* ============================================================
   Premium pass 2 — taller media-library cards + full-row
   Live broadcast & Daily forum panels.
   ============================================================ */

/* Media library: taller, image-forward, deeper */
.mcLibCard { border-radius: 20px; }
.mcLibCard__thumb { height: 212px; }
.mcLibCard:hover { transform: translateY(-7px); box-shadow: 0 30px 64px rgba(16,31,60,.20); }
.mcLibCard .mediaCard__body { padding: 18px 20px 20px; gap: 12px; }
.mcLibCard__title { font-size: 1.04rem; font-weight: 800; line-height: 1.35; margin: 0 0 2px; }
.mcLibCard__chip { top: 12px; inset-inline-start: 12px; font-size: .7rem; }
.mcLibCard__thumb::after { background: linear-gradient(180deg, transparent 48%, rgba(13,27,54,.42)); }
/* play badge: physical left-nudge to optically centre the ▶, and force LTR so RTL can't flip it */
.mcLibCard__play { width: 66px; height: 66px; font-size: 1.45rem; direction: ltr; padding: 0 0 0 4px; }
@media (min-width: 993px) { .mcLib .mediaGrid { gap: 28px; } }

/* Live broadcast: fill the row */
.mcLive { max-width: none; margin: 0; }
.mcLive__frame { border-radius: 20px; box-shadow: 0 22px 54px rgba(14,28,55,.18); }
.mcLive__cap { font-size: .95rem; }

/* Daily forum: fill the row + premium 2-column checklist */
.mcSummary { max-width: none; margin: 0; padding: 30px 34px; border-radius: 20px; box-shadow: 0 16px 40px rgba(14,28,55,.08); }
.mcSummary__title { font-size: 1.3rem; }
.mcSummary__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 30px; }
.mcSummary__list li { position: relative; margin: 0; padding-inline-start: 34px; color: #101f3c; line-height: 1.65; }
.mcSummary__list li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 1px;
  width: 22px; height: 22px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #3544b1, #5664d6); color: #fff; font-size: .72rem; font-weight: 800;
  box-shadow: 0 6px 14px rgba(53,68,177,.30); }
/* logical padding-inline-start + inset-inline-start auto-flip for RTL — no manual override needed */
@media (max-width: 700px) { .mcSummary__list { grid-template-columns: 1fr; } }
