/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* ============================
   Mortgage.Expert Home Template
   Scoped styling (no overlap)
   ============================ */

/* WordPress adds body class based on template filename:
   page-template-page-home.php or similar
   So we scope to the container .mx3-home as well. */

.mx3-home {
  --bg:#ffffff;
  --ink:#0B1220;
  --muted:#5A6678;
  --muted2:#7A879A;
  --line: rgba(15,23,42,.08);

  --p:#0EA5A4;
  --p2:#22C55E;
  --p3:#7C3AED;

  --shadow: 0 18px 50px rgba(2,6,23,.08);
  --shadow2: 0 10px 24px rgba(2,6,23,.07);

  color: var(--ink);
  background:
    radial-gradient(900px 480px at 18% 0%, rgba(14,165,164,.10), transparent 60%),
    radial-gradient(820px 520px at 78% 6%, rgba(34,197,94,.10), transparent 58%),
    radial-gradient(720px 520px at 56% 70%, rgba(124,58,237,.06), transparent 62%),
    var(--bg);
}

/* Remove default entry spacing inside template only */
.mx3-home .entry-content,
.mx3-home .entry-content > * { margin: 0 !important; }

.mx3-home .mx3-wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

.mx3-home h1, .mx3-home h2, .mx3-home h3, .mx3-home p { margin: 0; }

.mx3-home .mx3-h1{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -1px;
  margin-bottom: 12px;
}
.mx3-home .mx3-h2{
  font-size: 28px;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
}
.mx3-home .mx3-sub{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 70ch;
}

/* Buttons */
.mx3-home .mx3-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 14px;
  text-decoration:none !important;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink) !important;
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.mx3-home .mx3-btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
.mx3-home .mx3-btn--primary{
  border:none;
  color:#fff !important;
  background: linear-gradient(135deg, var(--p), var(--p2));
}
.mx3-home .mx3-btn--primary:hover{ box-shadow: var(--shadow); }
.mx3-home .mx3-btn--ghost{
  background: rgba(15,23,42,.03);
}
.mx3-home .mx3-btn--full{
  width:100%;
}

/* Sections */
.mx3-home .mx3-hero{ padding: 18px 0 18px; }
.mx3-home .mx3-sec{ padding: 34px 0; }

/* Pills */
.mx3-home .mx3-pills{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 14px; }
.mx3-home .mx3-pill{
  background: rgba(15,23,42,.04);
  border: 1px solid rgba(15,23,42,.06);
  color: rgba(11,18,32,.78);
  font-weight: 900;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 999px;
}

