* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "acumin-variable", sans-serif;
}

body {
    background: #ececec;
    padding: 40px;
}

.projects-section h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3.4rem;
    color: #111;
    font-family: "acumin-variable", sans-serif;
    font-variation-settings: "slnt" 0, "wdth" 115, "wght" 724;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1500px;
    margin: 0 auto;
}

.project-card {
    background: white;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.2s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card:hover {
    transform: translateY(-4px);
}

.project-card img {
    width: 250px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.project-card h2 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #222;
}

.project-card p {
    color: #555;
    font-size: 0.95rem;
}
