/* Home — curated project cards below the motto. */

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.projects--pending {
    margin-top: 1rem;
}

.projects__heading {
    width: 100%;
    font-size: 0.9rem;
    font-weight: normal;
    color: #888;
    margin-bottom: 0;
}

.project {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1 1 14rem;
    max-width: 22rem;
    color: inherit;
    text-decoration: none;
}

.project__logo {
    max-height: 3rem;
    width: auto;
    align-self: flex-start;
    margin-bottom: 0.25rem;
}

.project__name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a6fb5;
    margin: 0;
}

.project:hover .project__name {
    text-decoration: underline;
}

.project__description {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
}
