.project-description {
    width: calc(33% - 6px);
    height: 305px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #f1f1f1;
    padding: 20px;
    border-radius: 7px;
    position: relative;
    
}

a.btn.register-button {
    padding: 3px 11px !important;
    border-radius: 8px;
}
.project-description:hover:not(.disabled) {
    background: #dee2e6;
    cursor: pointer;
}

@media (max-width: 1300px) {
    .project-description {
        width: calc(50% - 8px);
    }
}

@media (max-width: 640px) {
    .project-description {
        height: 300px;
    }
}

@media (max-width: 640px) {
    .project-description {
        width: 100vw;
        height: auto;
    }
}


.project-description .title {
    font-size: 22px;
    font-weight: 600;
    width: 100%;
}

.project-description .location,
.project-description .incentive-amount,
.project-description .duration {
    font-size: 12px;
    width: 100%;
    color: inherit;
}

.project-description .description {
    overflow: auto;
}

.description-row {
    flex-grow: 1;
}

.status-indicator {
    top: 0;
    right: 0px;
    position: absolute;
    padding: 2px 8px;
    border-radius: 0px 5px 0 5px;
    color: #fff;
    background-color: #28a745;
    font-size: 11px;
    font-weight: 700;
}

.registered {
    background: #28a745;
}

.ineligible {
    background: #dc3545;
}