@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.ttf") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.ttf") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/Satoshi-Light2.woff2") format("woff2"),
    url("../fonts/Satoshi-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Satoshi Regular */
@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/Satoshi-Regular.woff2") format("woff2"),
    url("../fonts/Satoshi-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Satoshi Medium */
@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/Satoshi-Medium.woff2") format("woff2"),
    url("../fonts/Satoshi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Satoshi Bold */
@font-face {
  font-family: "Satoshi";
  src:
    url("../fonts/Satoshi-Bold.woff2") format("woff2"),
    url("../fonts/Satoshi-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", "sans-serif";
  color: #0d1b3e;
  overflow-x: hidden;
}

.iimb {
  font-family: "Satoshi", "sans-serif";
  font-weight: 300;
  font-size: clamp(11px, 3.5vw, 15px);
  /* Shrinks text on mobile */
  text-transform: uppercase;
}

/* NAV */
/* NAV */
.nav-link {
  font-family: "Gilroy", "sans-serif";
  font-size: 14px;
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a1a1aa;
  /* Default inactive color (Gray) */
  text-decoration: none;
  transition: all 0.2s;
}

.myRadius {
  border-radius: 4px !important;
}

.nav-link:hover,
.nav-link.active {
  color: #161d3d;
  /* Active/Hover color (Dark Blue) */
  font-weight: 600;
  /* Makes it slightly bolder when active */
}

/* BUTTONS */
.btn-primary {
  font-family: "Gilroy", "sans-serif" !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  /* line-height: 100% !important; */
  letter-spacing: 1px !important;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #1a2f6a;
}

.btn-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: #0d1b3e;
  border: 1.5px solid #0d1b3e;
  font-family: "Satoshi", "sans-serif";
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: #0d1b3e;
  color: #fff;
}

/* HERO */
.hero-section {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 55% 45%;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-right-panel {
    min-height: 300px;
  }
}

.chevron-bg {
  position: absolute;
  inset: 0;
  background: #faf9f9;
  clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

/* EVENT BAR */
.event-bar {
  background: #4a82d4;
  border-radius: 10px;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  position: relative;
}

@media (max-width: 640px) {
  .event-bar {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .event-bar-divider {
    display: none;
  }
}

.event-bar-divider {
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

/* SCATTER CHART */
.scatter {
  display: block;
  width: 100%;
  max-width: 340px;
  height: 80px;
}

/* SPEAKERS */
.speaker-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #1a1a2e;
}

.speaker-card img {
  width: 100%;
  /* height: auto; */
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.speaker-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top,
      rgba(13, 27, 62, 0.95) 0%,
      transparent 100%);
  padding: 40px 14px 14px;
}

/* WHO IS IT FOR */
.audience-card {
  border: 1px solid #e2eaf4;
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.2s;
}

.audience-card:hover {
  border-color: #4a82d4;
  box-shadow: 0 4px 20px rgba(74, 130, 212, 0.12);
  transform: translateY(-2px);
}

/* ABOUT CPRI */
.cpri-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a8c 0%, #0d1b3e 100%);
  opacity: 0.85;
  border-radius: 12px;
}

/* GLIMPSES */
.glimpse-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #1a1a2e;
}

/* SPONSOR */
.sponsor-section {
  background: #0d1b3e;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

/* SECTION TITLE */
.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: #0d1b3e;
}

/* MOBILE NAV */
#mobile-menu {
  display: none;
}

#mobile-menu.open {
  display: flex;
}

/* Footer social icons */
.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.social-icon:hover {
  border-color: #fff;
}

/* Agenda download bar */
.agenda-bar {
  background: #f8faff;
  border-bottom: 1px solid #e2eaf4;
}

.iimb_p {
  font-family: "Satoshi", "sans-serif";
  font-weight: 300;
  font-style: Regular;
  font-size: 14px;
}

.request_btn {
  font-family: "Satoshi", "sans-serif" !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  text-transform: uppercase !important;
}

.my_time {
  font-family: "Gilroy", "sans-serif" !important;
  font-weight: 400 !important;
  font-size: 24px !important;
}

.dtv {
  font-family: "Satoshi", "sans-serif" !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 24% !important;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   AGENDA SECTION CSS
═══════════════════════════════════════════════ */
.agenda-bg {
  background-color: #f3f2ec;
}

.agenda-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  /* 40px on mobile, 60px on desktop */
  color: #161d3d;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.agenda-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 20px);
  /* 16px on mobile, 20px on desktop */
  color: #161d3d;
  line-height: 1.3;
}

.btn-download {
  background-color: #242b5c;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
}

.btn-download:hover {
  background-color: #1a1f44;
}

/* ═══════════════════════════════════════════════
   SPEAKERS SECTION CSS
═══════════════════════════════════════════════ */
.speakers-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  /* 40px on mobile, 60px on desktop */
  line-height: 1.1;
  letter-spacing: 0%;
  color: #161d3d;
  margin-bottom: 8px;
}

