
.mph-featured-insights {
  width: 100%;
  margin: 42px auto;
}

.mph-fi-header {
  margin-bottom: 22px;
}

.mph-fi-title {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.mph-fi-subtitle {
  margin: 0;
  max-width: 760px;
  opacity: .78;
  line-height: 1.65;
}

.mph-fi-grid {
  display: grid;
  grid-template-columns: repeat(var(--mph-cols), minmax(0, 1fr));
  gap: 24px;
}

.mph-fi-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(17,24,39,.10);
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(17,24,39,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mph-fi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(17,24,39,.10);
}

.mph-fi-image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f4f6;
}

.mph-fi-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mph-fi-content {
  padding: 20px;
}

.mph-fi-date {
  font-size: .82rem;
  opacity: .62;
  margin-bottom: 8px;
}

.mph-fi-card-title {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.mph-fi-card-title a {
  color: inherit;
  text-decoration: none;
}

.mph-fi-excerpt {
  margin: 0 0 18px;
  line-height: 1.6;
  opacity: .78;
}

.mph-fi-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  background: var(--mph-btn);
  color: var(--mph-btn-text) !important;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  line-height: 1.2;
  transition: opacity .2s ease, transform .2s ease;
}

.mph-fi-button:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.mph-fi-view-all-wrap {
  margin-top: 22px;
}

.mph-fi-view-all {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 1024px) {
  .mph-fi-grid {
    grid-template-columns: repeat(var(--mph-tablet-cols), minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .mph-featured-insights {
    margin: 30px auto;
  }

  .mph-fi-grid {
    grid-template-columns: repeat(var(--mph-mobile-cols), minmax(0, 1fr));
    gap: 16px;
  }

  .mph-fi-content {
    padding: 16px;
  }
}


/* =========================================================
   v1.4.2 — Match Article Builder Magazine column width
   ========================================================= */

/*
 * Featured Insights should visually belong to the article, not read as a
 * full-width page section. Match the Smart Article Builder article column:
 * max 1040px, centered, with the same responsive side gutters.
 */
.mph-fi-section{
  width:min(calc(100% - 44px), 1040px)!important;
  max-width:1040px!important;
  margin-left:auto!important;
  margin-right:auto!important;
  box-sizing:border-box!important;
}

/* Prevent an outer theme/container rule from stretching the internal layout. */
.mph-fi-section .mph-fi-inner{
  width:100%!important;
  max-width:none!important;
  margin-left:0!important;
  margin-right:0!important;
}

/* Header and grid share exactly the same article-column edges. */
.mph-fi-section .mph-fi-header,
.mph-fi-section .mph-fi-grid{
  width:100%!important;
  max-width:none!important;
  margin-left:0!important;
  margin-right:0!important;
}

/* Cards fill the available magazine column; they do not force a wider section. */
.mph-fi-section .mph-fi-card{
  min-width:0!important;
  max-width:100%!important;
}

@media (max-width:640px){
  .mph-fi-section{
    width:min(calc(100% - 28px), 1040px)!important;
  }
}
