.feed2-v2 {
    padding: 5rem 0;
}

.feed2-v2__section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.feed2-v2__row {
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.feed2-v2__row--reversed {
    flex-direction: row-reverse;
}

/* ── Image ── */

.feed2-v2__image-col {
    flex: 1;
    min-width: 0;
}

.feed2-v2__image-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.feed2-v2__image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.feed2-v2__image-wrap a {
    display: block;
    line-height: 0;
}

.feed2-v2__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    filter: brightness(0.92) saturate(0.95);
    transition: filter 0.3s ease;
}

.feed2-v2__image-wrap:hover .feed2-v2__image {
    filter: brightness(1) saturate(1);
}

.feed2-v2__image-shadow {
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 -30px 40px -20px rgba(0, 0, 0, 0.4), inset 0 2px 8px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

/* ── Content ── */

.feed2-v2__content-col {
    flex: 1;
    min-width: 0;
}

.feed2-v2__subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.55;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid rgba(90, 93, 255, 0.6);
}

.feed2-v2__subtitle-image {
    max-height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.feed2-v2__title {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.feed2-v2__desc {
    font-size: 1rem;
    line-height: 1.65;
    opacity: 0.75;
    margin-bottom: 0.75rem;
}

.feed2-v2__desc p {
    margin-bottom: 0.65rem;
}

.feed2-v2__desc p:last-child {
    margin-bottom: 0;
}

.feed2-v2__details {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.55;
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.feed2-v2__details p {
    margin-bottom: 0.5rem;
}

.feed2-v2__details p:last-child {
    margin-bottom: 0;
}

.feed2-v2__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feed2-v2__actions .btn {
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feed2-v2__actions .btn:hover {
    transform: translateY(-2px);
}

/* ── Light theme ── */

[data-bs-theme="light"] .feed2-v2__image-wrap {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

[data-bs-theme="light"] .feed2-v2__image-wrap:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

[data-bs-theme="light"] .feed2-v2__image {
    filter: brightness(0.96) saturate(0.97);
}

[data-bs-theme="light"] .feed2-v2__image-wrap:hover .feed2-v2__image {
    filter: brightness(1) saturate(1);
}

[data-bs-theme="light"] .feed2-v2__image-shadow {
    box-shadow: inset 0 -20px 30px -15px rgba(0, 0, 0, 0.1), inset 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* ── Responsive ── */

@media (max-width: 991px) {
    .feed2-v2__row,
    .feed2-v2__row--reversed {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .feed2-v2__content-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feed2-v2__actions {
        justify-content: center;
    }

    .feed2-v2__details {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .feed2-v2 {
        padding: 3rem 0;
    }

    .feed2-v2__row {
        gap: 1.5rem;
    }
}
