#plastonax-social-feed.plx-social-feed {
    --plx-blue: #1597e5;
    --plx-blue-dark: #087dc3;
    --plx-text: #111827;
    --plx-muted: #667085;
    --plx-border: #e8edf2;
    --plx-surface: #ffffff;
    --plx-bg: #f6f9fc;

    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    margin: 0;
    padding: 50px 24px 52px;
    background:
        radial-gradient(circle at 92% 8%, rgba(21, 151, 229, 0.10), transparent 29%),
        var(--plx-bg);
    color: var(--plx-text);
    box-sizing: border-box;
}

#plastonax-social-feed[hidden] {
    display: none !important;
}

#plastonax-social-feed * {
    box-sizing: border-box;
}

#plastonax-social-feed .plx-social-feed__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

#plastonax-social-feed .plx-social-feed__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

#plastonax-social-feed .plx-social-feed__heading {
    max-width: 720px;
}

#plastonax-social-feed .plx-social-feed__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--plx-blue-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

#plastonax-social-feed .plx-social-feed__fbmark,
#plastonax-social-feed .plx-social-feed__top-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #1877f2;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: 800;
    line-height: 1;
}

#plastonax-social-feed .plx-social-feed__fbmark {
    width: 24px;
    height: 24px;
    font-size: 17px;
}

#plastonax-social-feed h2 {
    margin: 0;
    color: var(--plx-text);
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.12;
    letter-spacing: -0.025em;
}

#plastonax-social-feed .plx-social-feed__heading > p {
    max-width: 650px;
    margin: 12px 0 0;
    color: var(--plx-muted);
    font-size: 17px;
    line-height: 1.6;
}

#plastonax-social-feed .plx-social-feed__top-cta {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--plx-blue);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 9px 24px rgba(21, 151, 229, 0.20);
    transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}

#plastonax-social-feed .plx-social-feed__top-cta:hover {
    background: var(--plx-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(21, 151, 229, 0.28);
}

#plastonax-social-feed .plx-social-feed__top-cta-icon {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,.18);
    font-size: 17px;
}

#plastonax-social-feed .plx-social-feed__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

#plastonax-social-feed .plx-social-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--plx-border);
    border-radius: 18px;
    background: var(--plx-surface);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

#plastonax-social-feed .plx-social-card:hover {
    transform: translateY(-4px);
    border-color: rgba(21, 151, 229, 0.28);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
}

#plastonax-social-feed .plx-social-card__image-link {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #eaf2f8;
}

#plastonax-social-feed .plx-social-card__image {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    transition: transform .35s ease;
}

#plastonax-social-feed .plx-social-card:hover .plx-social-card__image {
    transform: scale(1.025);
}

#plastonax-social-feed .plx-social-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #eaf6fd, #dbeefa);
}

#plastonax-social-feed .plx-social-card__placeholder span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    background: #1877f2;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 800;
}

#plastonax-social-feed .plx-social-card__badge {
    position: absolute;
    right: 13px;
    top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 999px;
    background: #1877f2;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 5px 15px rgba(0,0,0,.18);
}

#plastonax-social-feed .plx-social-card__body {
    display: flex;
    min-height: 206px;
    flex-direction: column;
    padding: 21px 22px 22px;
}

#plastonax-social-feed .plx-social-card__date {
    margin-bottom: 10px;
    color: var(--plx-blue-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .055em;
    text-transform: uppercase;
}

#plastonax-social-feed .plx-social-card__message {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 20px;
    color: #344054;
    font-size: 15px;
    line-height: 1.62;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

#plastonax-social-feed .plx-social-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--plx-blue-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

#plastonax-social-feed .plx-social-card__link span {
    transition: transform .18s ease;
}

#plastonax-social-feed .plx-social-card__link:hover span {
    transform: translateX(3px);
}

#plastonax-social-feed .plx-social-feed__mobile-cta {
    display: none;
}

@media (max-width: 980px) {
    #plastonax-social-feed.plx-social-feed {
        padding: 42px 22px 46px;
    }

    #plastonax-social-feed .plx-social-feed__head {
        align-items: flex-start;
    }

    #plastonax-social-feed .plx-social-feed__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #plastonax-social-feed .plx-social-card:nth-child(n+3) {
        display: none;
    }
}

@media (max-width: 700px) {
    #plastonax-social-feed.plx-social-feed {
        padding: 36px 18px 40px;
    }

    #plastonax-social-feed .plx-social-feed__head {
        display: block;
        margin-bottom: 22px;
    }

    #plastonax-social-feed .plx-social-feed__heading > p {
        margin-top: 9px;
        font-size: 15px;
    }

    #plastonax-social-feed .plx-social-feed__top-cta {
        display: none;
    }

    #plastonax-social-feed .plx-social-feed__track {
        display: flex;
        gap: 14px;
        width: calc(100% + 18px);
        margin-right: -18px;
        padding-right: 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    #plastonax-social-feed .plx-social-feed__track::-webkit-scrollbar {
        display: none;
    }

    #plastonax-social-feed .plx-social-card,
    #plastonax-social-feed .plx-social-card:nth-child(n+3) {
        display: block;
        flex: 0 0 min(84vw, 330px);
        scroll-snap-align: start;
    }

    #plastonax-social-feed .plx-social-card__body {
        min-height: 194px;
        padding: 18px 19px 20px;
    }

    #plastonax-social-feed .plx-social-feed__mobile-cta {
        display: block;
        margin-top: 22px;
    }

    #plastonax-social-feed .plx-social-feed__mobile-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        min-height: 48px;
        padding: 0 16px;
        border-radius: 12px;
        background: var(--plx-blue);
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        text-align: center;
        text-decoration: none;
    }

    #plastonax-social-feed .plx-social-feed__mobile-cta span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 23px;
        height: 23px;
        border-radius: 999px;
        background: rgba(255,255,255,.18);
        font-family: Arial, sans-serif;
        font-size: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #plastonax-social-feed *,
    #plastonax-social-feed *::before,
    #plastonax-social-feed *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
