/* ── Feelings Carousel ── */

.feelings-carousel-section {
    background: var(--color-signal-white, #F5F7FB);
    padding: var(--space-8, 64px) 0;
}

.feelings-carousel__title {
    font-family: var(--font-primary, 'Space Grotesk', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-gravity-black, #23284A);
    margin-bottom: var(--space-2, 16px);
}

.feelings-carousel__subtitle {
    text-align: center;
    color: var(--color-fog-gray, #A0A8C0);
    font-size: 1.125rem;
    margin-bottom: var(--space-5, 40px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feelings-carousel__loading,
.feelings-carousel__empty {
    text-align: center;
    padding: var(--space-6, 48px);
    color: var(--color-fog-gray, #A0A8C0);
    font-size: 1.1rem;
}

/* ── Track & Cards ── */

.feelings-carousel__track {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 1080px;
}

.feelings-carousel__inner {
    display: flex;
    gap: 24px;
    will-change: transform;
}

.feeling-card {
    flex: 0 0 316px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(35, 40, 74, 0.08);
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
    min-height: 220px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feeling-card:hover {
    box-shadow: 0 6px 24px rgba(35, 40, 74, 0.14);
    transform: translateY(-2px);
}

/* Sentiment variants */
.feeling-card--positive {
    border-left-color: #48bb78;
}

.feeling-card--negative {
    border-left-color: #f56565;
}

.feeling-card--neutral {
    border-left-color: var(--color-fog-gray, #A0A8C0);
}

/* ── Card internals ── */

.feeling-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.feeling-card__icon {
    font-size: 1.5rem;
    line-height: 1;
}

.feeling-card__industry {
    font-family: var(--font-primary, 'Space Grotesk', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-fog-gray, #A0A8C0);
    background: var(--color-signal-white, #F5F7FB);
    padding: 3px 10px;
    border-radius: 12px;
}

.feeling-card__company {
    font-family: var(--font-primary, 'Space Grotesk', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gravity-black, #23284A);
    margin-bottom: 10px;
}

.feeling-card__summary {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--color-steel-ink, #3A4066);
    flex: 1;
    margin-bottom: 16px;
}

.feeling-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
}

.feeling-card__strength {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-deep-slate, #2D3358);
}

.feeling-card--positive .feeling-card__strength {
    color: #38a169;
}

.feeling-card--negative .feeling-card__strength {
    color: #e53e3e;
}

.feeling-card__time {
    font-size: 0.8rem;
    color: var(--color-fog-gray, #A0A8C0);
}

/* ── Controls ── */

.feelings-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: var(--space-4, 32px);
}

.feelings-carousel__btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-fog-gray, #A0A8C0);
    border-radius: 50%;
    background: white;
    color: var(--color-deep-slate, #2D3358);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.feelings-carousel__btn:hover {
    background: var(--color-gravity-black, #23284A);
    border-color: var(--color-gravity-black, #23284A);
    color: white;
}

.feelings-carousel__dots {
    display: flex;
    gap: 8px;
}

.feelings-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e0;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.feelings-carousel__dot.active {
    background: var(--color-gravity-black, #23284A);
    transform: scale(1.2);
}

/* ── CTA ── */

.feelings-carousel__cta {
    text-align: center;
    margin-top: var(--space-5, 40px);
}

.feelings-carousel__cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-family: var(--font-primary, 'Space Grotesk', sans-serif);
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.3);
}

.feelings-carousel__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

/* ── Responsive ── */

@media (max-width: 1100px) {
    .feeling-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .feelings-carousel__title {
        font-size: 1.5rem;
    }

    .feelings-carousel__track {
        max-width: 100%;
    }

    .feeling-card {
        flex: 0 0 260px;
        min-height: 200px;
    }
}
