.price-block {
    background-color: var(--main-purple);
    color: var(--best-white);
    padding: 2rem 1.5rem;
}

.price-block h3 {
    color: var(--main-yellow);
}

.price-block .price-row {
    display: flex;
    gap: 1rem;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 1rem;
}

.price-block .price-description {
    flex: 0 0 70%;
}

.price-block .price-value {
    font-weight: bold;
    font-style: italic;
    color: var(--main-yellow);    
}

@media (min-width: 700px) {
    .price-block {
        padding: 4rem 3rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .price-block .price-description {
        flex: 0 0 60%;
    }
}

@media (max-width: 767px) {
    .price-block .price-row {
        flex-direction: column;
        padding-bottom: 1rem;
    }
    .price-block .price-row {
        border-bottom: 2px solid #7B5E75;
    } 
    .price-block .price-row:last-of-type, .price-block .price-row:has(+ .extra-separator) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.price-block .extra-separator {
    margin-bottom: 1rem;
}