/* Parfclub Auto Links v1.5.0 */

/* ── Сама ссылка ── */
.parfclub-autolink {
    color: inherit;
    border-bottom: 1px dashed currentColor;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.15s ease;
    cursor: pointer;
}
.parfclub-autolink:hover {
    opacity: 1;
    border-bottom-style: solid;
    text-decoration: none;
}

/* ── Попап ── */
#pf-popup {
    position: absolute;
    z-index: 99999;
    display: none;

    background: #fff;
    border: 1px solid rgba(0,0,0,.09);
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,.14), 0 2px 6px rgba(0,0,0,.07);

    align-items: stretch;
    overflow: hidden;
    min-width: 200px;
    max-width: 270px;
}

#pf-popup-img {
    width: 78px;
    min-height: 78px;
    flex-shrink: 0;
    background: #f4f4f4;
    overflow: hidden;
}
#pf-popup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#pf-popup-body {
    padding: 11px 13px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    flex: 1;
    min-width: 0;
}

#pf-popup-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0;
    word-break: break-word;
}

#pf-popup-hint {
    font-size: 11px;
    color: #999;
    margin: 0;
    white-space: nowrap;
}
