/* ============================================================
   POLIDICOM - Noticias (Related Persons + Share)
   ============================================================ */

.polidicom-related-persons {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.polidicom-related-persons h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a237e;
    margin-bottom: 16px;
}

.polidicom-related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.polidicom-related-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    text-decoration: none;
    color: #1e293b;
    transition: all 0.2s;
}

.polidicom-related-card:hover {
    background: #eef2ff;
    border-color: #1a237e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.polidicom-related-photo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.polidicom-related-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.polidicom-related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a237e;
    color: #fff;
    font-weight: 900;
    font-size: 1.1rem;
}

.polidicom-related-info {
    display: flex;
    flex-direction: column;
}

.polidicom-related-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
}

.polidicom-related-cargo {
    font-size: 0.7rem;
    color: #64748b;
}

/* ============================================================
   SHARE BUTTONS
   ============================================================ */

.polidicom-share {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.polidicom-share h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 12px;
}

.polidicom-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.polidicom-share-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: opacity 0.2s, transform 0.2s;
}

.polidicom-share-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: #fff;
}

.polidicom-share-fb { background: #1877f2; }
.polidicom-share-tw { background: #0f1419; }
.polidicom-share-wa { background: #25d366; }
.polidicom-share-li { background: #0a66c2; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .polidicom-related-grid {
        flex-direction: column;
    }

    .polidicom-share-buttons {
        flex-direction: column;
    }

    .polidicom-share-btn {
        justify-content: center;
    }
}
