/* ==========================================================================
   TRUST STRIP SECTION
   ========================================================================== */

   .mfnxt-trust-strip {
    padding: 12px 0;
    background: var(--c-white);
    border-bottom: 1px solid var(--c-line);
  }
  
  .mfnxt-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  
  /* ==========================================================================
     TRUST CARD COMPONENT
     ========================================================================== */
  
  .trust-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px 14px;
    background: var(--c-white);
    border: 1px solid var(--c-line);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
      transform 0.3s var(--ease),
      box-shadow 0.3s var(--ease),
      border-color 0.3s var(--ease);
  }
  
  .trust-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 92, 200, 0.16);
    box-shadow: var(--shadow-md);
  }
  
  /* ==========================================================================
     MEDIA ELEMENTS (LOGOS & ICONS)
     ========================================================================== */
  
  /* AMFI Logo Wrapper */
  .trust-logo {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 92, 200, 0.1);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
  }
  
  .trust-logo img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
  }
  
  /* Standardized Icon Wrapper */
  .trust-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
  }
  
  /* Theme Color Contexts */
  .trust-icon.navy {
    color: #ffffff;
    background: #003b75;
  }
  
  .trust-icon.gold {
    color: #b98500;
    background: #fff7dd;
  }
  
  .trust-icon.red {
    color: #ffffff;
    background: var(--secondary-color);
  }
  
  /* ==========================================================================
     TYPOGRAPHY & CONTENT
     ========================================================================== */
  
  .trust-text {
    min-width: 0;
  }
  
  .trust-text strong {
    display: block;
    margin: 0;
    color: var(--c-ink);
    font-family: var(--third-font);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;
  }
  
  .trust-text > span {
    display: block;
    margin-top: 3px;
    color: var(--c-muted);
    font-family: var(--third-font);
    font-size: 11px;
    line-height: 1.3;
  }
  
  /* Rating Component overrides */
  .trust-rating {
    display: flex !important;
    align-items: center;
    gap: 7px;
    margin: 0 !important;
    white-space: nowrap;
  }
  
  .trust-rating > span:first-child {
    font-size: 14px;
    font-weight: 700;
  }
  
  .trust-rating .stars {
    color: #d4af37;
    font-size: 11px;
    letter-spacing: 1px;
    line-height: 1;
  }
  
  /* ==========================================================================
     RESPONSIVE MEDIA QUERIES
     ========================================================================== */
  
  /* Tablet View (Horizontal Slide Layout) */
  @media (max-width: 991px) {
    .mfnxt-trust-grid {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding: 2px 2px 5px;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }
  
    .mfnxt-trust-grid::-webkit-scrollbar {
      display: none;
    }
  
    .trust-card {
      min-width: 255px;
      flex: 0 0 255px;
    }
  }
  
  /* Mobile View (Scaled Down Sizing) */
  @media (max-width: 576px) {
    .mfnxt-trust-strip {
      padding: 9px 0;
    }
  
    .trust-card {
      min-width: 235px;
      flex-basis: 235px;
      padding: 9px 12px;
      gap: 10px;
      border-radius: 14px;
    }
  
    .trust-logo,
    .trust-icon {
      width: 38px;
      height: 38px;
      flex-basis: 38px;
    }
  
    .trust-logo img {
      width: 31px;
      height: 31px;
    }
  
    .trust-icon {
      font-size: 14px;
    }
  
    .trust-text strong {
      font-size: 12px;
    }
  
    .trust-text > span {
      font-size: 10px;
    }
  }
  