.epl-price-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* можно переопределить в Elementor */
    font-family: inherit;
}

.epl-price-item {
    display: flex;
    align-items: flex-start;
    border-radius: 4px;
}

.epl-price-image img {
    display: block;
    max-width: 100%;
}

.epl-price-content {
    flex: 1;
}

.epl-price-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap; /* позволяет перенос строк */
    border: none;
}

.epl-title {
    max-width: clamp(200px, 60%, 400px);
    word-break: break-word;
    white-space: normal;
    overflow-wrap: break-word;
    flex-shrink: 1;
}

.epl-title-separator {
    flex-grow: 1;
    height: 1px;
    background-color: #eee;
    opacity: 0.8;
    margin: 15px 0;
}

.epl-price-values {
    white-space: nowrap;
    font-weight: bold;
    text-align: right;
}


.epl-price-description {
    line-height: 1.4;
}