 /* banner css */
    .author-banner {
      background: #394559;
      width: 100%;
      padding: 0px 0 40px;
      word-break: break-word;
      word-wrap: break-word;
    }
    .breadcrums{ 
      padding-top:8px; 
      padding-bottom:8px; 
      margin-bottom: 40px;
    }
    .breadcrumbs > span{
      display: flex;
      align-items: center;
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      line-height: 20px;
      font-weight: 400;
      color: #C4C7CD;
      gap: 8px;
    }
    .breadcrumbs > span span, .breadcrumbs > span span a{
      font-family: 'Inter', sans-serif;
      font-size: 12px;
      line-height: 20px;
      font-weight: 400;
      color: #C4C7CD;
      text-decoration: none;
    }
    .author-banner__inner {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    /* Avatar */
    .author-banner__avatar {
      width: 210px;
      height: 210px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      background: #8997B1;
    }
    .author-banner__avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      object-position: top;
    }

    /* Content container */
    .author-banner__content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      flex: 1;
      max-width: 800px;
    }

    /* Top section: name + role + description */
    .author-banner__top {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    /* Name row: name + social icons */
    .author-banner__name-row {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .author-banner__name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 36px;
      line-height: 40px;
      color: #ffffff;
      margin-bottom: 0;
    }

    /* Social icons */
    .author-banner__socials {
      display: flex;
      gap: 8px;
    }
    .author-banner__social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .author-banner__social-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    .author-banner__social-btn svg {
      width: 16px;
      height: 16px;
    }

    /* Role row: title + dot + since */
    .author-banner__role-row {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    .author-banner__role {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      color: #F68727;
    }
    .author-banner__role-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #F68727;
      flex-shrink: 0;
    }
    .author-banner__since {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      color: #F68727;
    }

    /* Description */
    .author-banner__desc {
      font-family: Arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 25px;
      color: #C4C7CD;
      margin-bottom: 0;
    }
    
    /* CTA Button */
    .author-banner__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 0 20px;
      height: 40px;
      border: 2px solid #DFE6EF;
      border-radius: 30px;
      background: transparent;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      align-self: flex-start;
    }
    
    .author-banner__cta-text {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 17px;
      line-height: 28px;
      color: #F4F7FB;
    }
    .author-banner__cta-icon {
      width: 16px;
      height: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .author-banner__cta-icon svg {
      width: 16px;
      height: 16px;
    }

    /* ===== MOBILE RESPONSIVE ===== */
    @media (max-width: 767px) {
      .breadcrums{
        margin-bottom: 24px;
      }
      .author-banner {
        padding: 0 0 24px;
      }
      .author-banner__inner {
        flex-direction: column;
        align-items: start;
        gap: 24px;
        padding-left: 24px;
        padding-right: 24px;
      }
      .author-banner__avatar {
        width: 160px;
        height: 160px;
      }
      .author-banner__content {
        max-width: 100%;
        align-items: center;
        text-align: center;
      }
      .author-banner__name-row {
        flex-direction: column;
        gap: 8px;
        align-items: start;
      }
      .author-banner__name {
        font-size: 36px;
        line-height: 40px;
        text-align: start;
        margin-top: 0;
      }
      .author-banner__role-row {
        flex-wrap: wrap;
        row-gap: 0;
      }
      .author-banner__desc{
        text-align: left;
      }
    }
    /* banner css */
/* ===== HIGHLIGHTS SECTION ===== */
    .hl-section {
      background: #F4F7FB;
      width: 100%;
      padding: 40px 0;
      word-break: break-word;
      word-wrap: break-word;
    }

    .hl-section__inner {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 24px;
    }

    /* Each highlight item */
    .hl-item {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 16px;
      flex: 1;
      min-width: 0;
    }

    /* Icon box */
    .hl-item__icon {
      width: 44px;
      height: 44px;
      background: #FB5A10;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      padding: 6px;
    }

    .hl-item__icon svg {
      width: 24px;
      height: 24px;
      display: block;
    }

    /* Text content */
    .hl-item__content {
      display: flex;
      flex-direction: column;
      padding-top: 8px;
    }

    .hl-item__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 32px;
      color: #1C2642;
      margin: 0;
    }

    .hl-item__desc {
      font-family: Arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 25px;
      color: #394559;
      margin: 0;
    }

    /* ===== HIGHLIGHTS RESPONSIVE ===== */
    
    @media (max-width: 767px) {
      .hl-section {
        padding: 0;
      }
      .hl-section__inner {
        padding: 24px;
        flex-direction: column;
        gap: 24px;
      }
      .hl-item {
        width: 100%;
        flex: unset;
      }
    }
    
    .abs-section {
      background: #ffffff;
      width: 100%;
      padding: 40px 0;
      word-break: break-word;
      word-wrap: break-word;
    }

    .abs-inner {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    /* ------------------------------------------
       QUOTE BLOCK
    ------------------------------------------ */
    .abs-quote {
      width: 100%;
      margin-bottom: 40px;
    }

    .abs-quote__card {
      background: #FFEFE7;
      padding: 40px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      border-radius: 24px;
    }

    /* decorative bottom-left triangle notch */
    .abs-quote__card::after {
      content: '';
      position: absolute;
      bottom: -40px;
      left: 40px;
      width: 0;
      height: 0;
      border-left: 0 solid #FFEFE7;
      border-right: 40px solid transparent;
      border-top: 40px solid #FFEFE7;
    }

    .abs-quote__icon {
      width: 40px;
      height: 40px;
      flex-shrink: 0;
    }

    .abs-quote__icon svg {
      width: 40px;
      height: 34px;
      display: block;
    }

    .abs-quote__text {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 34px;
      color: #014C6B;
    }

    /* ------------------------------------------
       INFO BLOCK (two columns)
    ------------------------------------------ */
    .abs-info {
      display: flex;
      flex-direction: row;
      gap: 80px;
      align-items: flex-start;
    }

    /* Left column — Bio */
    .abs-bio {
      flex: 0 0 calc(50% - 40px);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .abs-bio__heading {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 30px;
      color: #2B3648;
      margin-bottom: 0;
    }

    .abs-bio__text p{
      font-family: arial, sans-serif;
      font-weight: 400;
      font-size: 16px;
      line-height: 26px;
      color: #5A6473;
    }

    /* Right column — Experience + Education */
    .abs-side {
      flex: 0 0 calc(50% - 40px);
      display: flex;
      flex-direction: column;
      gap: 32px;
    }

    /* ---- Shared section heading ---- */
    .abs-panel__heading {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 22px;
      line-height: 30px;
      color: #2B3648;
      margin-bottom: 16px;
    }

    /* ---- Timeline listing ---- */
    .abs-timeline {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
    }

    /* vertical orange line on the left */
    .abs-timeline::before {
      content: '';
      position: absolute;
      left: 28px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: #FCD3BF;
      z-index: 0;
    }

    /* ---- Bio Item (job / education row) ---- */
    .abs-item {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    /* Icon box — job variant: white bg + peach border */
    .abs-item__icon--job {
      width: 56px;
      height: 56px;
      background: #ffffff;
      border: 4px solid #FFEFE7;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      padding: 6px;
    }

    /* Icon box — education variant: peach bg */
    .abs-item__icon--edu {
      width: 56px;
      height: 56px;
      background: #FFEFE7;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      padding: 8px;
    }

    .abs-item__icon--job svg,
    .abs-item__icon--edu svg {
      width: 32px;
      height: 32px;
      display: block;
    }

    .abs-item__content {
      display: flex;
      flex-direction: column;
      padding-top: 4px;
      gap: 0;
    }

    .abs-item__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 32px;
      color: #1C2642;
    }

    .abs-item__meta {
      display: flex;
      flex-direction: row;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .abs-item__meta-text {
      font-family: arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 25px;
      color: #394559;
    }

    .abs-item__meta-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #FC5910;
      flex-shrink: 0;
    }

    /* =============================================
       MOBILE RESPONSIVE  (≤ 768px)
    ============================================= */
    
    @media (max-width: 767px) {
      .abs-section {
        padding: 40px 0;
      }
      .abs-bio__heading{
        font-size: 24px; 
        line-height: 34px;
        margin-top: 0;
      }
      .abs-bio__text p{ margin-bottom:24px; }
      .abs-bio__text p:last-child{ margin-bottom:0; }
      .abs-inner {
        padding: 0 24px;
        gap: 24px;
      }

      /* Quote */
      .abs-quote__card {
        padding: 24px;
      }

      .abs-quote__card::after {
        left: 24px;
      }


      /* Info → single column */
      .abs-info {
        flex-direction: column;
        gap: 16px;
      }
      .abs-panel__heading{
        margin-top: 0;
      }
      .abs-bio {
        flex: unset;
        width: 100%;
      }

      .abs-side {
        width: 100%;
        gap: 16px;
      }

      /* timeline line adjustments */
      .abs-timeline::before {
        display: none;
      }
      .abs-item{
        position: relative;
      }
      .abs-item:after{
        content: '';
        position: absolute;
        left: 28px;
        top: 55px;
        bottom: -10px;
        width: 1px;
        background: #DFE6EF;
        z-index: 0;
      }
      .abs-item:last-child:after{
         display: none;
      }
      .abs-item__meta {
        gap: 0 8px;
      }
    }

    .art-section {
      background: #F4F7FB;
      width: 100%;
      padding: 40px 0;
      word-break: break-word;
      word-wrap: break-word;
    }

    .art-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    /* ---- Section heading ---- */
    .art-heading {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 24px;
      line-height: 34px;
      color: #2B3648;
      text-align: center;
      margin: 0;
    }

    /* =============================================
       TOP ROW  — featured + 3 small cards
    ============================================= */
    .art-top-row {
      display: flex;
      flex-direction: row;
      gap: 24px;
      align-items: flex-start;
    }

    /* ---- FEATURED card ---- */
    .art-card-featured {
      flex: 0 0 682px;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      text-decoration: none;
      overflow: hidden;
      border-radius: 6px;
    }

    .art-card-featured__img {
      width: 100%;
      height: 251px;
      object-fit: cover;
      display: block;
      background: #C8D3E0;
    }

    .art-card-featured__body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      background: #ffffff;
    }

    .art-card-featured__date {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 20px;
      color: #394559;
    }

    .art-card-featured__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 20px;
      line-height: 30px;
      color: #1C2642;
      margin: 0;
    }

    .art-card-featured__excerpt {
      font-family: 'Arial', sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #394559;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* ---- SMALL CARDS column (3 stacked) ---- */
    .art-small-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .art-card-small {
      display: flex;
      flex-direction: row;
      background: #ffffff;
      text-decoration: none;
      height: 112px;
      overflow: hidden;
      border-radius: 6px;
    }

    .art-card-small__img {
      width: 152px;
      min-width: 152px;
      height: 112px;
      object-fit: cover;
      display: block;
      background: #C8D3E0;
    }

    .art-card-small__body {
      flex: 1;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 0px;
      background: #ffffff;
      overflow: hidden;
    }

    .art-card-small__date {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 20px;
      color: #394559;
    }

    .art-card-small__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      color: #1C2642;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* =============================================
       ARTICLE LISTING — full-width landscape rows
    ============================================= */
    .art-listing {
      display: flex;
      flex-direction: column;
      gap: 16px;
      border-top: 1px solid #EEF1F6;
    }

    .art-card-landscape {
      display: flex;
      flex-direction: row;
      text-decoration: none;
      height: 160px;
      border-bottom: 1px solid #EEF1F6;
      overflow: hidden;
      border-radius: 6px;
    }


    .art-card-landscape__img {
      width: 220px;
      min-width: 220px;
      height: 160px;
      object-fit: cover;
      display: block;
      background: #C8D3E0;
    }

    .art-card-landscape__body {
      flex: 1;
      padding: 16px;
      display: flex;
      flex-direction: column;
      background: #ffffff;
      overflow: hidden;
      justify-content: center;
    }

    .art-card-landscape__date {
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      font-size: 12px;
      line-height: 20px;
      color: #394559;
    }

    .art-card-landscape__title {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 30px;
      color: #1C2642;
      margin: 0 0 4px ;
      display: -webkit-box;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .art-card-landscape__excerpt {
      font-family: Arial, sans-serif;
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      color: #394559;
      margin: 0;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* =============================================
       PAGINATION
    ============================================= */
    .art-pagination {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .art-pagination__btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Arial', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 24px;
      color: #1C2642;
      background: rgba(28, 38, 66, 0.10);
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.15s ease, color 0.15s ease;
      border-radius: 50%;
    }

    .art-pagination__btn:hover, .art-pagination__btn.current {
      background: #1C2642;
      color: #ffffff;
    }

    .art-pagination__btn--nav {
      background: #1C2642;
      color: #ffffff;
    }

    .art-pagination__btn svg {
      width: 8px;
      height: 14px;
      display: block;
    }
    .art-pagination__btn--nav svg path{ fill: transparent;}
    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1200px) {
      .art-card-featured {
        flex: 0 0 50%;
      }
    }

    @media (max-width: 767px) {
     
      /* Top row → single column */
      .art-top-row {
        flex-direction: column;
      }

      .art-card-featured {
        flex: unset;
        width: 100%;
      }
.art-card-small__title{ font-size:16px; line-height:24px;-webkit-line-clamp: 3; }
      .art-card-featured__img {
        height: 126px;
      }

      .art-small-col {
        gap: 16px;
      }

      /* Small cards: 120px square image on mobile */
      .art-card-small__img {
        width: 120px;
        min-width: 120px;
        height: 120px;
      }

      .art-card-small {
        height: 120px;
      }

      /* Landscape listing → stacked on mobile: image on top */
      .art-card-landscape {
        flex-direction: column;
        height: auto;
      }

      .art-card-landscape__img {
        width: 100%;
        min-width: unset;
        height: 160px;
      }

      .art-card-landscape__title {
        -webkit-line-clamp: 2;
      }
      /* Pagination centred */
      .art-pagination {
        justify-content: center;
      }
    }
    .oau-section {
      background: #394559;
      width: 100%;
      padding: 40px 0;
      word-break: break-word;
      word-wrap: break-word;
    }

    .oau-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
    }

    /* ---- Heading ---- */
    .oau-heading {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 24px;
      line-height: 34px;
      color: #ffffff;
      margin: 0;
    }

    /* ---- Cards row ---- */
    .oau-listing {
      display: flex;
      flex-direction: row;
      gap: 16px;
      width: 100%;
    }

    /* ---- Single card ---- */
    .oau-card {
      max-width: 243px;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      overflow: hidden;
      border-radius: 8px;
      flex:1;
    }


    /* Square photo */
    .oau-card__photo {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: top center;
      display: block;
      background: #8997B1;
    }

    /* Name + role info block */
    .oau-card__info {
      background: #ffffff;
      padding: 12px 24px 16px;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .oau-card__name {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 18px;
      line-height: 28px;
      color: #1C2642;
      margin: 0;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .oau-card__role {
      font-family: Arial, sans-serif;
      font-weight: 700;
      font-size: 16px;
      line-height: 24px;
      color: #FC5910;
      margin: 0;
    }

    /* ---- CTA button — centred ---- */
    .oau-cta-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .oau-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0px;
      width: 200px;
      height: 40px;
      border: 2px solid #DFE6EF;
      border-radius: 30px;
      background: transparent;
      text-decoration: none;
      cursor: pointer; 
    }

    .oau-btn__label {
      font-family: 'Inter', sans-serif;
      font-weight: 700;
      font-size: 17px;
      line-height: 27.5px;
      color: #F4F7FB;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */


    @media (max-width: 767px) {
      .oau-inner {
        padding: 0 24px;
        gap: 24px;
      }

      /* 2-column wrap, gap 8px — matches mobile JSON exactly */
      .oau-listing {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      /* Each card takes exactly ~half width minus half the gap */
      .oau-card {
        flex: 0 0 calc(50% - 4px);
        max-width: calc(50% - 4px);
      }

      /* Tighter info padding on mobile */
      .oau-card__info {
        padding: 12px 16px 16px;
      }

      .oau-card__name {
        font-size: 16px;
        line-height: 24px;
      }

      /* 5th card stays at same size — center it */
      .oau-card:last-child:nth-child(odd) {
        flex: 0 0 calc(50% - 4px);
      }
      .oau-card__role{ font-size:14px; line-height:20px; }
      .oau-card:last-child{ display:none; }
    }
    @media( max-width: 575px){
      .oau-card__photo{ max-height:167px; }
      .art-pagination{gap:3px;}
      .art-pagination__btn{ font-size:13px; width: 27px;height: 27px;}
    }

    p{font-size: 16px; line-height: 1.5 !important;}
    h1{font-size: 32px; line-height: 1.2}
    h2{font-size: 24px; margin: 24px 0 24px 0; line-height: 1.2}
    h3{font-size: 20px; margin: 20px 0 20px 0; line-height: 1.2}
    h4{font-size: 18px; line-height: 1.2}
    ul li,ol li {font-size: 16px !important; margin-bottom: 10px;}
    .su-table table td,.su-table table th{font-size: 0.75em;}
    @media(max-width: 767px){
      p{font-size: 14px; line-height: 1.5}
      h1{font-size: 28px; line-height: 1.2}
      h2{font-size: 20px; margin: 24px 0 24px 0; line-height: 1.2}
      h3{font-size: 18px; margin: 20px 0 20px 0; line-height: 1.2}
      h4{font-size: 16px; line-height: 1.2}
      ul li,ol li {font-size: 14px !important; margin-bottom: 10px;}
    }