 /* ===============================
       MAIN LAYOUT: Content + Sidebar (Sidebar on RIGHT)
    ================================ */
    .layout {
      display: flex;
      gap: 24px;
      padding: 40px 0 60px;
      align-items: flex-start;
      flex-direction: row;

    }

    .content {
      flex: 1;
      min-width: 0;
    }

    /* Sidebar styling - now on the RIGHT */
    .sidebar {
      flex: 0 0 300px;
      background: var(--white);
      border: none;
      /* remove border */
      border-radius: 6px;
      box-shadow: var(--shadow-card);
      /* floating shadow */
      padding: 20px 20px;
      position: sticky;
      top: 90px;
      transition: box-shadow 0.3s ease;
    }

    .sidebar:hover {
      box-shadow: var(--shadow-card-hover);
    }

    .sidebar .fas.fa-list {
      font-size: 17px;
      margin-right: 9px;
    }

    @media (max-width: 992px) {
      .layout {
        flex-direction: column;
      }

      .sidebar {
        flex: 1 1 auto;
        width: 100%;
        position: static;
      }
    }

    .sidebar h3 {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--brand-blue-dark);
      margin: 0 0 3px;
      border-bottom: 2px solid #e2e8f0;
      letter-spacing: -0.3px;
    }

    .sidebar-nav {
      list-style: none;
      margin: 0 0 24px;
      padding: 0;
    }

    .sidebar-nav li {
      margin-bottom: 4px;
    }

    .sidebar-nav a {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      text-decoration: none;
      color: #1a5f9e;
      font-weight: 500;
      font-size: 14px;
      border-radius: 10px;
      transition: all 0.2s;
      line-height: 1.4;
    }

    .sidebar-nav a i {
      color: var(--brand-blue);
      width: 20px;
      font-size: 1rem;
    }

    .sidebar-nav a:hover {
      background: var(--light-bg);
      color: var(--brand-blue);
    }

    /* Contact box in sidebar (from screenshot) */
    .sidebar-contact {
     
      border-radius: 6px;
    }

    .sidebar-contact p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-bottom: 8px;
      line-height: 1.5;
    }

    .sidebar-contact p strong {
      color: var(--brand-blue-dark);
      font-weight: 600;
    }

    .sidebar-contact .btn-sidebar {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--brand-blue);
      color: var(--white);
      text-decoration: none;
      padding: 12px 24px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: 0.2s;
      width: 100%;
      justify-content: center;
      border: none;
      cursor: pointer;
    }

    .sidebar-contact .btn-sidebar:hover {
      background: var(--brand-blue-dark);
      transform: translateY(-2px);
    }

 
    .content-card {
      background: var(--white);
      border: none;
      /* remove border */
      border-radius: 6px;
      box-shadow: var(--shadow-card);
      /* floating shadow */
      padding: 32px;
      margin-bottom: 24px;
      transition: box-shadow 0.3s ease;
    }

    .content-card:hover {
      box-shadow: var(--shadow-card-hover);
      /* extends out more on hover */
    }

    .content-card h2 {
      font-size: 1.7rem;
      font-weight: 600;
      color: var(--brand-blue-dark);
      margin: 0 0 16px;
      letter-spacing: -0.02em;
    }

    .content-card .lead {
      font-size: 1rem;
      color: var(--text-secondary);
      line-height: 1.5;
      margin-bottom: 24px;
      font-weight: 400;
    }

    .content-card p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    .content-card p strong {
      color: var(--brand-blue-dark);
      font-weight: 600;
    }

    /* Coverage items list */
    .coverage-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }

    .coverage-list li {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px 18px;
      background: var(--light-bg);
      border-radius: 40px;
      border: 1px solid var(--border-light);
      font-weight: 500;
      color: var(--text-secondary);
      font-size: 14px;
    }

    .coverage-list li i {
      color: var(--brand-blue);
      font-size: 1.1rem;
    }

    /* Plan highlights grid */
    .highlights-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin: 24px 0;
    }

    @media (max-width: 600px) {
      .highlights-grid {
        grid-template-columns: 1fr;
      }
      .custom-slider-dots{
        margin-left: 35px;
      }
    }



    .highlight-item i {
      color: var(--brand-blue);
      font-size: 1.3rem;
      width: 28px;
    }

    .highlight-item strong {
      font-weight: 600;
      color: var(--brand-blue-dark);
      font-size: 14px;
    }

    .t6-container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .sptp-section-title {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a !important;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px !important;
    }

    .t6-sub {
      margin: 0 0 18px;
      font-size: 16px;
      color: #475569;
    }

    .t6-accent {
      height: 2px;
      background: #e2e8f0;
    }

    /* ===== Card (auto height) ===== */
    .t6-card {
      margin-top: 0;
     background-color: transparent;
      padding: 0 5px;
      display: grid;
 
    }


    @media (min-width: 768px) {
      .t6-card {
     
        padding: 0 5px;
        gap: 0px;
        margin-top: 0;
      }
    }



    @media (min-width: 768px) {
      .t6-avatar {
        width: 140px;
        height: 150px;
        border-radius: 18px;
      }
    }

    .t6-avatar img {
      width: 100%;
      height: 132%;
      object-fit: cover;
      object-position: center;
      opacity: 0;
      transition: opacity .22s ease;
    }

    .t6-avatar img.loaded {
      opacity: 1;
    }

    /* Right: identity + description + actions */
    .t6-head {
      display: flex;
      flex-wrap: wrap;
      align-items: baseline;
      gap: 8px;
      flex-direction: column;
    }

    .sptp-member-name-title {
      font-size: 20px;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: .2px;
    }

    .sptp-member-profession .sptp-jop-title {
      font-size: 14px !important;
      color: #6b7280 !important;
      margin-bottom: 5px !important;
      margin-top: 8px !important;
    }



    .t6-desc {
      margin: 0;
      color: #0f172a;
      font-size: 16px;
      line-height: 1.65;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    /* Fade when clamped */
    .t6-fade {
      pointer-events: none;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 48px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 70%);
      opacity: 0;
      transition: opacity .16s ease;
    }

    .t6-desc-outer.clamped .t6-fade {
      opacity: 1;
    }

    /* Actions row */
    .t6-actions {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 12px;
    }

    .t6-toggle:hover {
      background: #0b1220;
      transform: translateY(-1px);
    }

    /* ===== Carousel Controls ===== */
    .t6-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 4px 0;
    }

    .t6-nav {
      display: flex;
      gap: 10px;
    }



    /* Dots indicator (clickable, clear active state) */
    .t6-dots {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-content: center;
      flex: 1;
    }

    .t6-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #cbd5e1;
      border: 0;
      cursor: pointer;
      transition: width .2s ease, background .2s ease, transform .08s ease;
    }

    .t6-dot:hover {
      transform: translateY(-1px);
    }



    /* a11y helper */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
      white-space: nowrap;
    }
 
    /* ===== Contact Bar Styles (icons on top, text full width) ===== */
    .contact-section {
      padding: 18px 0px;
      margin-top: 78px;

    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      background: #ffffff;
      border: 1px solid #e6eef0;
      border-radius: 16px;
      box-shadow: 0 8px 22px rgba(2, 20, 29, 0.06);
      display: flex;
      align-items: stretch;
      justify-content: center;
      gap: 0;
      /* separators handle visual separation */
      overflow: hidden;
      flex-wrap: nowrap;
      /* keeps it a single row on desktop */
    }

    .contact-item {
      display: flex;
      flex-direction: column;
      /* icon on top, text below */
      align-items: center;
      /* center the icon horizontally */
      justify-content: flex-start;
      gap: 10px;
      padding: 12px 11px 0px;
      text-align: center;
      min-width: 180px;
      flex: 1 1 0;
      border-bottom: 1px solid #e2e2e2
      /* items distribute evenly */
    }

    .contact-item:last-child {
      border-right: none;
      /* no separator on last */
    }

    .contact-icon {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: #ecfeff;
      border: 1px solid #bae6fd;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
    }

    .contact-body {
      width: 100%;
      /* text area takes full width */
      display: grid;
      gap: 4px;
    }

    .contact-label {
      font-size: 13px;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: 0.2px;
    }

    .contact-value {
      font-style: normal;
      font-size: 14px;
      color: #475569;
      word-break: break-word;
    }

    .contact-link {
      color: #1d4ed8;
      text-decoration: none;
      border-bottom: 1px dashed rgba(29, 78, 216, 0.35);
      transition: color 0.2s ease, border-color 0.2s ease;
      color: #444;
    }

    .contact-link:hover {
      color: #0b3cc4;
      border-color: rgba(11, 60, 196, 0.5);
    }

    .contact-item:hover {
      background: #f9feff;
    }

    /* ===== Mobile: stack vertically, use bottom separators ===== */
    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
      }

      .contact-item {
        border-right: none;
        border-bottom: 1px solid #e6eef0;
        text-align: left;
        /* better readability on mobile */
        align-items: flex-start;
        /* keep icon left aligned if you prefer centered, leave center */
        padding: 14px 14px;
      }

      .contact-item:last-child {
        border-bottom: none;
      }
    }

    .rt-container, .rt-container-fluid{
        overflow: hidden !important;
        max-width: 100% !important;
    }

    body.template-subpage-layout5{
        background-color: #f2f5f9;
    }
     body.template-subpage-layout5 .layout{
        padding-top: 10px !important;
        gap: 10px !important;
     }

    
