/** Shopify CDN: Minification failed

Line 23:21 Expected identifier but found whitespace
Line 23:23 Unexpected "{"
Line 23:32 Expected ":"
Line 92:13 Expected identifier but found whitespace
Line 92:15 Unexpected "{"
Line 92:24 Expected ":"
Line 92:51 Expected ":"

**/
 .timeline-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    align-items: stretch;
    }

    .timeline-left {
    width: 50%;
    border-radius: 40px;
    background-color: {{ section.settings.text_bg_color }};
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 30px;
    }
    .subtitle{
      margin: 0px 0px 25px;
      color: #3F3D3E;
    }
    .year{
     font-weight: 700;
    }
    .timeline-left h2, .timeline-right h2{
      font-family: 'GT Ultra Fine';
      font-weight: 400;
      line-height: 50px;
      font-size: clamp(26px, 3vw, 46px);
      letter-spacing: 0;
      margin: 0px;
      color: #3F3D3E;
    }
    .timeline-right {
    width: 50%;
    position: relative;
    min-height: 480px;
    }

    .timeline-list {
      margin-top: 20px;
      width: 100%;
    }
    ul.timeline-list{
    padding:0;
    }
    .timeline-item {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    border-top: 0.2px solid #BBBBBB;
    transition: color .25s;
    color: #8E8E8E;
    }

    .timeline-item:hover,
    .timeline-item.active {
    color: #3F3D3E
    }

    .timeline-content {
    display: none;
    }

    .timeline-content.active {
    display: block;
    }

    .timeline-content img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    }
    .timeline-image-wrapper {
      position: relative;
      width: 100%;
      height: {{ section.settings.image_height }}px; /* NEW */
      overflow: hidden;
      border-radius: 20px;
    }

    .timeline-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 35px;
    }

    .info-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    padding: 16px 20px;
    border-radius: 35px;
    background-color: #FEFBF69C;
    letter-spacing: 0;
    }
    .info-box p {
    color: #3F3D3E;
    font-size: clamp(14px, 1.5vw, 18px);
    margin: 10px 0 0;
    font-family: Gotham;
    font-weight: 325;
    line-height: 24px;
    }

   .tag {
    font-size: 14px;
    background: #FEFBF6;
    padding: 8px;
    border-radius: 40px;
    color: #3F3D3E;
    display: inline;
    }
    .mobile_title{
      display:none;
    }

    /* Mobile */
    @media (max-width: 768px) {
    .timeline-wrapper { flex-direction: column-reverse; gap: 0; }
    .timeline-left, .timeline-right { width: 100%; }
    .timeline-left{
      border-radius: 0 0 20px 20px;
      padding: 0 20px;
    }
    .timeline-right { min-height: 300px; }
    .info-box p{ line-height:16px;}

    .timeline-right{
      background: #FEFBF6;
      padding: 20px;
      border-radius: 20px 20px 0 0;
    }
    .info-box {
    bottom: 5px;
    left: 5px;
    right: 5px;
    border-radius: 20px;
    }
    .timeline-image-wrapper img{
          border-radius: 20px;
    }
    .desktop_title{
      display:none
    }
    .mobile_title{
      display:block;
    }

    }