/*css for individual success story*/

main.container {
      max-width: 700px;
      padding-top: 36px;
      padding-bottom: 56px;
    }
    .story-photo {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 50%;
      box-shadow: 0 2px 15px rgba(26,35,126,0.09);
      margin-bottom: 1rem;
      border: 4px solid #e3eafc;
    }
    .story-heading {
      color: #1a237e;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1.8rem;
    }
    .info-name {
      font-size: 1.5rem;
      font-weight: 600;
      color: #1a237e;
    }
    .info-designation {
      font-size: 1.05rem;
      color: #444;
      margin-bottom: 1.2rem;
      font-style: italic;
    }
    .desc {
      font-size: 1.15rem;
      color: #222;
      line-height: 1.7;
    }
    .breadcrumb {
      --bs-breadcrumb-divider: ">";
      background: transparent;
      padding-left: 0;
      margin-bottom: 24px;
    }
    @media (max-width: 576px) {
      .story-photo {
        width: 100px;
        height: 100px;
      }
      main.container { padding-top: 24px; }
    }