/* ── Project Hero Image ──────────────────────── */
.proj-hero {
    margin-bottom: 60px;
    border-radius: 16px;
    overflow: hidden;
}
.proj-hero img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 560px;
    object-fit: cover;
}

/* ── Project Content (Overview + Info Card) ──── */
.proj-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 768px) {
    .proj-content {
        flex-direction: row;
        gap: 60px;
    }
}

/* ── Overview Text ──────────────────────────── */
.proj-overview {
    flex: 1;
}
.proj-overview p {
    font-size: 15px;
    color: var(--charcoal);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.75;
}

/* ── Project Info Card ──────────────────────── */
.proj-info-card {
    background: var(--charcoal);
    color: #fff;
    border-radius: 16px;
    padding: 32px;
    min-width: 280px;
    align-self: flex-start;
}
@media (min-width: 768px) {
    .proj-info-card {
        min-width: 320px;
        max-width: 360px;
    }
}
.proj-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.proj-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 16px;
}
.proj-info-row:last-child {
    border-bottom: none;
}
.proj-info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    white-space: nowrap;
}
.proj-info-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    text-align: right;
    line-height: 1.5;
}
