/* ALBiNOLOG — Mustili website. */
/* YouTube: extend the existing two-column video layout. */
.youtube-section + .youtube-section {
  margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line);
}
.youtube-section > h2 { margin-bottom: 2rem; }
.youtube-content .video-stage { width: 100%; min-height: 200px; flex-shrink: 0; }
.youtube-feature-card { display: flex; flex-direction: column; min-width: 0; }
.youtube-feature-copy { display: flex; flex-direction: column; align-items: flex-start; flex: 1; padding-top: 1rem; }
.youtube-category { color: var(--accent); font-size: .875rem; font-weight: 600; margin-bottom: .5rem; }
.youtube-feature-copy h3 { font-size: 1.3rem; line-height: 1.45; letter-spacing: -.015em; text-wrap: pretty; }
.youtube-watch { margin-top: auto; padding-top: 1rem; }
.youtube-watch .text-link { font-size: .9375rem; min-height: 44px; }

/* Timeline: keep years and prose in their established columns. */
.timeline { --timeline-axis: 120px; --timeline-dot-top: .5rem; }
.timeline article { border-left: 0; }
.timeline article::before {
  content: ""; display: block; position: absolute; width: 2px;
  left: var(--timeline-axis); top: calc(var(--timeline-dot-top) + 5px);
  bottom: calc(-1 * (var(--timeline-dot-top) + 5px)); background: #74844e;
}
.timeline article:last-child::before { display: none; }
.timeline article::after {
  content: ""; position: absolute; width: 10px; height: 10px;
  left: calc(var(--timeline-axis) - 4px); top: var(--timeline-dot-top);
  border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px #29351e;
}
.timeline .timeline-year {
  justify-self: start; align-self: start; padding: .2rem .55rem;
  border: 1px solid #53643a; border-radius: 2rem; background: #1c2416;
  color: var(--accent); font-size: .875rem; line-height: 1.4;
}
@media (max-width: 640px) {
  .timeline { --timeline-axis: 98px; }
  .youtube-section + .youtube-section { margin-top: 3rem; padding-top: 2rem; }
  .youtube-feature-copy h3 { font-size: 1.2rem; }
}
@media (max-width: 580px) {
  .timeline { --timeline-axis: 6px; }
  .timeline article { padding-left: 1.85rem; gap: .85rem; }
}
@media (forced-colors: active) {
  .timeline article::before, .timeline article::after { background: CanvasText; forced-color-adjust: none; }
  .timeline .timeline-year { border-color: CanvasText; }
}
