/* Peptide video fact-check library */

.vl {
  --vl-ink: #0f172a;
  --vl-muted: #64748b;
  --vl-line: #e2e8f0;
  --vl-teal: #0f766e;
  --vl-teal-soft: #ccfbf1;
  --vl-bg: #f8fafc;
  color: var(--vl-ink);
}

.vl a:focus-visible {
  outline: 2px solid var(--vl-teal);
  outline-offset: 2px;
}

.vl-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

@media (min-width: 640px) {
  .vl-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
}

.vl-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  color: var(--vl-muted);
  margin: 1.25rem 0 1.5rem;
}
.vl-crumb a { color: var(--vl-teal); font-weight: 600; }
.vl-crumb a:hover { text-decoration: underline; }

.vl-hero h1 {
  font-family: Syne, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #0b1220;
}
.vl-hero__lede {
  margin-top: .75rem;
  max-width: 46rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #334155;
}
.vl-hero__meta {
  margin-top: .85rem;
  font-size: .85rem;
  color: var(--vl-muted);
}
.vl-hero__meta strong { color: var(--vl-ink); }

.vl-ai {
  margin: 1.75rem 0 2rem;
  border: 1px solid var(--vl-line);
  border-radius: 1.1rem;
  background: #fff;
  overflow: hidden;
}
.vl-ai__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.15rem;
  background: linear-gradient(180deg, #f0fdfa, #fff);
  border-bottom: 1px solid var(--vl-line);
}
.vl-ai__head h2 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vl-teal);
}
.vl-ai__head p {
  margin-top: .25rem;
  font-size: .92rem;
  font-weight: 650;
  color: var(--vl-ink);
}
.vl-ai__grid {
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .vl-ai__grid { grid-template-columns: 1fr 1fr; }
}
.vl-ai__item {
  padding: 1rem 1.15rem;
  border-top: 1px solid var(--vl-line);
}
@media (min-width: 768px) {
  .vl-ai__item { border-top: 0; border-right: 1px solid var(--vl-line); }
  .vl-ai__item:nth-child(2n) { border-right: 0; }
  .vl-ai__item:nth-child(n+3) { border-top: 1px solid var(--vl-line); }
}
.vl-ai__item h3 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--vl-muted);
}
.vl-ai__item p {
  margin-top: .4rem;
  font-size: .9rem;
  line-height: 1.5;
  color: #334155;
}

.vl-hubs { margin: 2.25rem 0; }
.vl-hubs__head h2 {
  font-family: Syne, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}
.vl-hubs__head p {
  margin-top: .35rem;
  color: var(--vl-muted);
  font-size: .95rem;
}
.vl-hubs__grid {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
}
@media (min-width: 700px) {
  .vl-hubs__grid { grid-template-columns: 1fr 1fr; }
}
.vl-hub-card {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding: 1.05rem 1.1rem;
  border: 1px solid var(--vl-line);
  border-radius: 1rem;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.vl-hub-card:hover {
  border-color: #99f6e4;
  box-shadow: 0 10px 30px -18px rgba(15, 118, 110, .45);
  transform: translateY(-1px);
}
.vl-hub-card__top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: baseline;
}
.vl-hub-card h3 {
  font-size: 1.02rem;
  font-weight: 750;
}
.vl-hub-card__count {
  font-size: .78rem;
  font-weight: 700;
  color: var(--vl-teal);
  white-space: nowrap;
}
.vl-hub-card p {
  font-size: .86rem;
  line-height: 1.45;
  color: #475569;
}
.vl-hub-card__go {
  margin-top: .2rem;
  font-size: .8rem;
  font-weight: 750;
  color: var(--vl-teal);
}

