.splide__arrow {
    background: rgba(255,255,255,.8);
    height: 2.5em;
    width: 2.5em;
}

.rst-socialfeed-wrapper {
    display: flex;
    padding: 20px;
    gap: var(--gap-main);
    background: linear-gradient(
180deg, var(--color-facebook), var(--color-facebook-dark));
    flex-direction: column;
}

.rst-socialfeed-title {
    display: flex;
    gap: 3px;
    font-size: clamp(1rem,1.2rem,1.5rem);
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    align-items: center;
    flex-wrap: nowrap;
}

.rst-socialfeed-title svg {
    color: white;
}

/* Tarjeta de post */
.rst-post-card {
    background: white;
    border-radius: var(--border-main-radius);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rst-post-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rst-post-card-header {
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
}

.rst-post-card-header span {
    color: dimgray;
    font-size: .85rem;
}

.rst-post-media img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.rst-post-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    gap: var(--gap-main);
    flex-direction: column;
    justify-content: space-between;
}

.rst-post-text {
    font-size: 0.9rem;
    color: rgb(50,50,50);
    line-height: 1.4;
    flex: 1;
}

.rst-post-link {
    display: flex;
    gap: 5px;
    padding: 10px;
    background: var(--color-facebook-dark);
    border-radius: var(--border-main-radius);
    font-size: 0.8rem;
    text-decoration: none;
    text-align: center;
    transition: background .2s ease;
    justify-content: center;
}

.rst-post-link:hover {
    background: var(--color-facebook);
}

.rst-post-link svg {
    color: white;
}

.splide__arrow {
    background: rgba(0,0,0,0.2);
}