/* --- Project Detail Pages (PD) Styles --- */

.pd-hero {
    background: linear-gradient(135deg, #001e46 0%, #003a80 60%, #005397 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.pd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pd-hero-inner {
    position: relative;
    z-index: 1;
}

.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pd-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.pd-breadcrumb a:hover {
    color: #fff;
}

.pd-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(242, 169, 0, 0.2);
    color: #F2A900;
    border: 1px solid rgba(242, 169, 0, 0.35);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.pd-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.pd-body {
    padding: 4rem 0 6rem;
    background: #f8fafc;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.pd-desc {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 3rem;
    text-align: justify;
}

.pd-section-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #001e46;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pd-section-title::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.4rem;
    background: #F2A900;
    border-radius: 2px;
    flex-shrink: 0;
}

/* Partner Grid in Side Column */
.partner-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.partner-item {
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    min-height: 140px;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 83, 151, 0.08);
    border-color: #005397;
}

.partner-logo-img {
    max-width: 140px;
    max-height: 75px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.partner-name {
    display: none;
}

/* Mobile Responsive Overrides */
@media (max-width: 1024px) {
    .pd-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    .pd-hero {
        padding: 4rem 0 3rem;
    }
    .pd-desc {
        text-align: left;
        font-size: 1rem;
    }
}
