/* ═══════════════════════════════════════════════════
   ── TIMELINE PAGE
   ═══════════════════════════════════════════════════ */
/* Lock body scroll on timeline page */
.timeline-page {
  overflow: hidden;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── FILTERS ── */
.tl-filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  flex-wrap: wrap;
}
.tl-filter-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.25rem;
}
.tl-filter-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border: var(--border-width) solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-speed);
}
.tl-filter-btn:hover {
  border-color: var(--border-bright);
  color: var(--text-dim);
}
.tl-filter-btn.active {
  border-color: var(--text);
  color: var(--text);
  background: var(--active-bg);
}
.tl-filter-sep {
  width: var(--border-width);
  height: 0.875rem;
  background: var(--border);
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* ── TIMELINE LAYOUT ── */
.tl-shell {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  overflow: hidden;
}

/* ── TIMELINE VIEWPORT ── */
.tl-viewport {
  flex: 0 0 45%;
  height: 45%;
  min-height: 0;
  position: relative;
  overflow: visible;
  border-bottom: 1px solid var(--border-bright);
  transition: flex-basis 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 5;
}

/* When the connection web opens, give the timeline less height
   and let the web panel take the remaining space. */
.tl-viewport.web-open {
  flex-basis: 32%;
  height: 32%;
}
.tl-scroll {
  height: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior-x: contain;
}


.tl-scroll::-webkit-scrollbar {
  display: none;
}

.tl-track {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 5rem;
  min-width: max-content;
  position: relative;
}

/* the horizontal rule */
.tl-line {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: var(--border-width);
  background: var(--border-bright);
  z-index: 0;
}

/* ── ENTRY CARD ── */
.tl-entry {
  position: relative;
  flex-shrink: 0;
  width: 15rem;
  height: 100%;
  margin-right: 3rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.tl-entry.tl-hidden {
  display: none;
}
.tl-entry.active .tl-card {
  border-color: var(--text) !important;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.05);
}
.tl-viewport.web-open .tl-entry.active .tl-stem-dot {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.tl-card {
  background: var(--active-bg);
  border: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
  margin-top: 12px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.tl-entry:hover .tl-card {
  border-color: var(--border-bright);
  background: #222;
}

/* thumbnail */
.tl-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--border);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.tl-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tl-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.tl-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.2s;
  pointer-events: none;
}

.tl-entry:hover .tl-play-icon {
  background: rgba(0, 0, 0, 0.12);
}

.tl-play-icon svg {
  width: 26px;
  height: 26px;
  fill: rgba(255, 255, 255, 0.82);
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.2s;
}
.tl-entry:hover .tl-play-icon svg {
  transform: scale(1.1);
}

.tl-type-badge {
  position: absolute;
  top: 0.375rem; left: 0.375rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.125rem 0.375rem;
  background: rgba(0,0,0,0.75);
  color: var(--text-dim);
}

.tl-thumb-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-thumb-placeholder span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5625rem;
  letter-spacing: 0.2em;
  color: var(--border-bright);
}

.tl-info { padding: 0.5rem 0.625rem 0.625rem; }
.tl-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.tl-title {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.375rem;
}
.tl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.tl-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.38rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1px 4px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tl-tag.trial-1 { border-color: var(--text); color: var(--text); }
.tl-tag.trial-2 { border-color: #aaa; color: #aaa; }
.tl-tag.trial-unknown { border-color: var(--border-bright); color: var(--border-bright); }

/* ── STEM + DOT ── */
.tl-stem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
  position: relative;
  overflow: visible;
  pointer-events: none;
}
.tl-stem-line {
  flex: 1;
  width: 1px;
  min-height: 0;
  background: linear-gradient(to bottom,
          var(--border) 0%,
          var(--border-bright) 100%);
  position: relative;
  z-index: 1;
}
.tl-entry.below .tl-stem .tl-stem-line {
  margin-bottom: 0;
  margin-top: -0.21875rem;
}
.tl-stem-dot {
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-bright);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 3;
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.tl-entry:hover .tl-stem-dot {
  background: var(--text);
  border-color: var(--text);
}

