.text-block {
    padding: 2rem 0;
}

.text-block__content {
    margin-top: 1rem;
}

.text-block__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.text-block__column {
    flex: 1;
    min-width: 250px;
}

.text-block__paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.text-block__paragraph-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    border: 1px solid #eee;
    border-radius: 4px;
}

.text-block__paragraph-remove {
    position: absolute;
    right: 0.5rem;
    top: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.text-block__paragraph-wrapper:hover .text-block__paragraph-remove {
    opacity: 1;
}

.text-block__add-paragraph {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .text-block__columns {
        flex-direction: column;
    }
}
