/* Projekte Spalte Startseite unten*/


.section-projects {
    background: var(--secondary-color);
    padding: calc(2 * var(--griditem)) 0;
}

.section-projects > .innerwidth1 {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}

.section-projects h2 {
    text-transform: uppercase;
    font-weight: normal;
    position: relative;
    z-index: 10;
}

.projects-column-view {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto;
}

.projects-column-view > .views-row {
    position: relative;
    z-index: 10;
}

.projects-column-view > .views-row .views-field-title {
    position: relative;
    z-index: 10;
}

.projects-column-view > .views-row .views-field-title a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    font-weight: normal;
}

.projects-column-view > .views-row:hover .views-field-title a {
    border-bottom: 4px solid black;
}

.projects-column-view > .views-row .views-field-field-hero {
    position: absolute;
    width: 400px;
    height: auto;
    left: calc(50% + 0px);
    bottom: 0;
    z-index: 2;
    display: none;
}

.projects-column-view > .views-row .views-field-field-text {
    position: absolute;
    z-index: 9;
    width: calc(50vw - 200px);
    height: auto;
    left: calc(80% + 0px);
    bottom: 0;
    display: none;
}

.projects-column-view > .views-row.active .views-field-field-hero,
.projects-column-view > .views-row.active .views-field-field-text {
    display: block;
}

.projects-column-view > .views-row:hover .views-field-field-hero,
.projects-column-view > .views-row:hover .views-field-field-text {
    display: block;
}