.c3-project-details {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: -30px 0 0 -30px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    font-weight: var(--e-global-typography-text-font-weight);
    font-size: var(--e-global-typography-text-font-size);
    color: var(--e-global-color-text);
    line-height: var(--e-global-typography-text-line-height);
}

.c3-project-detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(25% - 30px);
    margin: 30px 0 0 30px;
}

.c3-project-detail__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: var(--e-global-color-e81e418);
}

.c3-project-detail__icon img {
    display: block;
    width: auto;
    max-width: none;
    height: 20px;
    margin: auto;
}

.c3-project-detail__entry {
    flex: 1;
    margin-left: 20px;
}

.c3-project-detail__label {
    font-size: var(--e-global-typography-accent-font-size);
}

.c3-project-detail__value {
    font-weight: var(--e-global-typography-accent-font-weight);
    color: var(--e-global-color-accent);
    line-height: 1.2;
}

@media (max-width: 1400px) {
    .c3-project-detail {
        width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .c3-project-details {
        margin: -16px 0 0 -16px;
    }

    .c3-project-detail {
        width: calc(100% - 16px);
        margin: 16px 0 0 16px;
    }
}