/* ── Projects ────────────────────────────────────────────────────────────── */

.pj-card {
    background-color: #202020;
    border: 1px solid #303030;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.pj-card:hover {
    border-color: #505050;
}

.pj-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem 0;
    gap: 12px;
}

.pj-header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.pj-title {
    font-family: "Lexend", sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
}

.pj-title:hover {
    color: #AFA9EC;
}

.pj-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.pj-chip {
    font-size: 0.7rem;
    padding: 2px 7px;
    border-radius: 4px;
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    color: #aaaaaa;
}

.pj-chip.pj-lang { background-color: #1a1740; border-color: #534AB7; color: #AFA9EC; }
.pj-chip.pj-web  { background-color: #0b2e22; border-color: #1D9E75; color: #5DCAA5; }
.pj-chip.pj-db   { background-color: #2e1508; border-color: #D85A30; color: #F0997B; }
.pj-chip.pj-tool { background-color: #2a2a28; border-color: #5F5E5A; color: #B4B2A9; }
.pj-chip.pj-test { background-color: #0a1e30; border-color: #378ADD; color: #85B7EB; }

.pj-cta-divider {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: flex-end;
}

.pj-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: "Lexend", sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #7dd3a8 !important;
    text-decoration: none;
    transition: color 0.15s;
}

.pj-cta svg {
    transition: transform 0.15s;
}

.pj-cta:hover {
    color: #ffffff;
}

.pj-cta:hover svg {
    transform: translate(2px, -2px);
}

.pj-chevron {
    display: none;
}

.pj-body {
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid #2a2a2a;
    margin-top: 0.75rem;
}

.pj-desc {
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.65;
    padding-top: 0.75rem;
    margin-bottom: 10px;
}

.pj-bullets {
    padding-left: 1rem;
    margin: 0 0 12px;
}

.pj-bullets li {
    font-size: 0.82rem;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 5px;
}

.pj-bullets li:last-child {
    margin-bottom: 0;
}

.pj-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.pj-thumb {
    width: 120px;
    height: 85px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #303030;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.15s, border-color 0.15s;
    display: block;
}

.pj-thumb:hover {
    opacity: 1;
    border-color: #505050;
}