/* Projekte */
.aw-project-categories {
    display: flex;
    flex-direction: column;
}

.aw-project-categories i {
    color: #e9df02;
}

.aw-project-category h2 {
    border-bottom: 1.5px solid #e0e0e0;
    padding-bottom: 12px;
}


.aw-project-headline a {
    font-size: 24px;
    text-transform: none;
    color: #929395;
}

.aw-project-headline span {
    letter-spacing: 2px;
    color: #3c3c3c;
    font-size: 24px;
}

.aw-project-headline img {
    height: 24px;
    width: 24px;
}

.aw-project-grid {
    display: grid;
    grid-gap: 1em;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-bottom: 4em;
}

.aw-project-grid.all-projects {
    width: 100vw;
}

.aw-project-grid-item {
    transition: 0.2s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), 0.2s box-shadow, 0.2s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
    box-shadow: 0 6px 10px rgba(0, 0, 0, .08), 0 0 6px rgba(0, 0, 0, .05);
    border-radius: 0.25em;
}

.aw-project-grid-item:hover {
    transform: scale(1.025);
}

.aw-project-grid-item>img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 0.25em;
    border-top-right-radius: 0.25em;
}

.aw-project-grid-item .content {
    margin: 10px;
}

.aw-project-grid-item .content .category {
    font-weight: 100;
    opacity: 0.6;
}

.aw-project-grid-item .content .name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2lh;
    margin-bottom: 1lh;
    font-weight: 600;
}

.aw-project-grid-item .content .link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aw-project-grid-item .content .link a {
    flex: 1;
    text-align: center;
    background-color: #3c3c3c;
    border-radius: 2px;
    color: white;
    padding: 8px 4px;
    font-weight: 600;
}

.aw-project-grid-item .content .link a svg {
    height: 24px;
    width: 24px;
    fill: #e9df02;
}

.projekte-alle-anzeigen {
    padding: 10px;
    align-self: center;
    text-align: center;
}

.projekte-alle-anzeigen img {
    transition: 0.2s transform cubic-bezier(0.155, 1.105, 0.295, 1.12), 0.2s box-shadow, 0.2s -webkit-transform cubic-bezier(0.155, 1.105, 0.295, 1.12);
    height: 72px;
    width: 72px;
}

.projekte-alle-anzeigen img:hover {
    transform: scale(1.025);
}