/* company-our-teams-static.css */
* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: var(--font);
      color: #334155;
      background-color: #ffffff;
      line-height: 1.6;
    }
    
    a {
      text-decoration: none;
      color: inherit;
    }/* Page Content Body */
    .detail-body {
      max-width: var(--content-width);
      margin: 4rem auto;
      padding: 0 1.5rem;
      min-height: 50vh;
    }
    .sv-page-title {
      font-weight: 800;
      text-align: center;
      color: var(--dark, #0f172a);
      margin: 0 0 2rem;
    }

    /* Empty state */
    .empty-state {
      text-align: center;
      padding: 5rem 2rem;
      background: #f8fafc;
      border-radius: 12px;
      border: 1px dashed #cbd5e1;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }
    .empty-state .material-icons {
      font-size: 4rem;
      margin-bottom: 1rem;
      color: #cbd5e1;
    }
    .empty-state p {
      font-size: 1.1rem;
      font-weight: 600;
    }

    /* Layout 1 & 2: Grid column formats */
    .ct-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(3, 1fr);
    }
    .ct-grid.cols-2 {
      grid-template-columns: repeat(2, 1fr);
      max-width: 800px;
      margin: 0 auto;
    }
    
    .ct-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .ct-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    }
    .ct-photo-wrap {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
      background: #cbd5e1;
    }
    .ct-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .ct-card:hover .ct-photo {
      transform: scale(1.03);
    }
    .ct-body {
      padding: 1.5rem 1rem;
    }
    .ct-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 0.35rem;
    }
    .ct-role {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary);
    }

    /* Layout 3: Horizontal row list */
    .ct-list {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      max-width: 750px;
      margin: 0 auto;
    }
    .ct-row {
      display: flex;
      align-items: center;
      gap: 2rem;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.25rem 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }
    .ct-photo-wrap.sm {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 3px solid #f1f5f9;
      box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    }
    .ct-row-body {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      text-align: left;
    }

    /* Scroll top button */
    .scroll-top-btn {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: none;
      background: var(--primary);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      transition: opacity 0.2s, transform 0.2s;
      opacity: 0;
      pointer-events: none;
    }
    .scroll-top-btn.visible {
      opacity: 1;
      pointer-events: all;
    }

    /* Responsive design */
    @media (max-width: 900px) {
      .ct-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .navbar-links {
        display: none;
      }
      .navbar-hamburger {
        display: block;
      }
      .ct-row {
        gap: 1.25rem;
        padding: 1rem;
      }
      .ct-photo-wrap.sm {
        width: 70px;
        height: 70px;
      }
    }
    @media (max-width: 550px) {
      .ct-grid {
        grid-template-columns: 1fr;
      }
      .ct-grid.cols-2 {
        grid-template-columns: 1fr;
      }
    }