/**
 * STYLES: Beitrag Modelle - Halb: Text / Halb: Bild
*/


.block-003 .section-title-row.bg-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 100%;
    background: var(--background-grey-light);
    z-index: -1;
}

.block-003 .section-title-row {
    margin-bottom: -1rem;
}

.block-003 .section-title-row h2 {
    padding: var(--section-padding-top);
    text-align: center;
}

.block-003 .section-title-row .lead {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding-top: 1rem;
}

.block-003 a:not(.button) {
    text-decoration: underline;
}

.block-003 ul {
    list-style: square;
    padding-left: 1.25rem;
}

.block-003 ul:not(:last-child) {
    padding-bottom: 1em;
}

.block-003 li:has(> a) {
    list-style: none;
    position: relative;
}

.block-003 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-003 li>a {
    text-decoration: underline;
}


.block-003 .half-half-row {
    position: relative;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    padding: var(--section-padding-top-bottom);
    gap: 0 10%;
}

.block-003 .half-half-row.image-left {
    flex-direction: row-reverse;
}

.block-003 .half-half-row.bg-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    width: 100vw;
    height: 100%;
    background: var(--background-grey-light);
    z-index: -1;
}

.block-003 .col-left {
    width: 50%;
}

.block-003 .col-right {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.block-003 .col-right-img {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 26rem;
}

.block-003 .col-right-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--border-radius-half);
}

/* --- Sonderfälle: Icons (Grosses / Kleines Icon) --- */

.block-003 .half-half-row.is-large-icon .col-right-img,
.block-003 .half-half-row.is-small-icon .col-right-img {
    overflow: visible;
    min-height: auto;
    flex: 0 0 auto;
}

.block-003 .half-half-row.is-large-icon .col-right-img img,
.block-003 .half-half-row.is-small-icon .col-right-img img {
    position: static;
    top: auto;
    left: auto;
    transform: none;

    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;

    border-radius: 0;
    display: block;
    margin: 0 auto;
}

/* ------------------------------------
   GROSSES ICON → 50 / 50
------------------------------------ */

.block-003 .half-half-row.is-large-icon .col-left {
    width: 45%;
}

.block-003 .half-half-row.is-large-icon .col-right {
    width: 45%;
}

.block-003 .half-half-row.is-large-icon .col-right-img img {
    max-width: 12rem;
}

/* ------------------------------------
   KLEINES ICON → 25 / 65
------------------------------------ */

.block-003 .half-half-row.is-small-icon {
    align-items: flex-start;
}

.block-003 .half-half-row.is-small-icon .col-right {
    width: 25%;
}

.block-003 .half-half-row.is-small-icon .col-left {
    width: 65%;
}

.block-003 .half-half-row.is-small-icon .col-right-img img {
    max-width: 8rem;
}

/* ------------------------------------
   GROSSES ICON + WEISS
------------------------------------ */

.block-003 .half-half-row.is-large-icon.is-white-icon .col-right {
    background: var(--background-gzo);
    border-radius: var(--border-radius-half) 4rem var(--border-radius-half) 4rem;
    padding: 9rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.block-003 .half-half-row.is-large-icon.is-white-icon .col-right-img img {
    max-width: 8rem;
}

/* ------------------------------------
   FANCYBOX
------------------------------------ */

.block-003 .col-right-img a::before {
    content: '';
    display: block;
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 1.25rem;
    top: 1.25rem;
    background-color: var(--background-gzo);
    background-image: url(https://gzo.asphosting.ch/wp-content/uploads/2026/01/ICON_Plus_weiss.svg);
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 100%;
    z-index: 1;
}


/* Toggles */

.block-003 .toggles-wrapper {
    margin-top: 2rem;
}

.block-003 .toggle-item {
    border-bottom: 1px solid var(--color-gzo);
}

.block-003 .toggle-item:first-child {
    border-top: 1px solid var(--color-gzo);
}

.block-003 .toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0;
    transition: all 400ms ease;
}

.block-003 .toggle-header h4 {
    font-size: 1.2rem;
    margin: 0;
    padding-bottom: 0;
}

.block-003 .toggle-icon {
    display: flex;
    align-items: center;
    transition: transform 300ms ease;
}

.block-003 .toggle-icon img {
    width: 1.25rem;
    height: 1.25rem;
}

.block-003 .toggle-content {
    padding: 0 0 1rem 0;
    overflow: hidden;
}


/* Icon Liste */

.block-003 .icon-list-wrapper {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 2rem;
}

.block-003 .icon-list-wrapper {
    margin-top: 2rem;
}

.block-003 .icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.block-003 .icon-list-item .icon-list-icon img {
    width: 2.5rem;
    height: 2.5rem;
}