.corporate-background > div {
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 5em;
    padding-bottom: 10em;
}

.corporate-background .corporate-texts h2 {
    text-transform: uppercase;
    color: var(--kbsb-dark);
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
}

.corporate-background .corporate-texts p.subtitle {
    margin: 0;
    font-size: 0.85em;
    position: relative;
    margin-bottom: 4em;
    font-style: italic;
}

.corporate-background .corporate-texts p.subtitle::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1em;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--kbsb-green);
}

.corporate-background .corporate-texts h3 {
    text-transform: uppercase;
    font-size: 1.2em;
    margin-top: 2em;
}

.corporate-background .corporate-texts ul,
.corporate-background .corporate-texts ol {
    margin: 0;
    padding: 0;
    padding-left: 1.2em;
}

.corporate-background .corporate-infos {
    position: relative;
}

.corporate-background .corporate-infos > ul {
    list-style: none;
    margin: 0;
    padding: 2em;
    border: solid 1px var(--kbsb-dark);
}

.corporate-background .corporate-infos > ul > li.info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
    color: black;
    font-weight: 600;
}

.corporate-background .corporate-infos > ul > li:not(:last-child) {
    border-bottom: dashed 1px var(--kbsb-dark);
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
}

.corporate-background .corporate-infos > ul > li .image {
    position: relative;
    display: block;
}

.corporate-background .corporate-infos > ul > li .image > img {
    display: block;
    width: 100%;
}

    @media all and (max-width: 1023px) {
        .corporate-background > div {
            grid-template-columns: 1fr;
        }
    }