/* ============================================================
   Paragraph with Read More Widget
   ============================================================ */

.bpw-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.bpw-wrap p{
    margin-bottom: 0px;
}
.bpw-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.5px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bpw-text.bpw-expanded {
    -webkit-line-clamp: unset !important;
    overflow: visible;
}

.bpw-read-more {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.5px;
    color: #666666;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.bpw-read-more:hover {
    opacity: 0.7;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .bpw-text {
        font-size: 14px;
    }

    .bpw-read-more {
        font-size: 14px;
    }
}
