header a {
    text-decoration: none;
    color: #AEA5A7;
}

#blog-hero {
    margin-top: var(--margin-top);
    margin-bottom: 100px;
    padding: 0 25px;
}

.heading {
    font-family: var(--headingsFont);
    font-size: 30px;
    margin: 10px 0 15px;
    color: var(--white);
}

#blog-hero p {
    color: var(--heroLeadColor);
    font-size: var(--heroLeadSize);
    font-family: var(--heroLeadFont);
    line-height: 23px;
}

#posts-grid {
    display: grid;
    gap: 20px;
}

.project-card span {
    background: none;
    display: flex;
    justify-self: end;
}

.project-card p:first-of-type {
    line-height: 1.5;
}

.project-card a {
    background: linear-gradient(90deg, var(--projectsButton));
    border: none;
    padding: 7px 10px;
    border-radius: 25px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    cursor: pointer;
    color: #1C1A18;
    text-decoration: none;
}








@media (min-width: 768px) {
    #posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(480px, 520px));
        justify-content: center;
    }

    .project-card p:first-of-type {
        font-size: 18px;
    }

    .project-card p:last-of-type {
        display: flex;
        align-items: end;
    }
}