/**
 * STYLES: Block 008 - Inhalt allgemein H2 + Text oder Spalten + Toggles
*/

.block-008 {
    padding: var(--section-padding-top-bottom);
}

.block-008 .section-title-row {
    padding-bottom: 1rem;
}

.block-008 .general-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0 10%;
}

.block-008 .general-content-row:not(:last-child) {
    padding-bottom: 2rem;
}

.block-008 .col-left {
    width: 45%;
    font-size: 1.2rem;
}

.block-008 .col-right {
    width: 45%;
}

.block-008 .general-content-col {
    width: 100%;
}

.block-008 .col-right h3 {
    font-size: 1.5rem;
}

.block-008 a:not(.button) {
    text-decoration: underline;
}

.block-008 ul {
    list-style: none;
    padding-left: 0;
}

.block-008 ul li {
    padding-left: 1.75rem;
    position: relative;
}

.block-008 ul li::before {
    content: "";
    display: inline-block;
    width: 1.1rem;
    height: 1.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%231a3f6f' d='M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0.3em;
}

.block-008 ul:not(:last-child) {
    padding-bottom: 1em;
}


/* Toggles */

.block-008 .toggles-row {
    padding-top: 2rem;
}

.block-008 .toggle-item {
    border-bottom: 1px solid var(--color-asp);
}

.block-008 .toggle-item:first-child {
    border-top: 1px solid var(--color-asp);
}

.block-008 .toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: all 400ms ease;
}

.block-008 .toggle-header h4 {
    font-size: 1.2rem;
    margin: 0;
    padding-bottom: 0;
}

.block-008 .toggle-icon {
    display: flex;
    align-items: center;
}

.block-008 .toggle-icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.block-008 .toggle-content {
    padding: 0 0 1rem 0;
    overflow: hidden;
}