.speakers-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 4vw, 20px);
  /* 16px on mobile, 20px on desktop */
  line-height: 1.2;
  letter-spacing: 0%;
  color: #161d3d;
  max-width: 400px;
}

/* ═══════════════════════════════════════════════
   SPEAKERS CAROUSEL CSS
═══════════════════════════════════════════════ */
.speaker-name {
  font-family: "Satoshi", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 6px;
}

.speaker-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.1;
  color: #ffffff;
  opacity: 0.9;
}

.carousel-count {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 23px;
  line-height: 1.1;
  color: #161d3d;
}

/* ═══════════════════════════════════════════════
   SPEAKERS CAROUSEL CSS
═══════════════════════════════════════════════ */
.speaker-card {
  position: relative;
  border-radius: 2px;
  /* 2px for mobile */
  overflow: hidden;
  background-color: #e5e7eb;
  /* Adjusts width to show ~4 cards at once on desktop, allows scrolling */
  flex: 0 0 calc(25% - 12px);
  min-width: 280px;
  aspect-ratio: 3 / 3.8;
  scroll-snap-align: start;
}

/* Switches to 6px border radius on desktop (md: breakpoint) */
@media (min-width: 768px) {
  .speaker-card {
    border-radius: 6px;
  }
}

.speaker-gradient {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0) 55%);
}

/* Hide scrollbar for a clean UI */
.carousel-track {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

.carousel-track::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari and Opera */
}

/* ═══════════════════════════════════════════════
   EVENT THEME SECTION CSS
═══════════════════════════════════════════════ */
.theme-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  /* 40px on mobile, 60px on desktop */
  line-height: 1.1;
  color: #161d3d;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.theme-desc {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 20px);
  /* 16px on mobile, 20px on desktop */
  line-height: 1.3;
  color: #475569;
  letter-spacing: 0%;
}

/* ═══════════════════════════════════════════════
   ATTENDING SECTION CSS
═══════════════════════════════════════════════ */
.attending-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 50px);
  /* 40px on mobile, 60px on desktop */
  color: #ffffff;
  line-height: 1.1;
}

.attending-text {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: clamp(15px,
      3.5vw,
      20.42px);
  /* Shrinks slightly on mobile to fit 3 columns */
  color: #ffffff;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   WHY ATTEND SECTION CSS
═══════════════════════════════════════════════ */
.why-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  /* 40px on mobile, 60px on desktop */
  color: #161d3d;
  line-height: 1.1;
}

.card-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 5vw, 24px);
  /* 40px on mobile, 60px on desktop */
  color: #161d3d;
  line-height: 1.2;
  margin-bottom: 10px;
}

.card-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 16px);
  color: #475569;
  text-align: justify;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   ABOUT CPRI SECTION CSS
═══════════════════════════════════════════════ */
.about-cpri-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  /* 40px on mobile, 60px on desktop */
  line-height: 1.1;
  color: #1b194a;
  margin-bottom: 24px;
}

.about-cpri-text {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 20px);
  /* Updated to hit 12px on mobile */
  line-height: 1.4;
  color: #1b194a;
  text-align: justify;
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   GLIMPSES SECTION CSS
═══════════════════════════════════════════════ */
.glimpse-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px,
      5vw,
      60px);
  /* Starts larger on mobile, caps at 60px on desktop */
  line-height: 1.1;
  color: #161d3d;
  margin-bottom: 8px;
}

.glimpse-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 5vw, 24px);
  line-height: 1.2;
  /* color: #475569; */
  margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════
   SPONSOR SECTION CSS
═══════════════════════════════════════════════ */
.sponsor-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.sponsor-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 5vw, 20px);
  color: #ffffff;
  opacity: 0.95;
  line-height: 1.3;
  margin-bottom: 36px;
}

.btn-sponsor {
  background-color: #ffffff;
  color: #242b5c;
  /* Matches Navy */
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  padding: 8px 28px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.btn-sponsor:hover {
  background-color: #f3f4f6;
}

/* ═══════════════════════════════════════════════
   FOOTER SECTION CSS
═══════════════════════════════════════════════ */
.footer-text {
  font-family: "Gilroy", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════
   VENUE SECTION CSS
═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════
   VENUE SECTION CSS
═══════════════════════════════════════════════ */
.venue-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  font-size: clamp(30px, 5vw, 60px);
  color: #161d3d;
  line-height: 1.1;
  margin-bottom: 16px;
  /* Reduced from 24px */
}

.venue-subtitle {
  font-family: "Gilroy", sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 5vw, 30px);
  color: #161d3d;
  line-height: 1.2;
  margin-bottom: 8px;
  /* Reduced from 16px */
}

.venue-address {
  font-family: "Satoshi", sans-serif;
  font-weight: 300;
  font-size: clamp(16px, 4vw, 20px);
  color: #475569;
  line-height: 1.4;
  margin-bottom: 24px;
  /* Reduced from 32px */
}

