.text ul,
.text ol {
    line-height: 1.6;
}

.text p a:not(.button) {
    text-decoration: none;
    color: var(--blue-color);
    border-bottom: solid 1px transparent;
    transition: .1s all;
}

.text p a:not(.button):hover {
    border-color: var(--blue-color);
}

.text-content {
    overflow: hidden;
    transition: all .5s ease;
}

.text-container.toggle-container .text-content:not(.active) {
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.block-text>div>h1,
.block-text>div>h2,
.block-text>div>h3,
.block-text>div>h4,
.block-text>div>h5,
.block-text>div>h6 {
    font-size: 35px;
    margin-top: 0;
}

.text.text-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 4px;
    overflow: hidden;
    border: solid 1px #eee;
    padding: 5px;
}

p img.aligncenter {
    margin: auto;
    display: flex;
}

p img.alignleft {
    margin-right: 20px;
    margin-bottom: 20px;
    display: flex;
    float: left;
}

p img.alignright {
    margin-left: 20px;
    margin-bottom: 20px;
    display: flex;
    float: right;
}

@media (max-width:1024px) {
    p img.alignleft {
        margin-right: 0;
        float: none;
        clear: both;
    }

    p img.alignright {
        margin-left: 0;
        float: none;
        clear: both;
    }
}


/* Toggle Button */

.text-container .toggle_btn {
    text-align: center;
    border-top: solid 1px #eee;
    padding-top: 20px;
}

.text-container .toggle_btn button {
    padding: 0;
    background: transparent;
}


/* Multiple Columns */

.text.col-2 {
    column-count: 2;
    gap: 40px;
}

.text.col-3 {
    column-count: 3;
    gap: 40px;
}

.text.col-4 {
    column-count: 4;
    gap: 40px;
}

@media (max-width:768px) {

    .text.col-2,
    .text.col-3,
    .text.col-4 {
        column-count: 1;
    }
}