/**
* Block Name: standort
*/

section.standort .row.info_wrapper {
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-medium);
    background: var(--white);
    position: relative;
    top: -100px;
}

section.standort img {
    max-height: 400px;
    border-radius: var(--radius-medium);
}

/**
* Block Name: text_standort
*/

section.standort address a {
    color: var(--green);
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 11px;
    align-items: center;
}

section.standort address a:hover {
    color: var(--viridian);
}

section.standort address svg path {
  transition: fill 250ms ease-in-out;
}

section.standort address a:hover svg path {
    fill: var(--viridian);
}


section.standort .col-lg-5 {
    gap: 30px !important;
}

section.standort .col-lg-5:nth-of-type(2) {
   border-left: 1px solid var(--green);
   padding-left: 30px;
   margin-top: 50px;
}

section.standort .link_wrapper a::after {
    display: none;
}

section.standort .link_wrapper a svg {

    transition: transform 200ms ease-in-out;
    background: transparent;
}

section.standort .link_wrapper a svg rect {
    fill: transparent;
}

section.standort .link_wrapper a:hover svg {
    transform: scale(1.05);
}


section.standort .link_wrapper a svg path {
    fill: var(--green);

    transition: fill 200ms ease-in-out;
}

section.standort .link_wrapper a:hover svg path {
    fill: var(--viridian);
}

section.standort .oez {
    width: 100%;
    background-color: var(--alt-light-green);
    border-radius: 20px;
    padding: 30px;
}

section.standort .oez:has(.label-custom) {
    background-color: var(--white);
}

section.standort p.label.label-current {
    margin-bottom: 15px;
    font-size: 0.985rem !important;
}

section.standort p.label.label-custom,
section.standort p.label.label-upcoming {
    color: var(--viridian);
}

section.standort .oez_special {
    gap: 30px;
}

section.standort .oez_special .oez {
    background-color: var(--white);
    border-width: 3px;
    padding-top: 0;
}

section.standort .description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.9rem;
}

section.standort .description dd {
    text-transform: capitalize;
}

section.standort .description dd,
section.standort .description dt,
section.standort .oez dd,
section.standort .oez dt{
    font-weight: 400;
}

@media (max-width: 992px) {

    section.standort .row.info_wrapper {
        padding: 30px;
    }
    section.standort .col-lg-5:nth-of-type(2) {
       border-left: none;
       padding-left: calc(var(--bs-gutter-x) * .5);
     }
}