/* ═══════════════════════════════════════════════
   VENUE SECTION CSS
═══════════════════════════════════════════════ */
.btn-direction {
  background-color: #242d58;
  color: #ffffff;
  font-family: "Gilroy", sans-serif;
  font-weight: 500;
  font-size: 13px;
  /* Smaller font on mobile */
  text-transform: uppercase;
  padding: 12px 20px;
  /* Smaller padding on mobile */
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Centers content when full width */
  gap: 8px;
  /* Tighter gap on mobile */
  transition: background-color 0.2s;
  letter-spacing: 0.05em;
}

.btn-direction:hover {
  background-color: #1a1f44;
}

/* Switches back to normal size on desktop (md: breakpoint) */
@media (min-width: 768px) {
  .btn-direction {
    font-size: 14px;
    padding: 14px 24px;
    gap: 12px;
  }
}

.timeCss {
  font-family: "Gilroy", "sans-serif" !important;
  font-weight: 400 !important;
  font-size: 20px !important;
  /* Smaller size for mobile */
}

@media (min-width: 640px) {
  .timeCss {
    font-size: 24px !important;
    /* Original 24px size for desktop */
  }
}

.timeText {
  font-family: "Gilroy", "sans-serif" !important;
  font-weight: 400 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 4px !important;
}

/* ═══════════════════════════════════════════════
   ASSISTANCE SECTION CSS
═══════════════════════════════════════════════ */
.assist-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 5vw, 60px);
  color: #1b194a;
  line-height: 1.1;
  margin-bottom: 8px;
}

.assist-subtitle {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 4vw, 24px);
  color: #1b194a;
}

.contact-card {
  background-color: #f3f2ec;
  /* Pale beige background */
  border-radius: 4px;
}

.contact-name {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 4vw, 22px);
  color: #1b194a;
  margin-bottom: 4px;
}

.contact-role {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 3vw, 18px);
  color: #1b194a;
}

.contact-email {
  font-family: "Satoshi", sans-serif;
  font-weight: 400;
  font-size: clamp(13px, 4vw, 24px);
  color: #1b194a;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════
   GLIMPSES CAROUSEL CSS
═══════════════════════════════════════════════ */
.glimpse-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

@media (min-width: 768px) {
  .glimpse-card {
    flex: 0 0 calc(50% - 12px);
    /* Matches the old md:grid-cols-2 width */
  }
}

.customModalMain {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #00000020;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.customModalMain.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.customModalMain .customModalBosy {
  /* max-width: 1046px; */
  max-width: calc(100% - 25%);
  width: 100%;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.cmOverlay {
  position: absolute;
  bottom: 0;
  right: 150px;
  z-index: 99;
}

.cmFoot {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cmFoot a {
  padding: 14px;
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  border: none;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 173px;

  padding: 8px;
  background: #242d58;
  color: #fff;
}

.cmMidSection {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(12, 1fr);
  gap: 47px;
  margin: 41px 0 57px;
}

.cmMidSectionL {
  grid-column: span 7;
}

.cmMidSectionR {
  grid-column: span 5;
}

.fjbac {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dmBlueBox {
  background: #418bf8;
  border-radius: 4px;
  padding: 12px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 22px;
}

.dmBlueBoxG {
  grid-column: span 8;
}

.cbVenue {
  grid-column: span 4;
}

.dmBlueBoxG {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
  align-items: center;
  position: relative;
  width: 100%;
}

.dmBlueBoxG::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  margin: auto;
  width: 1px;
  height: 50px;
  background-color: rgb(235, 235, 235);
}

.dmBlueBoxG::before {
  content: "";
  position: absolute;
  top: 19px;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background-color: rgb(235, 235, 235);
}

.dmBlueBoxI {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dmBlueBoxI span {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 8.21px;
  line-height: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
}

.dmBlueBoxI p {
  font-family: "Gilroy";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: white;
}

@media (max-width: 768px) {
  .customModalMain .customModalBosy {
    max-width: calc(100% - 15px);
  }

  .dmBlueBoxG {
    gap: 10px;
  }

  .cmlogo {
    max-width: 150px;
    object-fit: contain;
    height: 50px;
  }

  .cmMidSection {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    align-items: start;
    gap: 30px;
  }

  .dmBlueBoxI p {
    font-size: 17px;
  }

  .dmBlueBox {
    display: flex;
    width: 100%;
  }

  /* .cmFoot a:first-child, */
  .cmFoot a {
    padding: 12px;
  }

  .dmBlueBoxG::after,
  .dmBlueBoxG::before,
  /* .cmFoot a:first-child svg, */
  .cbVenue,
  .cmOverlay {
    display: none;
  }

  .dmBlueBoxI span {
    font-size: 10px;
  }

  .cmFoot a {
    /* display: none; */
    width: 100%;
  }

  .cmDate {
    width: 100%;
    height: 177px;
    object-fit: contain;
    object-position: left;
  }

  #overview {
    min-height: calc(100vh - 230px) !important;
    padding-top: 20px;
  }
}