  .featured-timeline-container {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f9f7f3 0%, #f5f1e8 100%);
    border-radius: 0.5rem;
    border: 1px solid #e8e4dc;
  }

  .featured-timeline-header {
    margin-bottom: 2rem;
  }

  .featured-timeline-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c2a27;
  }

  .featured-timeline-description {
    margin: 0;
    font-size: 0.9rem;
    color: #8c8680;
  }

  .featured-timeline-canvas-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    background: white;
    border-radius: 0.25rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  #featured-timeline-canvas {
    width: 100%;
    height: auto;
    display: block;
  }

  .featured-timeline-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    color: #8c8680;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .featured-timeline-metadata {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e8e4dc;
  }

  .timeline-current-week {
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    color: #5c5956;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .timeline-current-week strong {
    font-weight: 700;
    color: #c9964f;
    font-size: 1.1rem;
  }

  .timeline-themes {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .timeline-theme {
    display: flex;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #5c5956;
  }

  .theme-week {
    font-weight: 600;
    color: #2c2a27;
  }

  .theme-label {
    color: #8c8680;
  }

  @media (max-width: 768px) {
    .featured-timeline-container {
      margin: 1rem -1rem;
      padding: 1rem;
      border-radius: 0;
    }

    .featured-timeline-metadata {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .timeline-themes {
      gap: 0.75rem;
    }

    .timeline-theme {
      font-size: 0.75rem;
    }
  }
