.column--2cols {
    display: flex;
    gap: 2em; /* Abstand zwischen den Spalten */
}

.col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tile-box {
    flex: 1; /* sorgt für gleiche Höhe in beiden Spalten */
    padding: 2em;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* sorgt für saubere Verteilung von Text & Button */
}

.content--main .tile-box a.link--box {
    background-color: #fff;
    color: rgb(40, 40, 40);
    border: 0px;
    text-shadow: initial !important;
}

.tile-box a.link--box:hover {
    background-color: #ccc;
}

h2 {
    font-size: 1.3em;
    color: rgb(40, 40, 40);
    text-transform: inherit;
}

.column--2cols:has(.tile-box) {
    display: flex;
    flex-wrap: nowrap;
    margin-left: -15px;
    margin-right: -15px;
}

.column--2cols .col:has(.tile-box) {
    margin: 0 15px;
    flex: 1 1 0%;
    max-width: none;
    display: flex;
    flex-direction: column;
}
.content--main {
    border: 0px solid rgb(40, 40, 40);
}
.tile-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tile-box p:last-of-type {
    margin-top: auto;
    margin-bottom: 0px;
}

@media (max-width: 992px) {
    .column--2cols {
        flex-direction: column;
    }

    .column--2cols .col {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 0 30px 0;
    }
}
