    .timeline-detail-storage { 
        display:none; 
    }

    .image-header {
        width: 100%;
        object-fit: cover;
        max-height: 205px;
    }

    .active {
        color: #fff;
        text-shadow: 0 0 6px rgba(255, 255, 255, 0.8),
                        0 0 12px rgba(255, 255, 255, 0.6);
    }

    .block-editor-container {
        display: grid;
        width: 100%;
        place-items: center;
    }

    .content-body {
        width: 100%;
        max-width: 700px;
        padding: 2rem;
    }

    .timeline-wrapper {
        padding: 0; 
    }

    .item-title {
        cursor: pointer;
    }
    
    .timeline-container {
        overflow: auto;
        display: flex;
        gap: 2rem;
        padding: 1rem;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        background-color: black; 
    
        color: white;
        font-size: 1.5rem;
        font-family: 'Gotham A', 'Gotham B', sans-serif;
        font-weight: bold;
        
        @media (min-width: 768px) {
            justify-content: center;
        }

        @media (max-width: 767px) {
            justify-content: start;
        }
    }

    .image-header, .block-editor-container, simple-carousel-wrapper {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .simple-carousel-wrapper {
    width: 100%;
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .simple-carousel .carousel-card {
    text-align: center;
    padding: 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .carousel-image {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .carousel-text {
    font-family: 'Gotham A', 'Gotham B', sans-serif;
    color: #222;
  }

  .carousel-title {
    font-weight: normal;
    margin-bottom: 0.5rem;
  }

  .carousel-description {
    font-size: 0.95rem;
    opacity: 0.8;
  }

  .slick-prev {
    left: -0.75rem;
  }

  .slick-next {
    right: -0.75rem;
  }

  .slick-dots li button:before {
    font-size: 14px; /* Increase this for larger dots */
    line-height: 20px;
    width: 20px;
    height: 20px;
    color: #888;
    opacity: 0.5;
  }

  .slick-dots li.slick-active button:before {
    color: #FF2A2A;
    opacity: 1;
    font-size: 16px; /* active dot slightly larger if you want */
  }

  .slick-prev:before, .slick-next:before {
    color: #000;
  }