.rt-team-container .single-team-area {
    display: flex;
    align-items: flex-start; /* or center if you prefer */
    gap: 12px;
}

/* Image column */
.rt-team-container .single-team-area figure {
    flex: 0 0 auto;
    margin: 0;
    width: auto !important;
}


/* FIX: Swiper slide padding was breaking vertical alignment */

.sptp-member .sptp-member-desc{
    text-align: left !important;
    font-size: 16px !important;
    color: #0f172a !important;
    font-family: inherit !important;
    font-weight: 400 !important;
    line-height: 24px;
    
}

/* Parent card: image | content */
.sptp-member.border-bg-around-member {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px;
flex-direction: row !important;
  text-align: left !important;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 0 !important;
  
}
 @media (max-width: 768px) {
  .sptp-member.border-bg-around-member {
    flex-direction: column !important;
  }
 }

/* Image column */
.sptp-member.border-bg-around-member > .sptp-member-avatar {
  display: block;
  flex: 0 0 110px;
  margin: 0;
}

.sptp-member-avatar-img {
  width: 110px;
  height: 125px;
  border-radius: 14px;
  overflow: hidden;
}

.sptp-member-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content column */
.sptp-member-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.sptp-member-name-title{
    text-align: left !important;

}


 @media (max-width: 768px) {
.sptp-list-item .content {
    width: 100% !important;
}
 }