/* Thoughts Section Styles */
.bsb-thoughts-section {
    height: 100vh;
    /* Fixed height for pinning */
    background-color: var(--bsb-color-bg);
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    /* Vertical breathing room */
}

.thoughts-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.bsb-thoughts-heading {
    font-family: var(--bsb-font-display);
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    /* Reduced as requested */
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--bsb-color-text);
}

.bsb-thoughts-nav {
    display: flex;
    gap: 15px;
}

.bsb-thoughts-arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    /* Clean icon only */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--bsb-color-text);
    padding: 0;
}

.bsb-thoughts-arrow:hover {
    transform: scale(1.2);
    /* Subtle scale instead of bg change */
    opacity: 0.7;
}

.bsb-thoughts-arrow svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5px;
}

/* Carousel for Pinned Scroll */
.bsb-thoughts-carousel-wrapper {
    flex-grow: 1;
    /* Take remaining height */
    display: flex;
    align-items: center;
    /* Vertical centering of carousel only */
    position: relative;
    width: 100%;
}

.bsb-thoughts-carousel {
    display: flex;
    gap: 40px;
    /* Consistent spacing */
    width: max-content;
    padding-left: calc((100vw - 1400px) / 2 + 20px);
    padding-right: calc((100vw - 1400px) / 2 + 20px);
    will-change: transform;
}

@media (max-width: 1440px) {
    .bsb-thoughts-carousel {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Card Design */
.bsb-thought-card {
    flex: 0 0 480px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bsb-thought-image-box {
    width: 100%;
    aspect-ratio: 1.5 / 1;
    /* More premium slightly wider ratio */
    border-radius: 24px;
    overflow: hidden;
    background-color: #f8f8f8;
    position: relative;
}

.bsb-thought-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsb-thought-card:hover .bsb-thought-image-box img {
    transform: scale(1.08);
    /* Only zoomed image, no translateY */
}

.bsb-thought-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bsb-thought-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.bsb-thought-tag {
    padding: 6px 14px;
    border: 1px solid #06262D;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #06262D;
}

.bsb-thought-title {
    font-family: var(--bsb-font-primary);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 0;
    color: var(--bsb-color-text);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 1024px) {
    .bsb-thought-card {
        flex: 0 0 400px;
    }
}

@media (max-width: 768px) {
    .bsb-thoughts-section {
        padding: 80px 0;
    }

    .bsb-thoughts-carousel {
        gap: 25px;
    }

    .bsb-thought-card {
        flex: 0 0 340px;
    }
}