.sticky-element {
    position: -webkit-sticky; /* Para Safari */
    position: sticky;
    top: 110px; /* Se quedará fijo a 20px de la parte superior */
}

/* --- ↓↓↓↓↓↓ ESTILOS PARA 'PUBLICACIONES RECIENTES' DENTRO DE LA PUBLICACIÓN ↓↓↓↓↓↓ --- */

.post-recommended {
    border: 1px solid var(--primary);
    padding: 10px;
    box-shadow: 0 2px 4px rgba(236, 142, 19, 0.1);
    transition: all 0.3s ease;
}

.post-recommended:hover {
    box-shadow: 0 4px 8px rgba(236, 142, 19, 0.15);
    transform: translateY(-3px);
}

.post-recommended img {
    display: block;
    width: 100%;
    height: auto;
    border: none;
}

.post-date {
    font-size: 12px;
    color: #888;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.post-title:hover {
    color: #ff8c00;
}


/* --- ↑↑↑↑↑↑ ESTILOS PARA 'PUBLICACIONES RECIENTES' DENTRO DE LA PUBLICACIÓN ↑↑↑↑↑↑ --- */
