/* ── SECTION ── */
.pp-section {
    padding: 100px 0;
    background: #000;
}

/* ── HEADER ── */
.pp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-bottom: 102px;
    text-align: center;
}

/* ── EYEBROW ── */
.pp-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0.96px;
    text-transform: uppercase;
    color: #03cfff;
    display: block;
}

/* ── HEADING ── */
.pp-heading {
    font-family: var(--font-main);
    font-size: 50px;
    font-weight: 700;
    line-height: 57px;
    letter-spacing: -1.86px;
    color: #ffffff;
    margin-bottom: 0;
}

/* ── CREDENTIALS ROW ── */
.pp-credentials {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 40px;
    margin-bottom: 102px;
}

.pp-credential {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
    max-width: 280px;
    text-align: center;
}

.pp-credential-logo {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.pp-credential-logo img {
    display: block;
    max-width: 228px;
    height: auto;
}

.pp-credential-text {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
    margin-bottom: 0;
}

/* ── NOTES ── */
.pp-notes {
    max-width: 932px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.pp-note {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pp-note-heading {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
    color: #03cfff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.pp-note-body {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    color: #ffffff;
}

.pp-note-body p {
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

/* ── RESPONSIVE ── */

/* LG → MD */
@media (max-width: 991.98px) {
    .pp-section { padding: 72px 0; }
    .pp-header { margin-bottom: 72px; }
    .pp-credentials { margin-bottom: 72px; gap: 48px; }
    .pp-heading {
        font-size: 38px;
        line-height: 1.1;
        letter-spacing: -1px;
    }
    .pp-credential { max-width: 220px; }
    .pp-credential-logo img { max-width: 180px; }
    .pp-credential-text { font-size: 17px; line-height: 26px; }
    .pp-note-body,
    .pp-note-body p { font-size: 17px; line-height: 26px; }
    .pp-note-heading { font-size: 17px; line-height: 26px; }
}

/* MD → SM: stack credentials 2-per-row */
@media (max-width: 767.98px) {
    .pp-section { padding: 56px 0; }
    .pp-header { margin-bottom: 56px; }
    .pp-credentials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 24px;
        margin-bottom: 56px;
    }
    .pp-heading { font-size: 30px; letter-spacing: -0.5px; }
    .pp-credential { max-width: 260px; }
    .pp-notes { max-width: 100%; }
}

/* XS: single column */
@media (max-width: 575.98px) {
    .pp-section { padding: 40px 0; }
    .pp-header { margin-bottom: 40px; }
    .pp-credentials {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        gap: 36px;
    }
    .pp-heading { font-size: 26px; }
    .pp-credential { max-width: 280px; }
    .pp-credential-logo img { max-width: 200px; }
    .pp-credential-text { font-size: 16px; line-height: 24px; }
    .pp-note-body,
    .pp-note-body p { font-size: 16px; line-height: 24px; }
    .pp-note-heading { font-size: 16px; line-height: 24px; }
}
