/**
 * 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%;
}

.block-008 .col-right {
    width: 45%;
}

.block-008 .general-content-col {
    width: 100%;
}

.block-008 a:not(.button) {
    text-decoration: underline;
}

.block-008 ul {
    list-style: square;
    padding-left: 1.25rem;
}

.block-008 ul:not(:last-child) {
    padding-bottom: 1em;
}

.block-008 li:has(> a) {
    list-style: none;
    position: relative;
}

.block-008 li:has(> a)::before {
    content: "";
    width: 1rem;
    height: 1rem;
    background: url(/wp-content/uploads/2026/01/ICON_web_gruen.svg) center/contain no-repeat;
    position: absolute;
    left: -1.25rem;
    top: .33rem;
}

.block-008 li>a {
    text-decoration: underline;
}

.block-008 .cta-button-wrapper {
    justify-content: center;
}


/* Toggles */

.block-008 .toggles-row {
    padding-top: 2rem;
}

.block-008 .toggle-item {
    border-bottom: 1px solid var(--color-gzo);
}

.block-008 .toggle-item:first-child {
    border-top: 1px solid var(--color-gzo);
}

.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;
}


/* Icon Liste */

.block-008 .icon-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.block-008 .icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.block-008 .icon-list-icon {
  flex: 0 0 2.5rem;
  width: 2.5rem;
}

.block-008 .icon-list-icon img {
  width: 100%;
  height: 2.5rem;
  max-width: none;
  display: block;
}

.block-008 .icon-list-text {
  flex: 1 1 0;
  min-width: 0;
}


/* In News Beitrag */

.single-post .block-008 {
    padding: 3rem 0 3rem !important;
}

.single-post .block-008:last-child {
    padding: 3rem 0 0 !important;
}

.single-post .block-008 .general-content-row,
.single-post .block-008 .toggles-row {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
}