.tl-dot-overlay-layer {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  overflow: visible;
}
.tl-dot-overlay {
  position: absolute;
  width: 12px;
  height: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border-bright);
  transform: translate(-50%, -50%);
  transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
}
.tl-dot-overlay.active {
  background: var(--text);
  border-color: var(--text);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.75rem !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.open {
  display: flex;
  opacity: 1;
}
.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  background: var(--active-bg);
  border: 1px solid var(--border-bright);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  color: var(--text-dim);
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.modal-close:hover {
  border-color: var(--text);
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  width: 100%;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
}

.modal-body .modal-media {
  width: 100%;
  background: #0a0a0a;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 55vh;
}
.modal-body .modal-media video,
.modal-body .modal-media img {
  width: 100%;
  max-height: 55vh;
  object-fit: contain;
  display: block;
}
.modal-body .modal-media video {
  background: #000;
}

.modal-body .modal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 0.25rem;
}
.modal-body .modal-meta .modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
}
.modal-body .modal-meta .modal-date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.modal-body .modal-meta .modal-desc {
  font-size: 0.7rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 0.3rem;
}
.modal-body .modal-meta .modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.3rem;
}
.modal-body .modal-meta .modal-tags span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.modal-body .modal-story {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.8;
  padding: 0.25rem 0;
  white-space: pre-wrap;
}

.tl-web-panel {
  flex: 1 1 auto;
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: none;
  z-index: 1;
}
.tl-web-panel.open {
  display: flex;
}

.tl-web-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.tl-web-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.web-node {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  z-index: 3;
}

.node-card {
  background: var(--active-bg);
  border: 1px solid var(--border);
  padding: 8px 10px;
  cursor: default;
  transition: border-color 0.15s, background 0.15s;
  min-width: 120px;
  max-width: 190px;
}
.node-card:hover {
  border-color: var(--border-bright);
  background: #1c1c1c;
}

.node-type {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.38rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.node-type.lore {
  color: #888;
}
.node-type.theory {
  color: #bbb;
}
.node-type.image {
  color: var(--text-muted);
}
.node-type.link {
  color: var(--text-muted);
}
.node-type.video {
  color: var(--text);
}

.node-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.node-desc {
  font-size: 0.52rem;
  color: var(--text-dim);
  line-height: 1.55;
}
.node-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.node-link {
  display: inline-block;
  margin-top: 5px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.38rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 2px 6px;
  transition: color 0.15s, border-color 0.15s;
}

.node-link:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.web-line-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.36rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--border-bright);
}

.tl-web-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tl-web-empty-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--border-bright);
}

/* ── TIMELINE RESPONSIVE ── */
@media (max-width: 48em) {
  .tl-filters { padding: 0.5rem 1rem; gap: 0.375rem; }
  .tl-entry { width: 9rem; margin-right: 2rem; }
  .tl-modal-body { padding: 1rem 1.125rem 1.25rem; }
  .tl-modal-title { font-size: 0.9375rem; }
  .modal-overlay { padding: 1rem; }
  .modal-body { padding: 1.2rem 1.2rem 1rem; }
  .modal-body .modal-media { max-height: 40vh; }
  .modal-body .modal-media video,
  .modal-body .modal-media img { max-height: 40vh;}
}
@media (max-width: 30em) {
  .modal-overlay { padding: 0.5rem; }
  .modal-body { padding: 0.8rem 0.8rem 0.6rem; }
  .modal-body .modal-media { max-height: 35vh; }
  .modal-body .modal-media video,
  .modal-body .modal-media img { max-height: 35vh; }
  .modal-close { top: 6px; right: 8px; width: 28px; height: 28px; font-size: 0.8rem; }
  .tl-filter-btn { font-size: 0.4375rem; padding: 0.1875rem 0.5rem; }
  .tl-entry { width: 7.5rem; margin-right: 1.5rem; }
  .tl-title { font-size: 0.5625rem; }
}

/* ── MODAL / REELS LIGHTBOX REDESIGN ── */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  width: min(1120px, 94vw);
  height: min(820px, 90vh);
  max-width: none;
  max-height: none;
  padding: 0;
  background: #101010;
  border: 1px solid var(--border-bright);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: scale(0.97);
  transition: transform 0.25s cubic-bezier(0.34, 1.2, 0.64, 1);
  display: block;
}

.modal-overlay.open .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 20;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.modal-close:hover {
  color: var(--text);
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 0;
  overflow: hidden;
}

/* Left: portrait media stage */
.modal-body .modal-media {
  width: auto;
  height: min(82vh, 820px);
  aspect-ratio: 9 / 16;
  max-height: none;
  justify-self: center;
  align-self: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050505;
  border: 0;
  overflow: hidden;
}

