/* TTP Content Blocks v1.4.2 */
.ttp-content-block,
.ttp-content-block *{ box-sizing:border-box; }

.ttp-content-block{
  --ttp-accent:#2563eb;
  --ttp-accent-rgb:37,99,235;
  --ttp-accent-2:#0ea5e9;
  --ttp-accent-2-rgb:14,165,233;
  max-width:760px;
  margin:20px auto;
  color:#172033;
  font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ttp-content-block.alignwide{ max-width:980px; }
.ttp-content-block.alignfull{ max-width:none; }

.ttp-timeline{ --ttp-accent:#2563eb; --ttp-accent-rgb:37,99,235; --ttp-accent-2:#06b6d4; --ttp-accent-2-rgb:6,182,212; }
.ttp-source-card{ --ttp-accent:#7c3aed; --ttp-accent-rgb:124,58,237; --ttp-accent-2:#ec4899; --ttp-accent-2-rgb:236,72,153; }
.ttp-case-file{ --ttp-accent:#0f766e; --ttp-accent-rgb:15,118,110; --ttp-accent-2:#14b8a6; --ttp-accent-2-rgb:20,184,166; }
.ttp-document-viewer{ --ttp-accent:#334155; --ttp-accent-rgb:51,65,85; --ttp-accent-2:#64748b; --ttp-accent-2-rgb:100,116,139; }
.ttp-audio-clip{ --ttp-accent:#9333ea; --ttp-accent-rgb:147,51,234; --ttp-accent-2:#2563eb; --ttp-accent-2-rgb:37,99,235; }
.ttp-youtube-video{ --ttp-accent:#111827; --ttp-accent-rgb:17,24,39; --ttp-accent-2:#ef4444; --ttp-accent-2-rgb:239,68,68; }
.ttp-map-route{ --ttp-accent:#ea580c; --ttp-accent-rgb:234,88,12; --ttp-accent-2:#f59e0b; --ttp-accent-2-rgb:245,158,11; }
.ttp-person-profile{ --ttp-accent:#0891b2; --ttp-accent-rgb:8,145,178; --ttp-accent-2:#16a34a; --ttp-accent-2-rgb:22,163,74; }
.ttp-fact-box{ --ttp-accent:#2563eb; --ttp-accent-rgb:37,99,235; --ttp-accent-2:#38bdf8; --ttp-accent-2-rgb:56,189,248; }
.ttp-related-posts{ --ttp-accent:#4338ca; --ttp-accent-rgb:67,56,202; --ttp-accent-2:#0ea5e9; --ttp-accent-2-rgb:14,165,233; }
.ttp-reader-note{ --ttp-accent:#be123c; --ttp-accent-rgb:190,18,60; --ttp-accent-2:#f97316; --ttp-accent-2-rgb:249,115,22; }

.ttp-content-block.is-frame-card{
  position:relative;
  overflow:hidden;
  padding:20px;
  border:1px solid rgba(var(--ttp-accent-rgb), .16);
  border-radius:16px;
  background:
    linear-gradient(135deg, rgba(var(--ttp-accent-rgb), .13) 0%, rgba(var(--ttp-accent-2-rgb), .07) 34%, rgba(255,255,255,0) 62%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  box-shadow:
    0 22px 48px rgba(15,23,42,.11),
    0 4px 14px rgba(var(--ttp-accent-rgb), .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ttp-content-block.is-frame-card:before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:5px;
  background:linear-gradient(90deg, var(--ttp-accent), var(--ttp-accent-2));
}
.ttp-content-block.is-frame-card:after{
  content:"";
  position:absolute;
  top:14px;
  right:-44px;
  width:150px;
  height:2px;
  transform:rotate(36deg);
  background:rgba(var(--ttp-accent-rgb), .18);
  pointer-events:none;
}
.ttp-content-block.is-frame-card:hover{
  transform:translateY(-3px);
  border-color:rgba(var(--ttp-accent-rgb), .32);
  box-shadow:
    0 26px 58px rgba(15,23,42,.14),
    0 8px 22px rgba(var(--ttp-accent-rgb), .16),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.ttp-content-block.is-frame-minimal{
  position:relative;
  overflow:hidden;
  padding:15px;
  border:1px solid rgba(var(--ttp-accent-rgb), .22);
  border-radius:14px;
  background:#fff;
}
.ttp-content-block.is-frame-minimal:before{
  content:"";
  position:absolute;
  inset:0 0 auto;
  height:4px;
  background:linear-gradient(90deg, var(--ttp-accent), var(--ttp-accent-2));
}
.ttp-content-block.is-frame-bare{ padding:0; }

.ttp-content-eyebrow{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  gap:7px;
  margin:0 0 10px;
  padding:6px 10px;
  border:1px solid rgba(var(--ttp-accent-rgb), .18);
  border-radius:999px;
  background:rgba(var(--ttp-accent-rgb), .10);
  color:var(--ttp-accent);
  font-size:12px;
  font-weight:800;
  line-height:1;
  box-shadow:0 6px 16px rgba(var(--ttp-accent-rgb), .10);
}
.ttp-content-eyebrow:before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--ttp-accent), var(--ttp-accent-2));
  box-shadow:0 0 0 3px rgba(var(--ttp-accent-rgb), .12);
}

.ttp-content-title{
  position:relative;
  z-index:1;
  margin:0 0 10px;
  color:#172033;
  font-size:clamp(20px, 3vw, 28px);
  line-height:1.12;
  letter-spacing:0;
}
h3.ttp-content-title{ font-size:18px; }

.ttp-content-caption,
.ttp-content-block p{
  position:relative;
  z-index:1;
  color:#475569;
  font-size:15px;
  line-height:1.55;
}
.ttp-content-caption{ margin:0 0 14px; }

.ttp-content-row{
  position:relative;
  z-index:1;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}

.ttp-content-chip{
  display:inline-flex;
  flex:0 0 auto;
  padding:7px 11px;
  border:1px solid rgba(255,255,255,.38);
  border-radius:999px;
  background:linear-gradient(135deg, #172033, #334155);
  color:#fff;
  font-size:12px;
  font-weight:800;
  line-height:1;
  box-shadow:0 10px 22px rgba(15,23,42,.20);
}

.ttp-source-meta{
  position:relative;
  z-index:1;
  margin:0 0 12px;
  color:#64748b;
  font-size:13px;
  font-weight:700;
}

.ttp-content-link{
  color:var(--ttp-accent);
  font-weight:800;
  text-decoration:none;
}
.ttp-content-link:hover{ text-decoration:underline; text-underline-offset:3px; }

.ttp-content-button{
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:9px 15px;
  border:1px solid rgba(var(--ttp-accent-rgb), .22);
  border-radius:999px;
  background:linear-gradient(135deg, var(--ttp-accent), var(--ttp-accent-2));
  color:#fff;
  font-size:14px;
  font-weight:800;
  line-height:1;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(var(--ttp-accent-rgb), .22);
  transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ttp-content-button:hover{
  transform:translateY(-1px);
  color:#fff;
  filter:saturate(1.08);
  box-shadow:0 15px 30px rgba(var(--ttp-accent-rgb), .26);
}
.ttp-content-button.is-secondary{
  background:#fff;
  color:var(--ttp-accent);
}
.ttp-content-button.is-secondary:hover{
  background:rgba(var(--ttp-accent-rgb), .08);
  color:var(--ttp-accent);
}
.ttp-content-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.ttp-content-placeholder{
  position:relative;
  z-index:1;
  display:grid;
  min-height:190px;
  place-items:center;
  border:1px dashed rgba(var(--ttp-accent-rgb), .36);
  border-radius:12px;
  background:
    repeating-linear-gradient(135deg, rgba(var(--ttp-accent-rgb), .06) 0, rgba(var(--ttp-accent-rgb), .06) 9px, transparent 9px, transparent 18px),
    #f8fafc;
  color:#64748b;
  font-weight:750;
}

.ttp-timeline-list,
.ttp-route-list{
  position:relative;
  z-index:1;
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.ttp-timeline-list:before{
  content:"";
  position:absolute;
  top:12px;
  bottom:12px;
  left:10px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--ttp-accent), var(--ttp-accent-2));
  box-shadow:0 0 0 4px rgba(var(--ttp-accent-rgb), .08);
}

.ttp-timeline-item{
  position:relative;
  padding:2px 0 2px 38px;
}
.ttp-timeline-marker{
  position:absolute;
  top:4px;
  left:0;
  width:23px;
  height:23px;
  border:4px solid #fff;
  border-radius:999px;
  background:linear-gradient(135deg, var(--ttp-accent), var(--ttp-accent-2));
  box-shadow:0 0 0 1px rgba(var(--ttp-accent-rgb), .24), 0 8px 18px rgba(var(--ttp-accent-rgb), .25);
}
.ttp-timeline-date{
  color:var(--ttp-accent);
  font-size:12px;
  font-weight:850;
}
.ttp-timeline-item h3,
.ttp-route-stop h3,
.ttp-related-card h3{
  margin:2px 0 4px;
  color:#172033;
  font-size:16px;
  line-height:1.25;
}
.ttp-timeline-item p,
.ttp-route-stop p,
.ttp-related-card p{ margin:0 0 6px; }

.ttp-timeline.is-timeline-horizontal,
.ttp-timeline.is-timeline-auto{
  max-width:980px;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-list,
.ttp-timeline.is-timeline-auto .ttp-timeline-list{
  grid-auto-flow:column;
  grid-auto-columns:minmax(190px, 1fr);
  gap:14px;
  overflow-x:auto;
  padding:44px 4px 44px;
  scroll-snap-type:x proximity;
  scrollbar-color:rgba(var(--ttp-accent-rgb), .34) transparent;
  scrollbar-width:thin;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-list:before,
.ttp-timeline.is-timeline-auto .ttp-timeline-list:before{
  top:17px;
  right:18px;
  bottom:auto;
  left:18px;
  width:auto;
  height:3px;
  background:linear-gradient(90deg, var(--ttp-accent), var(--ttp-accent-2));
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-item,
.ttp-timeline.is-timeline-auto .ttp-timeline-item{
  min-width:190px;
  padding:14px;
  border:1px solid rgba(var(--ttp-accent-rgb), .16);
  border-radius:13px;
  background:rgba(255,255,255,.72);
  box-shadow:0 10px 22px rgba(15,23,42,.06);
  scroll-snap-align:start;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-marker,
.ttp-timeline.is-timeline-auto .ttp-timeline-marker{
  top:-38px;
  left:15px;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-item:before,
.ttp-timeline.is-timeline-auto .ttp-timeline-item:before{
  content:"";
  position:absolute;
  top:-17px;
  left:25px;
  width:2px;
  height:17px;
  background:linear-gradient(180deg, var(--ttp-accent), rgba(var(--ttp-accent-rgb), .18));
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-date,
.ttp-timeline.is-timeline-auto .ttp-timeline-date{
  display:inline-flex;
  margin-bottom:3px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(var(--ttp-accent-rgb), .1);
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-item:nth-child(even),
.ttp-timeline.is-timeline-auto .ttp-timeline-item:nth-child(even){
  margin-top:34px;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-item:nth-child(even) .ttp-timeline-marker,
.ttp-timeline.is-timeline-auto .ttp-timeline-item:nth-child(even) .ttp-timeline-marker{
  top:-72px;
}
.ttp-timeline.is-timeline-horizontal .ttp-timeline-item:nth-child(even):before,
.ttp-timeline.is-timeline-auto .ttp-timeline-item:nth-child(even):before{
  top:-51px;
  height:51px;
}

.ttp-content-meta-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:9px;
  margin:14px 0 0;
}
.ttp-content-meta-grid dt{
  color:#64748b;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}
.ttp-content-meta-grid dd{
  margin:0;
  color:#172033;
  font-weight:750;
}

.ttp-document-frame{
  position:relative;
  z-index:1;
  overflow:hidden;
  margin:12px 0;
  border:1px solid rgba(var(--ttp-accent-rgb), .20);
  border-radius:12px;
  background:#f8fafc;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}
.ttp-document-frame iframe{
  display:block;
  width:100%;
  min-height:420px;
  border:0;
}

.ttp-audio-player{
  position:relative;
  z-index:1;
  margin:12px 0;
  padding:13px;
  border:1px solid rgba(var(--ttp-accent-rgb), .18);
  border-radius:14px;
  background:
    linear-gradient(135deg, rgba(var(--ttp-accent-rgb), .10), rgba(var(--ttp-accent-2-rgb), .06)),
    #f8fafc;
}
.ttp-audio-player audio{ width:100%; }

.ttp-youtube-frame{
  position:relative;
  z-index:1;
  overflow:hidden;
  margin:14px 0;
  padding:30px 28px;
  border-radius:18px;
  background:
    repeating-linear-gradient(90deg, rgba(248,250,252,.88) 0 10px, transparent 10px 21px) top 8px left 28px / calc(100% - 56px) 10px no-repeat,
    repeating-linear-gradient(90deg, rgba(248,250,252,.88) 0 10px, transparent 10px 21px) bottom 8px left 28px / calc(100% - 56px) 10px no-repeat,
    linear-gradient(135deg, rgba(15,23,42,.98), rgba(31,41,55,.94) 56%, rgba(239,68,68,.88));
  box-shadow:
    0 20px 44px rgba(15,23,42,.22),
    inset 0 0 0 1px rgba(255,255,255,.12),
    inset 0 12px 28px rgba(255,255,255,.04);
}
.ttp-youtube-frame:before,
.ttp-youtube-frame:after{
  content:"";
  position:absolute;
  top:27px;
  bottom:27px;
  width:10px;
  border-radius:999px;
  background:repeating-linear-gradient(180deg, rgba(248,250,252,.88) 0 9px, transparent 9px 20px);
  opacity:.9;
  pointer-events:none;
}
.ttp-youtube-frame:before{ left:9px; }
.ttp-youtube-frame:after{ right:9px; }
.ttp-youtube-stage{
  position:relative;
  z-index:1;
  overflow:hidden;
  aspect-ratio:16 / 9;
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  background:
    radial-gradient(circle at 28% 22%, rgba(239,68,68,.34), transparent 25%),
    linear-gradient(135deg, #020617, #111827 62%, #1f2937);
  box-shadow:
    0 15px 34px rgba(0,0,0,.34),
    0 0 0 1px rgba(0,0,0,.55);
}
.ttp-youtube-stage:after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(180deg, rgba(255,255,255,.10), transparent 28%);
  pointer-events:none;
}
.ttp-youtube-stage iframe{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  border:0;
}
.ttp-youtube-video.is-youtube-classic .ttp-youtube-stage{ aspect-ratio:4 / 3; }
.ttp-youtube-video.is-youtube-square .ttp-youtube-stage{ aspect-ratio:1 / 1; }
.ttp-youtube-placeholder{
  position:absolute;
  inset:0;
  display:grid;
  align-content:center;
  justify-items:center;
  gap:8px;
  padding:24px;
  color:#f8fafc;
  text-align:center;
}
.ttp-youtube-placeholder strong{
  font-size:18px;
  line-height:1.1;
}
.ttp-youtube-help{
  max-width:280px;
  color:#cbd5e1;
  font-size:13px;
  line-height:1.35;
}
.ttp-youtube-play{
  position:relative;
  display:block;
  width:56px;
  height:56px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 12px 28px rgba(0,0,0,.28), 0 0 0 7px rgba(255,255,255,.12);
}
.ttp-youtube-play:before{
  content:"";
  position:absolute;
  top:17px;
  left:22px;
  width:0;
  height:0;
  border-top:11px solid transparent;
  border-bottom:11px solid transparent;
  border-left:16px solid #ef4444;
}

.ttp-content-details{
  position:relative;
  z-index:1;
  margin-top:12px;
  border-top:1px solid rgba(var(--ttp-accent-rgb), .16);
  padding-top:10px;
}
.ttp-content-details summary{
  cursor:pointer;
  color:var(--ttp-accent);
  font-weight:800;
}

.ttp-route-stop{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:12px;
  padding:13px;
  border:1px solid rgba(var(--ttp-accent-rgb), .18);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(var(--ttp-accent-rgb), .10), rgba(255,255,255,0) 45%),
    #f8fafc;
  box-shadow:0 6px 18px rgba(15,23,42,.05);
}
.ttp-route-number{
  display:grid;
  width:34px;
  height:34px;
  place-items:center;
  border-radius:999px;
  background:linear-gradient(135deg, var(--ttp-accent), var(--ttp-accent-2));
  color:#fff;
  font-weight:850;
  box-shadow:0 10px 20px rgba(var(--ttp-accent-rgb), .24);
}

.ttp-person-profile{
  display:grid;
  grid-template-columns:168px 1fr;
  gap:18px;
  align-items:start;
}
.ttp-profile-image{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  aspect-ratio:4 / 5;
  border:1px solid rgba(var(--ttp-accent-rgb), .22);
  border-radius:14px;
  object-fit:cover;
  background:#eff6ff;
  box-shadow:0 14px 30px rgba(var(--ttp-accent-rgb), .16);
}

.ttp-person-profile.is-profile-case-file{
  --ttp-accent:#334155;
  --ttp-accent-rgb:51,65,85;
  --ttp-accent-2:#b45309;
  --ttp-accent-2-rgb:180,83,9;
  grid-template-columns:154px 1fr;
  border-style:solid;
  background:
    linear-gradient(90deg, rgba(180,83,9,.14) 0 42px, transparent 42px),
    repeating-linear-gradient(0deg, rgba(51,65,85,.045) 0 1px, transparent 1px 28px),
    linear-gradient(180deg, #fffdf7, #f8fafc);
}
.ttp-person-profile.is-profile-case-file:after{
  content:"CASE FILE";
  top:18px;
  right:16px;
  width:auto;
  height:auto;
  transform:rotate(5deg);
  padding:6px 10px;
  border:2px solid rgba(180,83,9,.46);
  border-radius:4px;
  background:transparent;
  color:rgba(180,83,9,.64);
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
}
.ttp-person-profile.is-profile-case-file .ttp-profile-image{
  aspect-ratio:1 / 1.18;
  border-radius:8px;
  filter:saturate(.9) contrast(1.06);
}
.ttp-person-profile.is-profile-case-file .ttp-content-title{
  padding-bottom:8px;
  border-bottom:2px solid rgba(51,65,85,.18);
  font-family:Georgia, "Times New Roman", serif;
}

.ttp-person-profile.is-profile-sports-card{
  --ttp-accent:#1d4ed8;
  --ttp-accent-rgb:29,78,216;
  --ttp-accent-2:#f59e0b;
  --ttp-accent-2-rgb:245,158,11;
  grid-template-columns:1fr;
  max-width:470px;
  padding:16px;
  border-radius:22px;
  text-align:center;
  background:
    linear-gradient(135deg, rgba(245,158,11,.30), rgba(29,78,216,.18)),
    linear-gradient(180deg, #ffffff, #eff6ff);
}
.ttp-person-profile.is-profile-sports-card:before{
  height:9px;
  background:linear-gradient(90deg, #f59e0b, #1d4ed8, #0f766e);
}
.ttp-person-profile.is-profile-sports-card .ttp-profile-image{
  width:100%;
  aspect-ratio:3 / 4;
  border:7px solid #fff;
  border-radius:18px;
  box-shadow:0 18px 34px rgba(15,23,42,.20);
}
.ttp-person-profile.is-profile-sports-card .ttp-profile-body{
  display:grid;
  justify-items:center;
}
.ttp-person-profile.is-profile-sports-card .ttp-content-eyebrow{
  margin-top:4px;
  background:#172033;
  color:#fff;
}
.ttp-person-profile.is-profile-sports-card .ttp-content-title{
  width:100%;
  padding:8px 10px;
  border-radius:14px;
  background:linear-gradient(135deg, #172033, #334155);
  color:#fff;
  text-transform:uppercase;
}
.ttp-person-profile.is-profile-sports-card .ttp-content-meta-grid{
  width:100%;
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.ttp-person-profile.is-profile-sports-card .ttp-content-meta-grid dt,
.ttp-person-profile.is-profile-sports-card .ttp-content-meta-grid dd{
  padding:6px;
  border-radius:8px;
  background:rgba(255,255,255,.72);
}

.ttp-person-profile.is-profile-newspaper{
  --ttp-accent:#1f2937;
  --ttp-accent-rgb:31,41,55;
  --ttp-accent-2:#78716c;
  --ttp-accent-2-rgb:120,113,108;
  grid-template-columns:150px 1fr;
  background:
    repeating-linear-gradient(0deg, rgba(31,41,55,.035) 0 1px, transparent 1px 24px),
    linear-gradient(180deg, #fffaf0, #f5efe2);
  color:#1f2937;
}
.ttp-person-profile.is-profile-newspaper:before{
  height:3px;
  background:#1f2937;
}
.ttp-person-profile.is-profile-newspaper:after{
  content:"PROFILE";
  top:15px;
  right:16px;
  width:auto;
  height:auto;
  transform:none;
  padding:3px 8px;
  border-top:1px solid rgba(31,41,55,.55);
  border-bottom:1px solid rgba(31,41,55,.55);
  background:transparent;
  color:#1f2937;
  font-family:Georgia, "Times New Roman", serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:.14em;
}
.ttp-person-profile.is-profile-newspaper .ttp-profile-image{
  border-radius:2px;
  filter:grayscale(1) contrast(1.1);
  box-shadow:none;
}
.ttp-person-profile.is-profile-newspaper .ttp-content-title{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(25px, 4vw, 36px);
  line-height:1;
}
.ttp-person-profile.is-profile-newspaper .ttp-content-caption,
.ttp-person-profile.is-profile-newspaper p{
  color:#374151;
  font-family:Georgia, "Times New Roman", serif;
}

.ttp-person-profile.is-profile-comic{
  --ttp-accent:#2563eb;
  --ttp-accent-rgb:37,99,235;
  --ttp-accent-2:#f97316;
  --ttp-accent-2-rgb:249,115,22;
  grid-template-columns:160px 1fr;
  border:3px solid #111827;
  border-radius:8px;
  background:
    radial-gradient(circle, rgba(37,99,235,.20) 0 2px, transparent 2px 9px),
    linear-gradient(135deg, #fff7ed, #eff6ff);
  box-shadow:8px 8px 0 #111827, 0 18px 38px rgba(15,23,42,.12);
}
.ttp-person-profile.is-profile-comic:before{
  height:0;
}
.ttp-person-profile.is-profile-comic:after{
  content:"";
  top:16px;
  right:16px;
  width:60px;
  height:34px;
  transform:rotate(9deg);
  border:3px solid #111827;
  border-radius:50%;
  background:rgba(255,255,255,.84);
}
.ttp-person-profile.is-profile-comic .ttp-profile-image{
  border:3px solid #111827;
  border-radius:4px;
  box-shadow:5px 5px 0 rgba(17,24,39,.96);
}
.ttp-person-profile.is-profile-comic .ttp-content-eyebrow{
  border:2px solid #111827;
  background:#facc15;
  color:#111827;
  box-shadow:4px 4px 0 #111827;
  text-transform:uppercase;
}
.ttp-person-profile.is-profile-comic .ttp-content-title{
  color:#111827;
  font-weight:950;
  text-transform:uppercase;
  text-shadow:2px 2px 0 rgba(249,115,22,.26);
}
.ttp-person-profile.is-profile-comic .ttp-content-meta-grid dt,
.ttp-person-profile.is-profile-comic .ttp-content-meta-grid dd,
.ttp-person-profile.is-profile-comic .ttp-content-button{
  border:2px solid #111827;
}

.ttp-fact-box,
.ttp-reader-note{
  border-left:0;
}
.ttp-fact-box.is-tone-verified{ --ttp-accent:#16a34a; --ttp-accent-rgb:22,163,74; --ttp-accent-2:#14b8a6; --ttp-accent-2-rgb:20,184,166; }
.ttp-fact-box.is-tone-unconfirmed{ --ttp-accent:#f59e0b; --ttp-accent-rgb:245,158,11; --ttp-accent-2:#ea580c; --ttp-accent-2-rgb:234,88,12; }
.ttp-fact-box.is-tone-update{ --ttp-accent:#2563eb; --ttp-accent-rgb:37,99,235; --ttp-accent-2:#0ea5e9; --ttp-accent-2-rgb:14,165,233; }
.ttp-fact-box.is-tone-correction,
.ttp-reader-note.is-note-correction{ --ttp-accent:#ef4444; --ttp-accent-rgb:239,68,68; --ttp-accent-2:#f97316; --ttp-accent-2-rgb:249,115,22; }
.ttp-reader-note.is-note-warning{ --ttp-accent:#f59e0b; --ttp-accent-rgb:245,158,11; --ttp-accent-2:#ef4444; --ttp-accent-2-rgb:239,68,68; }
.ttp-reader-note.is-note-update{ --ttp-accent:#2563eb; --ttp-accent-rgb:37,99,235; --ttp-accent-2:#0ea5e9; --ttp-accent-2-rgb:14,165,233; }

.ttp-related-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
  gap:10px;
}
.ttp-related-card{
  display:block;
  padding:14px;
  border:1px solid rgba(var(--ttp-accent-rgb), .16);
  border-radius:12px;
  background:
    linear-gradient(135deg, rgba(var(--ttp-accent-rgb), .08), rgba(255,255,255,0) 52%),
    #fff;
  color:inherit;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
a.ttp-related-card:hover{
  transform:translateY(-2px);
  border-color:rgba(var(--ttp-accent-rgb), .30);
  background:#f8fbff;
  box-shadow:0 12px 26px rgba(var(--ttp-accent-rgb), .13);
}

.ttpcb-media-control{
  display:grid;
  gap:8px;
}
.ttpcb-media-name{
  overflow:hidden;
  max-width:100%;
  padding:8px;
  border-radius:6px;
  background:#f1f5f9;
  color:#475569;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ttpcb-color-control{
  margin-top:14px;
}
.ttpcb-control-label{
  margin:0 0 8px;
  color:#172033;
  font-size:12px;
  font-weight:800;
}
.ttpcb-repeatable-control{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.ttpcb-repeatable-title{
  margin:0;
  color:#172033;
  font-size:12px;
  font-weight:850;
}
.ttpcb-repeatable-row{
  display:grid;
  gap:8px;
  padding:10px;
  border:1px solid #dbe3ef;
  border-radius:10px;
  background:#f8fafc;
}
.ttpcb-repeatable-fields{
  display:grid;
  gap:8px;
}
.ttpcb-repeatable-row .components-base-control{
  margin-bottom:0;
}
.ttpcb-repeatable-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

@media (prefers-reduced-motion: reduce){
  .ttp-content-block.is-frame-card,
  .ttp-content-button,
  .ttp-related-card{
    transition:none;
  }
  .ttp-content-block.is-frame-card:hover,
  .ttp-content-button:hover,
  a.ttp-related-card:hover{
    transform:none;
  }
}

@media (max-width: 720px){
  .ttp-content-block.is-frame-card{ padding:16px; border-radius:14px; }
  .ttp-content-block.is-frame-card:after{ display:none; }
  .ttp-content-row{ flex-direction:column; }
  .ttp-content-meta-grid{ grid-template-columns:1fr; }
  .ttp-timeline.is-timeline-horizontal,
  .ttp-timeline.is-timeline-auto{ max-width:760px; }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-list,
  .ttp-timeline.is-timeline-auto .ttp-timeline-list{
    grid-auto-flow:row;
    grid-auto-columns:auto;
    gap:12px;
    overflow-x:visible;
    padding:0;
    scroll-snap-type:none;
  }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-list:before,
  .ttp-timeline.is-timeline-auto .ttp-timeline-list:before{
    top:12px;
    right:auto;
    bottom:12px;
    left:10px;
    width:3px;
    height:auto;
    background:linear-gradient(180deg, var(--ttp-accent), var(--ttp-accent-2));
  }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-item,
  .ttp-timeline.is-timeline-auto .ttp-timeline-item{
    min-width:0;
    margin-top:0;
    padding:2px 0 2px 38px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    scroll-snap-align:none;
  }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-marker,
  .ttp-timeline.is-timeline-auto .ttp-timeline-marker{
    top:4px;
    left:0;
  }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-date,
  .ttp-timeline.is-timeline-auto .ttp-timeline-date{
    display:block;
    margin-bottom:0;
    padding:0;
    border-radius:0;
    background:transparent;
  }
  .ttp-timeline.is-timeline-horizontal .ttp-timeline-item:before,
  .ttp-timeline.is-timeline-auto .ttp-timeline-item:before{
    display:none;
  }
  .ttp-youtube-frame{ padding:28px 22px; border-radius:15px; }
  .ttp-youtube-frame:before,
  .ttp-youtube-frame:after{ width:8px; }
  .ttp-person-profile,
  .ttp-person-profile.is-profile-case-file,
  .ttp-person-profile.is-profile-newspaper,
  .ttp-person-profile.is-profile-comic{ grid-template-columns:1fr; }
  .ttp-profile-image{ max-width:240px; }
  .ttp-person-profile.is-profile-sports-card .ttp-profile-image{ max-width:none; }
}
