/* ─────────────────────────────────────────────────────────
   Directorist Profile Sync — Estilos del bloque de perfil
   Bloque que aparece en la ficha pública de cada anuncio.
   ───────────────────────────────────────────────────────── */

.dps-profile-block {
    margin: 32px 0 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    color: inherit;
}

/* ── Header: foto + nombre + redes ─────────── */
.dps-profile-block__header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.dps-profile-block__photo img.dps-profile-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: block;
    flex-shrink: 0;
}

.dps-profile-block__identity {
    flex: 1;
    min-width: 0;
}

.dps-profile-block__name {
    margin: 0 0 8px;
    font-size: 1.2em;
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
}

/* ── Redes sociales ─────────────────────────── */
.dps-profile-block__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.dps-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.dps-social-link:hover                    { text-decoration: none; }
.dps-social-link--facebook:hover          { background: #1877f2; color: #fff; }
.dps-social-link--twitter:hover           { background: #000;    color: #fff; }
.dps-social-link--linkedin:hover          { background: #0a66c2; color: #fff; }
.dps-social-link--instagram:hover         { background: #e1306c; color: #fff; }
.dps-social-link--youtube:hover           { background: #ff0000; color: #fff; }

/* ── Descripción ────────────────────────────── */
.dps-profile-block__description {
    margin-bottom: 16px;
    font-size: .95em;
    line-height: 1.6;
    color: #4a5568;
}

.dps-profile-block__description p:last-child {
    margin-bottom: 0;
}

/* ── Lista de contacto ──────────────────────── */
.dps-profile-block__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dps-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92em;
    color: #374151;
    word-break: break-word;
}

.dps-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    flex-shrink: 0;
}

.dps-contact-item a {
    color: inherit;
    text-decoration: none;
}

.dps-contact-item a:hover {
    text-decoration: underline;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 480px) {
    .dps-profile-block {
        padding: 16px;
    }

    .dps-profile-block__photo img.dps-profile-photo {
        width: 60px;
        height: 60px;
    }

    .dps-profile-block__name {
        font-size: 1.05em;
    }
}