/* Cards */
.mx3-home .mx3-card{
  background:#fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow2);
}
.mx3-home .mx3-cardTitle{
  font-size: 14px;
  font-weight: 950;
  color: rgba(11,18,32,.86);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.mx3-home .mx3-cardText{
  color: var(--muted);
  line-height:1.65;
}
.mx3-home .mx3-card--cta{ margin-top:16px; }

.mx3-home .mx3-actions{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.mx3-home .mx3-note{ margin-top: 12px; color: var(--muted2); font-size: 13px; line-height: 1.6; }

/* Strip blocks (section separation) */
.mx3-home .mx3-block{
  margin-top: 16px;
  border-radius: 28px;
  padding: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow2);
}

/* HERO ART */
.mx3-home .mx3-heroArt{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.06);
  background:
    radial-gradient(900px 520px at 18% 10%, rgba(255,190,0,.35), transparent 55%),
    radial-gradient(760px 520px at 62% 40%, rgba(14,165,164,.18), transparent 60%),
    radial-gradient(680px 520px at 82% 30%, rgba(124,58,237,.10), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
  padding: 26px;
  min-height: 360px;
}

.mx3-home .mx3-heroCopy{
  position:relative;
  z-index:2;
  max-width: 54%;
}


.mx3-home .mx3-blob{
  position:absolute;
  left:-90px;
  top:-80px;
  width: 520px;
  height: 520px;
  background: rgba(255,190,0,.35);
  border-radius: 48% 52% 55% 45% / 48% 45% 55% 52%;
}

/* Widget */
.mx3-home .mx3-widget{
  position: relative;
  max-width: 420px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 16px 50px rgba(2,6,23,.12);
  border-radius: 18px;
  padding: 14px;
  margin-top: 18px;
}
.mx3-home .mx3-tabs{
  display:flex;
  gap:8px;
  padding: 6px;
  background: rgba(15,23,42,.05);
  border-radius: 14px;
}
.mx3-home .mx3-tab{
  flex:1;
  border:0;
  border-radius: 12px;
  padding: 10px;
  font-weight: 950;
  background: transparent;
  cursor: pointer;
  color: rgba(11,18,32,.75);
}
.mx3-home .mx3-tab[aria-selected="true"]{
  background:#fff;
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
  color: var(--ink);
}
.mx3-home .mx3-field{ margin-top: 12px; display:flex; flex-direction: column; gap: 8px; }
.mx3-home .mx3-label{ font-size: 12px; font-weight: 900; color: rgba(11,18,32,.70); }
.mx3-home .mx3-input{
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  padding: 0 12px;
  font-weight: 800;
  outline: none;
  background: #fff;
}
.mx3-home .mx3-radioRow{ display:flex; gap: 16px; align-items:center; margin-top: 6px; }
.mx3-home .mx3-radioRow label{ font-weight: 800; color: rgba(11,18,32,.75); font-size: 13px; }
.mx3-home .mx3-widgetCtas{ margin-top:12px; display:grid; gap:10px; }

/* Header */
.mx3-home .mx3-top{ position: sticky; top:0; z-index: 50; backdrop-filter: blur(10px); }
.mx3-home .mx3-ann{ background: rgba(11,18,32,.92); color:#fff; font-weight:900; font-size:13px; }
.mx3-home .mx3-annInner{ display:flex; gap:10px; justify-content:center; padding: 10px 22px; }
.mx3-home .mx3-ann a{ color:#fff; text-decoration: underline; font-weight:950; }

.mx3-home .mx3-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 16px 22px;
  background: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.mx3-home .mx3-brand{ display:flex; align-items:center; gap:10px; text-decoration:none !important; color: var(--ink) !important; }
.mx3-home .mx3-mark{
  width: 34px; height: 34px; border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,190,0,.55), transparent 55%),
              linear-gradient(135deg, var(--p), var(--p2));
  box-shadow: 0 14px 40px rgba(2,6,23,.10);
}
.mx3-home .mx3-brandText{ font-size:16px; letter-spacing:-.3px; }
.mx3-home .mx3-brandText b{ font-weight: 1000; }
.mx3-home .mx3-brandText span{ color: rgba(11,18,32,.65); font-weight: 950; }

.mx3-home .mx3-menu{ display:flex; gap:16px; align-items:center; flex-wrap:wrap; }
.mx3-home .mx3-menu a{
  text-decoration:none !important;
  font-weight: 950;
  font-size: 13px;
  color: rgba(11,18,32,.78) !important;
}
.mx3-home .mx3-menu a:hover{ color: rgba(11,18,32,.95) !important; }
.mx3-home .mx3-navCtas{ display:flex; gap:10px; align-items:center; }
.mx3-home .mx3-burger{ display:none; border:0; background: rgba(15,23,42,.04); border-radius: 12px; padding: 10px 12px; font-weight: 950; }
.mx3-home .mx3-mMenu{
  padding: 12px 22px 18px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(15,23,42,.06);
}
.mx3-home .mx3-mMenu a{ display:block; padding: 10px 0; font-weight: 950; text-decoration:none !important; color: rgba(11,18,32,.85) !important; }

/* Most read scroll */
.mx3-home .mx3-scroll{
  margin-top: 16px;
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}
.mx3-home .mx3-story{
  scroll-snap-align: start;
  min-width: 320px;
  max-width: 360px;
  border-radius: 22px;
  padding: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,23,42,.06);
  box-shadow: var(--shadow2);
  text-decoration:none !important;
  color: var(--ink) !important;
  transition: transform .12s ease, box-shadow .12s ease;
}
.mx3-home .mx3-story:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.mx3-home .mx3-storyArt{
  height: 110px;
  border-radius: 18px;
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(255,190,0,.45), transparent 55%),
    radial-gradient(520px 220px at 80% 30%, rgba(14,165,164,.22), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
  border: 1px solid rgba(15,23,42,.06);
}
.mx3-home .mx3-storyT{ margin-top: 12px; font-weight: 1000; letter-spacing:-.3px; line-height:1.25; }
.mx3-home .mx3-storyMeta{ margin-top: 10px; font-weight: 950; color: rgba(11,18,32,.70); }

