body .mcx-module,
body .mcx-module *,
body .mcx-module *::before,
body .mcx-module *::after {
  box-sizing: border-box;
  font-family: "Space Grotesk", "Plus Jakarta Sans", "Aptos Display", "Geist", "Manrope", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

body .mcx-module {
  --mcx-primary: #e10600;
  --mcx-card-color: var(--mcx-primary);
  margin: 42px 0 34px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.12);
  border-bottom: 1px solid rgba(17, 24, 39, 0.10);
  color: #111827;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: normal;
  isolation: isolate;
}

.mcx-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0 0 20px;
}

.mcx-kicker {
  display: block;
  width: 3px;
  min-width: 3px;
  height: 42px;
  margin-top: 4px;
  border-radius: 0;
  background: var(--mcx-primary);
}

.mcx-head h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(23px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 780;
  letter-spacing: -0.045em;
}

.mcx-head p {
  margin: 7px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.45;
}

.mcx-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mcx-grid-1 { grid-template-columns: minmax(0, 1fr); }
.mcx-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mcx-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mcx-grid-4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.mcx-card {
  min-width: 0;
}

.mcx-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none !important;
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.mcx-card-link:hover,
.mcx-card-link:focus {
  border-color: var(--mcx-card-color, var(--mcx-primary));
  background: #fbfbfb;
  outline: none;
}

.mcx-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 14px 14px 0 0;
}

.mcx-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mcx-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  max-width: calc(100% - 20px);
  padding: 5px 8px 4px;
  border-radius: 14px;
  color: #fff;
  background: var(--mcx-card-color, var(--mcx-primary));
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  box-shadow: none;
}

.mcx-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px;
  height: 48px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.15);
}

.mcx-play::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--mcx-card-color, var(--mcx-primary));
}

.mcx-live-dot {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #12b76a;
  box-shadow: 0 0 0 4px rgba(18, 183, 106, 0.26);
}

.mcx-card-body {
  padding: 13px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  flex: 1 1 auto;
}

.mcx-card-body h3 {
  margin: 0;
  display: block;
  color: #0b0f19;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: -0.035em;
  min-height: 4.3em;
}

.mcx-card-body p {
  display: none;
}

.mcx-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 13px;
  color: #555f6f;
  font-size: 12px;
  line-height: 1.25;
}

.mcx-meta small {
  display: block;
  flex-basis: 100%;
  color: #7b8494;
  font-size: 11px;
}

.mcx-site-dot {
  width: 12px;
  height: 12px;
  border-radius: 14px;
  background: var(--mcx-card-color, var(--mcx-primary));
  box-shadow: none;
}

.mcx-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: 100%;
  margin-top: 13px;
  padding: 0 14px;
  border: 1px solid var(--mcx-card-color, var(--mcx-primary));
  border-radius: 12px;
  color: var(--mcx-card-color, var(--mcx-primary));
  background: #fff;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 780;
  text-align: center;
}

.mcx-card-link:hover .mcx-card-cta,
.mcx-card-link:focus .mcx-card-cta {
  background: var(--mcx-card-color, var(--mcx-primary));
  color: #fff;
}

.mcx-more {
  margin-top: 28px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(17, 24, 39, 0.10);
  background: #fff;
  border-radius: 0;
  box-shadow: none;
}

