/* =========================================
   REDES SOCIALES - ESTILOS ESPECÍFICOS
   Focus: Post de Instagram/LinkedIn, Engagement
   ========================================= */

.social-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    max-width: 350px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px) rotate(1deg); /* Pequeña rotación dinámica */
}

/* Cabecera del Post */
.social-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-avatar {
    width: 35px; height: 35px;
    background: #1F1F1F; /* Negro */
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Imagen cuadrada */
.social-img {
    width: 100%;
    aspect-ratio: 1/1; /* Cuadrado perfecto */
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #cbd5e1;
    border: 1px solid #f1f5f9;
}

/* Iconos de interacción */
.like-bubble {
    display: flex; 
    align-items: center; 
    gap: 6px;
    color: var(--brand-red); /* Corazón rojo/naranja */
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-heading);
}

.caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.hashtag { color: var(--brand-yellow); }