.vp-projects-section {
    --vp-navy: var(--vp-color-navy, #000);
    --vp-navy-deep: var(--vp-color-navy-deep, #000);
    --vp-teal: var(--vp-color-accent, #3197db);
    --vp-border: #e6ecf0;
    --vp-text-muted: #000;

    padding: 50px 0;
    background-color: #F0F4F8;
}

/* ---------- Heading ---------- */
.vp-projects-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.vp-projects-heading .vp-section-tag {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vp-teal);
    margin-bottom: 10px;
}

.vp-projects-heading h2 {
    font-family: 'Archivo', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--vp-navy);
    margin-bottom: 14px;
}

.vp-projects-heading p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--vp-text-muted);
    margin: 0;
}

/* ---------- Project list / cards ---------- */
.vp-project-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.vp-project-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #000;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(7, 36, 54, 0.05);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.vp-project-card:hover {
    box-shadow: 0 10px 28px rgba(7, 36, 54, 0.1);
    transform: translateY(-2px);
}

.vp-project-media {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    overflow: hidden;
    min-height: 320px;
}

.vp-project-media img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    display: block;
}

.vp-project-content {
    flex: 1 1 58%;
    max-width: 58%;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vp-project-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--vp-teal);
    margin-bottom: 10px;
}

.vp-project-content h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--vp-navy);
    margin-bottom: 18px;
    line-height: 1.3;
}

/* ---------- Checklist ---------- */
.vp-project-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vp-project-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.vp-project-checklist li:last-child {
    margin-bottom: 0;
}

.vp-project-checklist li span:last-child {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: #000;
}

.vp-project-checklist li strong {
    color: var(--vp-navy);
    font-weight: 600;
}

.vp-check-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--vp-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.vp-check-icon svg {
    width: 12px;
    height: 12px;
    stroke: #ffffff;
}

/* =============================================================
   RESPONSIVE — six breakpoints per site convention
================================================================= */

/* ≥1400px : slightly roomier content padding */
@media (min-width: 1400px) {
    .vp-project-content {
        padding: 44px 48px;
    }
}

/* ≥1200px and ≥992px : default two-column layout already applies above */

/* <992px : stack image above content, image full width */
@media (max-width: 991.98px) {

    .vp-project-media,
    .vp-project-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .vp-project-media {
        min-height: 260px;
    }

    .vp-project-content {
        padding: 28px 28px;
    }
}

/* ≥768px and <992px : tighten heading width */
@media (max-width: 767.98px) {
    .vp-projects-section {
        padding: 56px 0;
    }

    .vp-projects-heading h2 {
        font-size: 26px;
    }

    .vp-project-media {
        min-height: 220px;
    }

    .vp-project-content {
        padding: 24px 22px;
    }

    .vp-project-content h3 {
        font-size: 19px;
    }
}

/* <576px : single column, compact spacing */
@media (max-width: 575.98px) {
    .vp-project-list {
        gap: 22px;
    }

    .vp-project-media {
        min-height: 200px;
    }

    .vp-project-content {
        padding: 20px 18px;
    }

    .vp-project-checklist li span:last-child {
        font-size: 13.5px;
    }
}