/* 2-column grid blocks */
.mx3-home .mx3-grid2{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  margin-top: 16px;
}

/* Mini cards */
.mx3-home .mx3-miniGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.mx3-home .mx3-miniCard{
  display:block;
  text-decoration:none !important;
  color: inherit !important;
  background:#fff;
  border: 1px solid rgba(15,23,42,.06);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow2);
}
.mx3-home .mx3-miniCard span{
  display:block;
  margin-top:6px;
  color: var(--muted);
  font-size:13px;
  line-height:1.45;
}

/* Footer */
.mx3-home .mx3-footer{
  padding: 26px 0 32px;
  color: rgba(11,18,32,.70);
}
.mx3-home .mx3-footerInner{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:space-between;
}
.mx3-home .mx3-footerName{
  font-weight:950;
  color: rgba(11,18,32,.92);
  letter-spacing:-.2px;
}
.mx3-home .mx3-footerLinks{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.mx3-home .mx3-footerLinks a{
  color: rgba(11,18,32,.78) !important;
  text-decoration:none !important;
  font-weight: 900;
  font-size: 13px;
}
.mx3-home .mx3-footerLinks a:hover{ color: rgba(11,18,32,.95) !important; }

.mx3-home .mx3-footerFine{ margin-top: 12px; }

/* Disclosure */
.mx3-home .mx3-disclosure{
  margin-top: 14px;
  color: var(--muted2);
}

/* Floating broker CTA (Path B reference only) */
.mx3-home .mx3-floatBroker{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(14,165,164,.95));
  color:#fff !important;
  font-weight: 1000;
  text-decoration:none !important;
  box-shadow: 0 18px 60px rgba(2,6,23,.18);
}

/* Responsive */
@media(max-width: 980px){
  .mx3-home .mx3-menu, .mx3-home .mx3-navCtas{ display:none; }
  .mx3-home .mx3-burger{ display:inline-flex; }
  .mx3-home .mx3-floatBroker{ left: 14px; right: 14px; text-align:center; }
  .mx3-home .mx3-heroPhoto{ display:none; }
  .mx3-home .mx3-heroCopy{ max-width: 100%; }
  .mx3-home .mx3-grid2{ grid-template-columns: 1fr; }
  .mx3-home .mx3-miniGrid{ grid-template-columns: 1fr; }
}


/* Hide Blocksy header/footer only on page-home.php template */
body.page-template-page-home .site-header,
body.page-template-page-home .site-footer {
  display: none !important;
}
body.page-template-page-home #main {
  padding-top: 0 !important;
}

body.page-template-page-home-php .site-header,
body.page-template-page-home-php .site-footer {
  display: none !important;
}
body.page-template-page-home-php #main {
  padding-top: 0 !important;
}

.mx3-home .mx3-storyArt{
  height: 110px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.06);
  background-size: cover;
  background-position: center;
}

.mx3-home .mx3-storyArt.is-fallback{
  background:
    radial-gradient(500px 220px at 20% 0%, rgba(255,190,0,.45), transparent 55%),
    radial-gradient(520px 220px at 80% 30%, rgba(14,165,164,.22), transparent 55%),
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
}

