/* BStudio Timeline Carousel Styles */
.bstudio-timeline-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.bstudio-timeline-carousel {
    overflow: hidden;
    flex: 1;
}

.bstudio-timeline-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 32px;
}

.bstudio-timeline-item {
    flex: 0 0 calc(50% - 16px);
    text-align: left;
    padding: 24px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
}

.bstudio-timeline-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
}

.bstudio-timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bstudio-timeline-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: #333;
}

.bstudio-timeline-desc {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #7d7d7d;
}

.bstudio-timeline-desc strong {
    font-weight: 600;
}

.bstudio-carousel-nav {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #F67E7D;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #F67E7D;
    padding: 0;
}

.bstudio-carousel-nav:hover:not(.disabled) {
    background: #F67E7D;
    color: #fff;
    transform: scale(1.05);
}

.bstudio-carousel-nav.disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bstudio-carousel-nav svg {
    pointer-events: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .bstudio-timeline-wrapper {
        gap: 16px;
        padding: 16px 0;
    }
    
    .bstudio-timeline-track {
        gap: 24px;
    }
    
    .bstudio-timeline-item {
        flex: 0 0 100%;
        padding: 20px;
    }
    
    .bstudio-timeline-title {
        font-size: 20px;
    }
    
    .bstudio-timeline-desc {
        font-size: 15px;
    }
    
    .bstudio-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .bstudio-carousel-nav svg {
        width: 20px;
        height: 20px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .bstudio-timeline-item {
        padding: 22px;
    }
    
    .bstudio-timeline-title {
        font-size: 21px;
    }
}