/*
#0F172A Header and Footer
#1E293B Primary Background / Text / Borders
#334155 Dark Hover State
#E2E8F0 Light Text
#FFFFFF Light Hover State
#F8FAFC Light Backgrounds
*/

.card-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.projects-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    background: #FFF;
    border-radius: 8px;
    padding: 1rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.projects-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.projects-card a {
    color: #1E293B;
    text-decoration: none;
    user-select: none;
}

.card-grid .projects-card h2 {
    color: #1E293B;
    margin: 0;
    margin-bottom: 1rem;
    text-decoration: none;
}

.card-grid .projects-card p {
    color: #1E293B;
    padding: 0;
    margin: 0;
}

.card-grid .projects-card > h2 {
    color: #1E293B;
    padding: 0;
    margin: 0;
}

.project-card-img {
    background: #F8FAFC;
    margin: 0 auto;
    margin-bottom: 1rem;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    border: none;
    outline: none;
}
