/* casestudies-nextproj.css */

.next-projects-section {
    background-color: #070707; /* Matches project list background */
    padding: 120px 0 260px 0;
}

/* --- SECTION HEADER --- */
.next-projects-header {
    margin-bottom: 60px;
}

.next-projects-title {
    color: #FFF;
    font-family: "Gotham Ultra", sans-serif; /* Matches projects.html title */
    font-size: 32px;
    font-style: italic;
    font-weight: 500;
    text-transform: lowercase;
}

.next-projects-title .bracket {
    color: #4945D1; /* Branded blue bracket color */
}

/* --- GRID LAYOUT --- */
.next-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two cards side-by-side */
    gap: 60px; /* Standard horizontal/vertical air gap */
    width: 100%;
    align-items: start;
}



/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    .next-projects-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 40px;
    }
}