
    .t1-wrapper {
      margin: 0 auto;
      padding: 64px 28px;
    }

    .t1-header {
      text-align: center;
      margin-bottom: 36px;
      margin-top: 20px;
    }

    .t1-badge {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 2px;
      background: #cb201f10;
      color: #cb201f;
      border: 1px solid #cb201f30;
      padding: 6px 22px;
      border-radius: 60px;
      margin-bottom: 20px;
    }

    .t1-title {
      font-size: 52px;
      font-weight: 800;
      color: #000;
      margin-bottom: 16px;
    }

    .t1-title span {
      color: #cb201f;
    }

    .t1-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
    }

    .t1-divider-line {
      width: 50px;
      height: 3px;
      background: #cb201f;
    }

    .t1-divider-dot {
      width: 10px;
      height: 10px;
      background: #000;
      border-radius: 50%;
    }

    .t1-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 36px;
      align-items: stretch;
    }

    .t1-card {
      background: #fff;
      border-radius: 20px;
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      box-shadow: 0 12px 28px rgba(0,0,0,0.05);
      transition: all 0.25s ease;
      border-left: 6px solid #cb201f;
    }

    .t1-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 35px rgba(203,32,31,0.12);
    }

    .t1-quote-icon {
      font-size: 48px;
      color: #cb201f;
      margin-bottom: 16px;
      opacity: 0.6;
    }

    .t1-rating {
      margin-bottom: 16px;
      color: #cb201f;
      font-size: 18px;
      letter-spacing: 4px;
    }

    .t1-desc {
      font-size: 16px;
      line-height: 1.65;
      color: #2c2c2c;
      margin: 8px 0 12px;
    }

    .t1-desc.clamped {
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .t1-read-btn {
      font-size: 14px;
      font-weight: 600;
      color: #cb201f;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 0 4px;
      text-align: left;
      width: fit-content;
      transition: 0.2s;
    }

    .t1-read-btn:hover {
      color: #000;
    }

    .t1-divider-light {
      height: 1px;
      background: #eaeaea;
      margin: 20px 0 22px;
    }

    .t1-footer {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: auto;
    }

    .t1-avatar-img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #cb201f;
    }

    .t1-avatar {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      border: 2px solid #cb201f;
    }

    .t1-name {
      font-size: 17px;
      font-weight: 700;
      color: #000;
    }

    .t1-role {
      font-size: 13px;
      color: #cb201f;
      margin-top: 4px;
    }

    .t1-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 10px;
    }

    .t1-pill {
      font-size: 12px;
      padding: 4px 14px;
      border-radius: 40px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .t1-pill-affil {
      background: #f0f0f0;
      color: #000;
    }

    .t1-pill-indie {
      background: #f5f5f5;
      color: #666;
    }

    .t1-pill-loc {
      background: #cb201f10;
      color: #cb201f;
    }

    /* ========== SECTION 2: COMMITTEE (prefix "t2-") – circular image top, bottom accent ========== */
    .t2-wrapper {
      background: #fff;
    }

    .t2-header {
      background: #000;
      padding: 56px 32px 48px;
      text-align: center;
    }

    .t2-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: #cb201f;
      font-size: 13px;
      letter-spacing: 2px;
      padding: 6px 18px;
      border-radius: 60px;
      margin-bottom: 16px;
    }

    .t2-header h1 {
      color: #fff;
      font-size: 44px;
      font-weight: 800;
    }

    .t2-header p {
      color: rgba(255,255,255,0.8);
      font-size: 17px;
      margin-top: 8px;
    }

    .t2-divider {
      width: 70px;
      height: 3px;
      background: #cb201f;
      margin: 22px auto 0;
    }

    .t2-section-title {
      text-align: center;
      padding: 48px 16px 24px;
      font-size: 14px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #cb201f;
      font-weight: 700;
    }

    .t2-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
      max-width: 1350px;
      margin: 0 auto;
      padding: 16px 28px 60px;
    }

    .t2-card {
      background: #fff;
      border-radius: 28px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: 0.25s;
      box-shadow: 0 8px 20px rgba(0,0,0,0.04);
      border: 1px solid #eee;
      text-align: center;
    }

    .t2-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px rgba(203,32,31,0.12);
      border-color: #cb201f;
    }

    .t2-img-wrap {
      padding: 24px 24px 0;
    }

    .t2-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto;
      border: 3px solid #cb201f;
      background: #f0f0f0;
    }

    .t2-fallback {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #000, #cb201f);
      color: #fff;
      font-size: 42px;
      font-weight: 700;
      border: 3px solid #cb201f;
    }

    .t2-body {
      padding: 20px 20px 24px;
      flex: 1;
    }

    .t2-role {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: #cb201f;
      margin-bottom: 8px;
    }

    .t2-name {
      font-size: 20px;
      font-weight: 700;
      color: #000;
      margin-bottom: 14px;
    }

    .t2-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: left;
      padding-left: 10px;
    }

    .t2-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: #3a3a3a;
    }

    .t2-row i {
      width: 20px;
      color: #cb201f;
      font-size: 16px;
    }

    .t2-row span:empty,
    .t2-row:has(span:empty) {
      display: none;
    }

    @media (max-width: 1100px) {
      .t2-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .t2-grid { grid-template-columns: 1fr; }
      .t2-header h1 { font-size: 32px; }
    }

    /* ========== SECTION 3: PAST SPEAKERS (prefix "t3-") – large card with bottom ribbon ========== */
    .t3-wrapper {
      background: #fefefe;
    }

    .t3-title {
      text-align: center;
      font-size: 48px;
      font-weight: 800;
      color: #000;
      margin: 64px 0 24px;
    }

    .t3-title span {
      color: #cb201f;
    }

    .t3-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 48px;
      max-width: 1300px;
      margin: 0 auto;
      padding: 20px 32px 70px;
    }

    .t3-card {
      background: #fff;
      border-radius: 24px;
      padding: 0;
      display: flex;
      flex-direction: column;
      transition: 0.25s;
      border: 1px solid #eaeaea;
      box-shadow: 0 12px 24px rgba(0,0,0,0.03);
      overflow: hidden;
    }

    .t3-card:hover {
      transform: translateY(-8px);
      border-color: #cb201f;
      box-shadow: 0 28px 38px rgba(203,32,31,0.1);
    }

    .t3-ribbon {
      background: #cb201f;
      color: #fff;
      text-align: center;
      padding: 8px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .t3-content {
      padding: 28px 24px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .t3-avatar {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 20px;
      border: 3px solid #000;
      background: #f0f0f0;
    }

    .t3-fallback {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(145deg, #000, #cb201f);
      color: #fff;
      font-size: 48px;
      font-weight: 800;
      border: 3px solid #000;
    }

    .t3-name {
      font-size: 22px;
      font-weight: 500;
      color: #000;
      margin-bottom: 10px;
      margin-top: 12px;
    }

    .t3-tag {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #cb201f;
      background: #cb201f10;
      padding: 5px 18px;
      border-radius: 60px;
      display: inline-block;
      margin-bottom: 20px;
    }

    .t3-details {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .t3-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      font-size: 15px;
      color: #3a3a3a;
    }

    .t3-row i {
      width: 22px;
      color: #cb201f;
      font-size: 18px;
    }

    .t3-row span:empty,
    .t3-row:has(span:empty) {
      display: none;
    }

    @media (max-width: 1000px) {
      .t3-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    }
    @media (max-width: 680px) {
      .t3-grid { grid-template-columns: 1fr; }
      .t3-title { font-size: 36px; }
    }

    /* footer */
    .global-footer {
      background: #000;
      color: #fff;
      text-align: center;
      padding: 24px;
      font-size: 14px;
      margin-top: 30px;
    }