/* JS currently supplies max-height inline; keep the 9:16 stage in control. */
.modal-body .modal-media[style] {
  max-height: min(82vh, 820px) !important;
}

.modal-body .modal-media video,
.modal-body .modal-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  display: block;
}

.modal-body .modal-media video {
  background: #000;
}

/* Right: information rail */
.modal-body .modal-meta {
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4.5rem 2rem 2rem;
  border-left: 1px solid var(--border);
  background: var(--active-bg);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-bright) transparent;
}

.modal-body .modal-meta::-webkit-scrollbar {
  width: 5px;
}

.modal-body .modal-meta::-webkit-scrollbar-track {
  background: transparent;
}

.modal-body .modal-meta::-webkit-scrollbar-thumb {
  background: var(--border-bright);
}

/* Metadata hierarchy */
.modal-body .modal-meta .modal-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
}

.modal-body .modal-meta .modal-date {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--text-muted);
}

.modal-body .modal-meta .modal-desc {
  margin: 0.9rem 0 0;
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--text-dim);
}

.modal-body .modal-meta .modal-tags {
  margin: 0.45rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.modal-body .modal-meta .modal-tags span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 6px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.modal-body .modal-story {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--text-dim);
  white-space: pre-wrap;
}

/* Small screens: preserve portrait media, then place metadata underneath. */
@media (max-width: 48em) {
  .modal-overlay {
    padding: 0.75rem;
  }

  .modal-content {
    width: min(100%, 620px);
    height: min(94vh, 900px);
  }

  .modal-body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, auto) minmax(0, 1fr);
    overflow-y: auto;
    overflow-x: hidden;
  }

  .modal-body .modal-media {
    width: min(100%, 54vh);
    height: auto;
    aspect-ratio: 9 / 16;
    max-height: none;
    justify-self: center;
  }

  .modal-body .modal-media[style] {
    max-height: none !important;
  }

  .modal-body .modal-media video,
  .modal-body .modal-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
  }

  .modal-body .modal-meta {
    height: auto;
    overflow: visible;
    border-left: 0;
    border-top: 1px solid var(--border);
    padding: 1.25rem 1.25rem 1.5rem;
  }
}

@media (max-width: 30em) {
  .modal-overlay {
    padding: 0.35rem;
  }

  .modal-content {
    width: 100%;
    height: 96vh;
  }

  .modal-body .modal-media {
    width: min(100%, 50vh);
  }

  .modal-body .modal-meta {
    padding: 1rem;
  }

  .modal-close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
  }
}

/* ── MOBILE TIMELINE REFINEMENT ──
   Desktop timeline remains unchanged. This tightens the mobile rhythm,
   reduces oversized cards/gaps, and adds deliberate edge breathing room.
*/
@media (max-width: 48em) {
  .tl-shell {
    min-width: 0;
  }

  .tl-viewport {
    flex-basis: 40%;
    height: 40%;
  }

  .tl-viewport.web-open {
    flex-basis: 30%;
    height: 30%;
  }

  .tl-track {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .tl-entry {
    width: 10rem;
    margin-right: 1.25rem;
  }

  .tl-card {
    margin-top: 8px;
  }

  .tl-info {
    padding: 0.4rem 0.5rem 0.5rem;
  }

  .tl-date {
    font-size: 0.45rem;
    letter-spacing: 0.12em;
  }

  .tl-title {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .tl-type-badge {
    top: 0.3rem;
    left: 0.3rem;
    font-size: 0.44rem;
    padding: 0.1rem 0.3rem;
  }

  .tl-play-icon svg {
    width: 22px;
    height: 22px;
  }

  .tl-stem {
    margin-top: 4px;
  }

  .tl-stem-dot {
    width: 10px;
    height: 10px;
  }

  .tl-filters {
    padding: 0.4rem 1rem;
    gap: 0.3rem;
  }
}

@media (max-width: 30em) {
  .tl-viewport {
    flex-basis: 38%;
    height: 38%;
  }

  .tl-viewport.web-open {
    flex-basis: 28%;
    height: 28%;
  }

  .tl-track {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .tl-entry {
    width: 8.75rem;
    margin-right: 1rem;
  }

  .tl-card {
    margin-top: 6px;
  }

  .tl-info {
    padding: 0.35rem 0.45rem 0.45rem;
  }

  .tl-title {
    font-size: 0.53rem;
  }

  .tl-date {
    font-size: 0.42rem;
  }
}