/* Square corners + brand colors */
.wtp{
  --wtp-right-width: 460px;
  --wtp-list-height: auto;
  --wtp-brand-bg: #062556;
  --wtp-accent: #FF7300;
  display:grid;
  grid-template-columns: 1fr var(--wtp-right-width);
  gap: 0;
  background: var(--wtp-brand-bg);
  border-radius: 0;
  overflow: hidden;
}
@media (max-width:900px){ .wtp{ grid-template-columns:1fr } .wtp-right{ order:-1 } }
.wtp-left{ background: var(--wtp-brand-bg); }
.wtp-figure{ position:relative; aspect-ratio:16/9; margin:0; }
.wtp-img{ width:100%; height:100%; object-fit:cover; display:block; }
.wtp-underline{ position:absolute; left:0; right:0; bottom:0; height:6px; background: var(--wtp-accent); display:block; }
.wtp-body{ padding:12px 14px 16px; color:#e9eef8; }
.wtp-meta{ display:flex; gap:8px; align-items:center; color:#dfe8f5; font-size:12px; margin-bottom:8px; flex-wrap: wrap; }
.wtp-cat{ background: var(--wtp-accent); color:#111; padding:2px 8px; border-radius:999px; font-weight:700 }
.wtp-heading{ margin:0 0 6px 0; font-size:22px; line-height:1.2 }
.wtp-link{ color:#fff; text-decoration:none }
.wtp-excerpt{ color:#cfe0f1; font-size:14px }
.wtp-right{ background: var(--wtp-brand-bg); }
.wtp-list{ display:flex; flex-direction:column; max-height: var(--wtp-list_height); overflow:auto; }
.wtp-item{
  display:grid; grid-template-columns: var(--wtp-thumb-w,84px) 1fr;
  gap:8px; align-items:center; padding:8px 10px;
  border:0; border-bottom:1px solid rgba(255,255,255,.08);
  background: transparent; color:#e9eef8; text-align:left; cursor:pointer;
  border-radius: 0; position: relative;
}
.wtp-item .wtp-thumb{
  width: var(--wtp-thumb-w,84px); height: var(--wtp-thumb-h,52px);
  border-radius: 0; background-size:cover; background-position:center; background-color:#10161f;
}
.wtp-item .wtp-title{ font-size:13px; line-height:1.25; white-space:normal; overflow:visible; text-overflow:clip }
.wtp-item:hover{ background: rgba(255,255,255,.06) }
.wtp-item.is-active{ background: var(--wtp-accent); color:#111 }
.wtp-item.is-active .wtp-title{ color:#111; font-weight:800 }
