.core-values-section {
    position: relative;
    border: none;
}


.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 1px solid var(--border-color);
}

.core-values-grid-navigation {
    display: none;
}

.core-item {
    position: relative;
    height: 100%;
    min-height: 15rem;
    border-top: 1px solid var(--border-color);
}



.core-item-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border-right: 1px solid var(--border-color);
}

.core-item-big {
    grid-row: span 2;
}

.core-item-content {
    padding: 2rem var(--container-space);
    padding-bottom:0;
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 22rem;
    gap: 0.5rem;
    z-index: 1;
    left: 0;
    transition: left 0.6s;
}

.core-item-container:hover .core-item-content {
    left: 2rem;
}

.core-item-content-title {
    font-size: 1.5rem;
    line-height: 100%;
}

.core-item-content-description {
    line-height: 140%;
}

.core-item .hw-button {
    z-index: 1;
    background-color: #FFF;
    position: absolute;
    bottom: var(--container-space);
    left: var(--container-space);
    width: max-content;
}

.core-item-bg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
}

@media (min-width: 1440px) {
    .core-item {
        min-height: 20rem;
    }
}

@media (max-width: 992px) {
    .core-values-grid {
        display: flex;
        overflow: hidden;
    }

    .core-values-grid-navigation {
        display: flex;
        align-items: center;
        position: absolute;
        bottom: 2rem;
        left: var(--container-space);
        z-index: 2;
        background-color: #ffffffdb;
        padding: 0.25rem;
    }

    .core-item-container {
        justify-content: flex-start;
        gap: 2rem;
        height: 26.875rem;
    }

    .core-values-section-headline-container {
        position: relative;
    }
    .core-item-content-title {
        font-size: 1.75rem;
    }
    .core-item .hw-button {
        left: 50%;
        transform: translateX(-50%);

        bottom: 9rem;
    }
}