.mcx-more h3 {
  margin: 0 0 14px;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.mcx-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  overflow-x: auto;
  border-bottom: 0;
  margin: 0 0 18px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.mcx-tabs::-webkit-scrollbar {
  display: none;
}

body .mcx-module .mcx-tab {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border: 1px solid rgba(17, 24, 39, 0.08) !important;
  border-radius: 12px !important;
  background: #f4f6f8 !important;
  color: #111827 !important;
  font: inherit !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  text-transform: none !important;
  letter-spacing: -0.01em !important;
  text-align: center !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

body .mcx-module .mcx-tab:hover,
body .mcx-module .mcx-tab:focus {
  background: #eef2f5 !important;
  border-color: rgba(17, 24, 39, 0.12) !important;
  outline: none !important;
}

body .mcx-module .mcx-tab.is-active {
  color: #fff !important;
  background: #111827 !important;
  border-color: #111827 !important;
}

.mcx-tab-panel {
  display: none;
}

.mcx-tab-panel.is-active {
  display: block;
}

.mcx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mcx-card-mini .mcx-card-link {
  border-radius: 14px;
  box-shadow: none;
}

.mcx-card-mini .mcx-badge,
.mcx-card-mini .mcx-play,
.mcx-card-mini .mcx-live-dot {
  display: none;
}

.mcx-card-mini .mcx-card-body {
  padding: 11px;
}

.mcx-card-mini .mcx-card-body h3 {
  font-size: 15px;
  letter-spacing: -0.025em;
  min-height: 4.2em;
}

.mcx-card-mini .mcx-card-body p,
.mcx-card-mini .mcx-card-cta {
  display: none;
}


.mcx-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
  align-items: center;
  margin: 0 0 24px;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.10);
  border-radius: 18px;
  background: linear-gradient(135deg, #0b0f19 0%, #101827 56%, #0b3b3b 100%);
  color: #fff;
  overflow: hidden;
}

.mcx-news-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.mcx-news-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.mcx-news-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.mcx-news-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.45;
}

.mcx-news-action {
  min-width: 0;
}

.mcx-news-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: stretch;
}

.mcx-news-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mcx-news-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 0 13px;
  color: #111827;
  background: #fff;
  font: inherit;
  font-size: 14px;
  box-shadow: none;
}

.mcx-news-form input:focus {
  outline: none;
  border-color: #35d4c7;
}

.mcx-news-form button {
  min-height: 50px;
  border: 1px solid #35d4c7;
  border-radius: 14px;
  padding: 0 18px;
  background: #35d4c7;
  color: #062521;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: none;
  white-space: nowrap;
  width: 100%;
}

.mcx-news-form button:hover,
.mcx-news-form button:focus {
  background: #70efe4;
  border-color: #70efe4;
}

.mcx-news-embed {
  width: 100%;
}

.mcx-news-embed form,
.mcx-news-embed input,
.mcx-news-embed button {
  max-width: 100%;
}

.mcx-news-legal {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}


.mcx-video-feature {
  margin: 0 0 28px;
  padding: 18px;
  border-radius: 18px;
  background: #070a12;
  color: #fff;
  border: 1px solid rgba(17, 24, 39, 0.10);
  box-shadow: none;
}

.mcx-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
}

.mcx-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mcx-video-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: end;
  margin-top: 16px;
}

.mcx-video-label {
  grid-column: 1 / -1;
  display: inline-flex;
  width: fit-content;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.mcx-video-copy h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.mcx-video-copy p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.74);
  font-size: 15px;
  line-height: 1.45;
}

.mcx-video-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: #fff;
  color: #070a12 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .mcx-video-copy {
    grid-template-columns: 1fr;
  }

  .mcx-video-link {
    width: 100%;
  }
  .mcx-video-copy { padding: 4px 2px 2px; }

.mcx-card-grid,
  .mcx-grid-3,
  .mcx-grid-4,
  .mcx-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mcx-newsletter {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}

@media (max-width: 640px) {
.mcx-hide-mobile {
    display: none !important;
  }

  .mcx-module {
    margin: 34px 0 26px;
    padding-top: 22px;
  }

  .mcx-head {
    gap: 12px;
  }

  .mcx-kicker {
    height: 38px;
  }

  .mcx-head h2 {
    font-size: 22px;
    line-height: 1.1;
  }

  .mcx-card-grid,
  .mcx-grid-2,
  .mcx-grid-3,
  .mcx-grid-4,
  .mcx-mini-grid {
    grid-template-columns: 1fr;
  }

  .mcx-card-body h3 {
    font-size: 15px;
  }

  .mcx-more {
    margin-top: 24px;
    padding-top: 22px;
  }

  .mcx-more h3 {
    font-size: 22px;
  }

  .mcx-tabs {
    gap: 18px;
  }

  .mcx-newsletter {
    gap: 16px;
    margin: 0 0 20px;
    padding: 20px;
  }

  .mcx-news-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mcx-news-icon {
    width: 48px;
    height: 48px;
  }

  .mcx-news-form {
    grid-template-columns: 1fr;
  }

  .mcx-news-form button {
    width: 100%;
  }
}