.mx3-home .mx3-sec--tight{ padding: 18px 0 8px; }

.mx3-home .mx3-brokerStrip{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  text-decoration:none !important;
  color: inherit !important;

  border-radius: 22px;
  padding: 18px 18px;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 55px rgba(2,6,23,.10);

  background:
    radial-gradient(800px 220px at 12% 20%, rgba(124,58,237,.18), transparent 55%),
    radial-gradient(800px 220px at 72% 30%, rgba(14,165,164,.18), transparent 55%),
    rgba(255,255,255,.92);
}

.mx3-home .mx3-brokerBadge{
  display:inline-flex;
  font-weight: 1000;
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.18);
  color: rgba(11,18,32,.85);
  margin-bottom: 8px;
}

.mx3-home .mx3-brokerStripT{
  font-weight: 1000;
  font-size: 16px;
  letter-spacing: -.2px;
}

.mx3-home .mx3-brokerStripS{
  margin-top: 6px;
  color: rgba(11,18,32,.68);
  font-weight: 850;
  font-size: 13px;
  line-height: 1.5;
  max-width: 75ch;
}

.mx3-home .mx3-brokerCta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 1000;
  color:#fff;
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(14,165,164,.95));
  box-shadow: 0 16px 40px rgba(2,6,23,.14);
  white-space: nowrap;
}

@media(max-width: 980px){
  .mx3-home .mx3-brokerStrip{ flex-direction: column; align-items: flex-start; }
  .mx3-home .mx3-brokerCta{ width: 100%; text-align:center; }
}

/* Hide Blocksy header/footer ONLY for the Home template */
body.page-template-page-home .site-header,
body.page-template-page-home .site-footer{
  display:none !important;
}
body.page-template-page-home #main{
  padding-top: 0 !important;
}

/* Some WP installs use this class instead */
body.page-template-page-home-php .site-header,
body.page-template-page-home-php .site-footer{
  display:none !important;
}
body.page-template-page-home-php #main{
  padding-top: 0 !important;
}

/* === Home template: kill Blocksy header/footer (Blocksy uses ct-*) === */
body.page-template-page-home-php .ct-header,
body.page-template-page-home-php [data-id="header"],
body.page-template-page-home-php header.ct-header,
body.page-template-page-home-php .ct-footer,
body.page-template-page-home-php footer.ct-footer,
body.page-template-page-home-php [data-id="footer"]{
  display: none !important;
}

/* Remove top spacing Blocksy adds around content */
body.page-template-page-home-php #main,
body.page-template-page-home-php .site-content,
body.page-template-page-home-php .content-area{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.page-template-page-home-php #main { padding-top: 0 !important; }

/* =========================
   Custom Footer (Homepage)
   ========================= */

.mx3-home .mx3-footer{
  margin-top: 40px;
  padding: 36px 0 26px;
  border-top: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.85);
}

