/*recent-update-card.css contains all the css for the recent update cards on the home page*/

.recent-update-card {
    width: 100%;
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr) auto; /* this means 18px for status circle, fill all remaining space for title and description, take only the space needed for the date*/
    align-items: start;
    gap: 12px;
    padding: 12px 0; 

}

.recent-update-status {
    display: flex;
    justify-content: center;
    padding-top: 4px;
}

.recent-update-status-circle {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.recent-update-title {
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.recent-update-description {
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.recent-update-date {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

.status-completed {
    background-color: var(--success);
}

.status-in-development {
    background-color: var(--warning)
}

.status-paused {
    background-color: var(--text-muted);
}