/* Project heading - span full width */
section.featured-projects > h2 {
    grid-column: 1 / -1;
}


section.featured-projects, section.skills-snapshot, section.welcome {
    width: 70%;
    margin: 20px auto;
}
/* Projects Section Styles */
section.featured-projects {
    margin: 40px auto !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;

}

/* Project Card Styles */
.featured-project {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}
.featured-project:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.featured-project h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 15px 0;
    color: #333;
}
.featured-project p {
    color: #444;
    line-height: 1.6;
    margin: 0 0 15px 0;
}
.featured-project h3 {
    margin: 0;
}

@media (max-width: 600px) {
    /* Projects Section */
    section.featured-projects {
        grid-template-columns: 1fr;
    }
}