.mx3-home .mx3-footerTop{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.mx3-home .mx3-footerBrand{
  font-weight: 1000;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.mx3-home .mx3-footerLogo span{
  opacity: .7;
}

.mx3-home .mx3-footerTitle{
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(11,18,32,.75);
}

.mx3-home .mx3-footerText{
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,18,32,.75);
  max-width: 48ch;
}

.mx3-home .mx3-footerText.small{
  font-size: 13px;
}

.mx3-home .mx3-footerCol ul{
  list-style:none;
  padding:0;
  margin:0;
}

.mx3-home .mx3-footerCol li{
  margin-bottom: 8px;
}

.mx3-home .mx3-footerCol a{
  text-decoration:none !important;
  font-weight: 850;
  font-size: 14px;
  color: rgba(11,18,32,.75) !important;
}

.mx3-home .mx3-footerCol a:hover{
  color: rgba(11,18,32,.95) !important;
}

.mx3-home .mx3-footerBottom{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(15,23,42,.12);
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.mx3-home .mx3-footerDisclaimer{
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(11,18,32,.65);
  max-width: 80ch;
}

.mx3-home .mx3-footerMeta{
  font-size: 12.5px;
  font-weight: 900;
  color: rgba(11,18,32,.55);
}

/* Responsive */
@media(max-width: 980px){
  .mx3-home .mx3-footerTop{
    grid-template-columns: 1fr;
  }
}


.mx3-home .mx3-heroPhoto{
  position:absolute; right:-20px; top:0; height:100%; width:46%;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
  background-image:url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=1600&q=80');
  background-size:cover;
  background-position:center;
  filter:saturate(1.05) contrast(1.02);
  opacity:.95;
}

.mx3-home .mx3-strip{
  height: 1px;
  margin: 36px auto;
  max-width: 1180px;
  border-radius: 999px;
  position: relative;
  opacity: .9;
}

.mx3-home .mx3-strip--a{
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.35), rgba(14,165,164,.35), transparent);
}
.mx3-home .mx3-strip--b{
  background: linear-gradient(90deg, transparent, rgba(255,190,0,.40), rgba(14,165,164,.28), transparent);
}
.mx3-home .mx3-strip--c{
  background: linear-gradient(90deg, transparent, rgba(15,23,42,.18), rgba(124,58,237,.22), transparent);
}

.mx3-home .mx3-mostGrid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mx3-home .mx3-mostCard{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  text-decoration:none !important;
  color: inherit !important;
  border: 1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 28px rgba(2,6,23,.06);
  transition: transform .12s ease, box-shadow .12s ease;
}

.mx3-home .mx3-mostCard:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(2,6,23,.10);
}

.mx3-home .mx3-mostThumb{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex: 0 0 auto;
  border: 1px solid rgba(15,23,42,.08);
  background-size: cover;
  background-position: center;
}

.mx3-home .mx3-mostThumb.is-fallback{
  background:
    radial-gradient(300px 180px at 20% 20%, rgba(255,190,0,.45), transparent 60%),
    radial-gradient(260px 180px at 80% 40%, rgba(14,165,164,.25), transparent 60%),
    linear-gradient(135deg, rgba(15,23,42,.06), rgba(15,23,42,.02));
}

.mx3-home .mx3-mostBody{ min-width: 0; }
.mx3-home .mx3-mostTitle{
  font-weight: 1000;
  font-size: 13.5px;
  line-height: 1.25;
  letter-spacing: -.2px;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

.mx3-home .mx3-mostMeta{
  margin-top: 6px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(11,18,32,.58);
}

.mx3-home .mx3-mostArrow{
  margin-left:auto;
  font-weight: 1000;
  opacity: .55;
}

@media(max-width: 980px){
  .mx3-home .mx3-mostGrid{ grid-template-columns: 1fr; }
  .mx3-home .mx3-mostThumb{ width: 56px; height: 56px; }
}

.mx3-home .mx3-block{
  position: relative;
  overflow: hidden;
}

.mx3-home .mx3-block:before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.18), transparent 60%);
  pointer-events:none;
}

.mx3-home .mx3-block:after{
  content:"";
  position:absolute;
  inset:auto auto -110px -90px;
  width: 320px;
  height: 320px;
  border-radius: 48% 52% 55% 45% / 48% 45% 55% 52%;
  background: radial-gradient(circle at 30% 30%, rgba(14,165,164,.16), transparent 62%);
  pointer-events:none;
}

/* === HARD STOP ALL HORIZONTAL OVERFLOW === */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix hero overflow math */
.mx3-home .mx3-heroArt{
  box-sizing: border-box;
}

.mx3-home .mx3-heroPhoto{
  right: 0;              /* REMOVE negative offset */
  width: 45%;            /* slightly safer */
  max-width: 520px;      /* hard cap */
}

/* Prevent any long titles/urls from breaking cards */
.mx3-home .mx3-mostTitle,
.mx3-home .mx3-storyT{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Make sure flex children don't overflow */
.mx3-home .mx3-mostBody{
  min-width: 0;
}
