﻿

.pp-section:target {
    outline: 2px solid #005B96; 
    outline-offset: 4px;
    animation: pp-pop .25s ease;
}

@keyframes pp-pop {
    from {
        transform: scale(.995);
    }

    to {
        transform: scale(1);
    }
}

/* Hero  */
.pp-hero {
    background: radial-gradient(1200px 400px at 10% -10%, color-mix(in srgb, #005B96 10%, transparent) 0%, transparent 70%), linear-gradient(180deg, #0a0f1a 0%, #39424e 80%);
    color: #eaf0f7;
    padding: clamp(32px,6vw,80px) 0;
}

.pp-hero-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 1rem;
    padding: clamp(16px,3vw,32px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08); 
    backdrop-filter: saturate(130%) blur(6px);
    text-align: center;
}

.pp-title {
    margin: 0 0 .25rem;
    font-weight: 800;
    letter-spacing: .2px;
    font-size: clamp(1.6rem,4vw,2.4rem);
    line-height: 1.1;
    color: #fff;
}

.pp-sub {
    margin: 0;
    color: #d6e1ee;
    font-size: clamp(0.95rem,1.6vw,1.1rem);
}

.pp-updated {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    font-weight: 600;
    color: #f0f4f8;
    opacity: .9;
}

/* Layout */
.pp-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(16px,3vw,24px);
}

.pp-content {
    min-width: 0;
}

/* Sections */
.pp-section {
    background: #ffffff; 
    border: 1px solid rgba(0,0,0,.08); 
    border-radius: .875rem;
    padding: clamp(16px,2.4vw,28px);
    box-shadow: 0 8px 24px rgba(0,0,0,.08); 
}

.pp-section + .pp-section {
    margin-top: clamp(14px,2vw,20px);
}

.pp-section h2 {
    color: #005B96; 
    font-weight: 800;
    letter-spacing: .2px;
    margin: 0 0 .5rem;
    font-size: clamp(1.2rem,2.6vw,1.6rem);
    line-height: 1.2;
}

.pp-section p {
    color: #0b1220; 
    line-height: 1.7;
    margin: 0;
}

.pp-section p + p {
    margin-top: .75rem;
}

.pp-card {
    border-left: 4px solid #005B96; 
}

/* Contact list */
.pp-contact {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
    display: grid;
    gap: .4rem;
}

.pp-contact li {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
    color: #0b1220; 
}

.pp-contact i {
    color: #005B96; 
    margin-top: .2rem;
}

.pp-contact a {
    color: #005B96; 
    text-decoration: none;
    font-weight: 700;
}

.pp-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width:576px) {
    .pp-hero-card {
        padding: 1rem;
        border-radius: .75rem;
    }

    .pp-section {
        border-radius: .75rem;
    }
}
