.page_desc {
    display: flex;
    align-items: center;
    text-align: center;
    align-self: center;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto 48px;
    color: rgba(16, 24, 24, 0.99);
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.project_view_list {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 80px;
}

.project_view_list_show {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Section heading — CURRENT / PAST with teal underline */
.project_section_title {
    text-align: center;
    text-transform: uppercase;
    font-family: "Nunito", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(16, 24, 24, 0.75);
    padding-bottom: 48px;
    position: relative;
}


.project_view_list_show h2:first-child {
    margin-top: 0;
}

/* Card */
.project_view_body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 40px;
    background: rgba(51, 77, 76, 0.02);
    border-radius: 20px;
    border: 2px solid rgba(41, 61, 61, 0.10);
    gap: 12px;
}

.project_view_block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.project_view_leftContainer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.project_view_title {
    font-family: "Nunito", sans-serif;
    color: rgba(16, 24, 24, 0.99);
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.project_view_title a {
    color: rgba(16, 24, 24, 0.9);
    text-decoration: none;
}

.project_view_title a:hover {
    color: #009F9C;
}

.project_view_date {
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(20, 31, 30, 0.65);
}

.project_overview {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 400px;
    line-height: 1.6;
    color: rgba(16, 24, 24, 0.75);
}

.project_view_footer {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.project_explore_link {
    color: #009F9C;
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.project_explore_link:hover {
    text-decoration: underline;
}

.no-projects-found {
    text-align: center;
    padding: 40px 0;
    width: 100%;
}
/* ──────────────────────────────────────────
   Past Projects — accordion
   ────────────────────────────────────────── */
.project_section_title--past {
    margin-top: 80px;
    font-size: 32px;
    font-weight: 700;
    color: rgba(16, 24, 24, 0.75);
}


.project_accordion_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project_accordion_item {
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
    padding: 20px;
    background: rgba(51, 77, 76, 0.02);
    overflow: hidden;
    border: 2px solid rgba(41, 61, 61, 0.10);;
}

.project_accordion_header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Nunito", sans-serif;
}

.project_accordion_headtext {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project_accordion_title {
    font-size: 24px;
    font-weight: 500;
    max-width: 800px;
    color: rgba(16, 24, 24, 0.99);
}

.project_accordion_date {
    font-size: 14px;
    font-weight: 500;
    color: rgba(20, 31, 30, 0.65);
}

.project_accordion_icon {
    flex-shrink: 0;
    color: rgba(20, 31, 30, 0.5);
    transition: transform 0.2s ease;
}

.project_accordion_item.is-open .project_accordion_icon {
    transform: rotate(180deg);
    color: #009F9C;
}

.project_accordion_panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.project_accordion_panel_inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 24px 20px;
}

.project_accordion_panel .project_overview {
    display: block;
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(20, 31, 30, 0.65);
}

.project_accordion_panel .project_explore_link {
   color: #009F9C;
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.project_accordion_panel .project_explore_link:hover {
    text-decoration: underline;
}

/* ──────────────────────────────────────────
   Responsive
   ────────────────────────────────────────── */
@media (max-width: 480px) {
    .project_accordion_header {
        padding: 14px 16px;
    }

    .project_accordion_panel_inner {
        padding: 0 16px 16px;
    }

    .project_accordion_title {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .project_view_list_show {
        width: 95%;
    }

    .project_view_body {
        padding: 20px;
    }

    .page_desc {
        max-width: 100%;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .project_view_body {
        padding: 16px;
    }

    .project_view_title {
        font-size: 18px;
    }

    .project_section_title {
        font-size: 18px;
    }
}