.vl-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 640px) {
  .vl-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .vl-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.vl-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--vl-line);
  border-radius: 1.05rem;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .15s, border-color .15s, transform .15s;
}
.vl-card:hover {
  border-color: #99f6e4;
  box-shadow: 0 16px 36px -24px rgba(15, 23, 42, .4);
  transform: translateY(-2px);
}
.vl-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 20% 20%, rgba(45, 212, 191, .35), transparent 45%),
    linear-gradient(145deg, #0f172a, #134e4a 55%, #042f2e);
  color: #ecfdf5;
  display: grid;
  place-items: center;
}
.vl-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vl-card__play {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  display: grid;
  place-items: center;
}
.vl-card__badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
  padding: .22rem .45rem;
  border-radius: 999px;
}
.vl-card__body { padding: .9rem 1rem 1.05rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }
.vl-card h2 {
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -.01em;
}
.vl-card__by {
  margin-top: auto;
  font-size: .78rem;
  color: var(--vl-muted);
}
.vl-card__by strong { color: #334155; font-weight: 650; }

.vl-pager {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: center;
  margin: 2.25rem 0 0;
}
.vl-pager a, .vl-pager span {
  min-width: 2.15rem;
  height: 2.15rem;
  padding: 0 .5rem;
  display: inline-grid;
  place-items: center;
  border-radius: .55rem;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid var(--vl-line);
  background: #fff;
  color: #334155;
}
.vl-pager a:hover { border-color: #99f6e4; color: var(--vl-teal); }
.vl-pager .is-current {
  background: var(--vl-teal);
  border-color: var(--vl-teal);
  color: #fff;
}
.vl-pager .is-gap { border: 0; background: transparent; color: var(--vl-muted); }

.vl-show {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 980px) {
  .vl-show { grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr); align-items: start; }
}

.vl-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vl-teal);
}
.vl-show h1 {
  font-family: Syne, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.18;
  margin-top: .35rem;
}
.vl-show__lede {
  margin-top: .7rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #334155;
}
.vl-show__meta {
  margin-top: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .85rem;
  font-size: .85rem;
  color: var(--vl-muted);
}
.vl-verdict {
  display: inline-flex;
  align-items: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: var(--vl-teal-soft);
  color: #115e59;
}
.vl-verdict.is-unsupported { background: #fee2e2; color: #991b1b; }
.vl-verdict.is-mixed { background: #fef3c7; color: #92400e; }
.vl-verdict.is-context { background: #e0e7ff; color: #3730a3; }
.vl-verdict.is-supported { background: #dcfce7; color: #166534; }

.vl-embed {
  border: 1px solid var(--vl-line);
  border-radius: 1.1rem;
  background: #0b1220;
  overflow: hidden;
  min-height: 22rem;
  display: grid;
  place-items: center;
}
.vl-embed .tiktok-embed,
.vl-embed .instagram-media {
  margin: 0 auto !important;
}
.vl-embed__placeholder {
  padding: 2rem 1.25rem;
  text-align: center;
  color: #99f6e4;
}
.vl-embed__placeholder p {
  margin-top: .7rem;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  color: #cbd5e1;
  font-size: .9rem;
  line-height: 1.5;
}
.vl-embed__placeholder a { color: #5eead4; font-weight: 700; }

.vl-take {
  border: 1px solid var(--vl-line);
  border-radius: 1.1rem;
  background: #fff;
  padding: 1.1rem 1.15rem;
}
.vl-take h2 { font-size: 1.02rem; font-weight: 800; }
.vl-take ol {
  margin-top: .7rem;
  padding-left: 1.15rem;
  display: grid;
  gap: .55rem;
}
.vl-take li { font-size: .92rem; line-height: 1.5; color: #334155; }

.vl-trans {
  margin-top: 1rem;
  border: 1px solid var(--vl-line);
  border-radius: 1.1rem;
  background: #fff;
}
.vl-trans summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-weight: 750;
}
.vl-trans summary::-webkit-details-marker { display: none; }
.vl-trans pre {
  white-space: pre-wrap;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .88rem;
  line-height: 1.6;
  color: #334155;
  padding: 0 1.15rem 1.15rem;
}

.vl-prose {
  margin-top: 1.5rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #1e293b;
}
.vl-prose h2 {
  font-family: Syne, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1.5rem 0 .55rem;
}
.vl-prose p + p { margin-top: .9rem; }

.vl-faq { margin-top: 2rem; }
.vl-faq h2 {
  font-family: Syne, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
}
.vl-faq details {
  margin-top: .65rem;
  border-bottom: 1px solid var(--vl-line);
  padding-bottom: .65rem;
}
.vl-faq summary { cursor: pointer; font-weight: 700; }
.vl-faq p { margin-top: .4rem; color: #475569; font-size: .95rem; line-height: 1.55; }

.vl-side {
  display: grid;
  gap: 1rem;
}
.vl-side__block {
  border: 1px solid var(--vl-line);
  border-radius: 1.1rem;
  background: #fff;
  padding: 1rem 1.05rem;
}
.vl-side__block h2 {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--vl-muted);
  margin-bottom: .7rem;
}
.vl-side a.vl-mini {
  display: block;
  padding: .55rem 0;
  border-top: 1px solid #f1f5f9;
  font-size: .88rem;
  font-weight: 650;
  color: #0f172a;
  text-decoration: none;
}
.vl-side a.vl-mini:first-of-type { border-top: 0; padding-top: 0; }
.vl-side a.vl-mini:hover { color: var(--vl-teal); }
.vl-side .vl-mini span {
  display: block;
  margin-top: .15rem;
  font-size: .75rem;
  font-weight: 500;
  color: var(--vl-muted);
}

.vl-disclaimer {
  margin-top: 2rem;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--vl-muted);
}

.vl-empty {
  padding: 2rem;
  text-align: center;
  color: var(--vl-muted);
  border: 1px dashed var(--vl-line);
  border-radius: 1rem;
  background: #fff;
}

.vl .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
