.standard-page-content h1 {
    font-size: 48px !important;
    color: #34495E !important;
    text-align: center;
    font-weight: 700 !important;
    line-height: 1.1;
    margin: 60px 0 0 !important;
    padding: 0 !important;
}

.standard-page-content {
    margin-bottom: 100px;
}

.gc-self-employed-projects {
    max-width: 1044px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-gap: 20px;
}

.gc-self-employed-project {
    border-radius: 12px;
    border: 1px solid #DDD;
    -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.20);
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.20);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    text-decoration: none;
}

.gc-self-employed-project:hover {
    text-decoration: none;
}

.gc-self-employed-project img {
    max-width: 100%;
    width: 100%;
    height: 144px;
    display: block;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    margin: 0 auto 8px;
}

.gc-self-employed-project h3 {
    color: #2F80ED;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0 0 8px;
}

.gc-self-employed-project-link {
    color: #5CB85C;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0 !important;

    white-space: nowrap;
    text-overflow: ellipsis;

}

.gc-self-employed-project-link:before {
    content: '-> ';
}

@media screen and (max-width: 1100px) {
    .gc-self-employed-projects {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
}

@media screen and (max-width: 640px) {
    .standard-page-content h1 {
        font-size: 28px !important;
        margin: 30px 0 0 !important;
    }

    .gc-self-employed-projects {
        margin: 20px auto 0;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
