html, body { margin: 0; }
body { overscroll-behavior: none; }

.fpk-hscroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}
.fpk-hscroll::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    display: none !important;
}

@media (min-width: 1024px) {
    .fpk-sticky-sidebar {
        position: sticky;
        align-self: start;
        top: 168px;
    }
}
.material-symbols-outlined {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: "liga";
    font-feature-settings: "liga";
    -webkit-font-smoothing: antialiased;
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
    vertical-align: middle;
}

.fpk-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
@media (min-width: 768px) {
    .fpk-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.fpk-lead-photo {
    margin: 0;
    padding: 12px;
    border-radius: 14px;
    background: #eceef0;
    text-align: center;
}
.fpk-lead-photo__btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}
.fpk-lead-photo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    min-width: min(100%, 360px);
    max-height: min(80vh, 900px);
    margin: 0 auto;
    object-fit: contain;
    border-radius: 10px;
}
.fpk-lead-photo__caption {
    margin: 10px 0 0;
    color: #3f4941;
    font-size: 13px;
    font-weight: 600;
}
.fpk-gallery--one { grid-template-columns: minmax(0, 1fr); }
.fpk-gallery--one .fpk-gallery__item img {
    height: auto;
    max-height: min(72vh, 720px);
    object-fit: contain;
    background: #eceef0;
}
.fpk-gallery__item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #eceef0;
    cursor: zoom-in;
    text-align: left;
}
.fpk-gallery__item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform .4s ease;
}
.fpk-gallery__item--hero {
    grid-column: 1 / -1;
}
.fpk-gallery__item--hero img { height: 280px; }
@media (min-width: 768px) {
    .fpk-gallery__item img { height: 200px; }
    .fpk-gallery__item--hero { grid-column: span 2; }
    .fpk-gallery__item--hero img { height: 320px; }
}
.fpk-gallery__item:hover img { transform: scale(1.04); }
.fpk-gallery__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 28px 10px 8px;
    background: linear-gradient(to top, rgba(0,0,0,.72), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}
.fpk-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(8, 18, 12, .88);
    padding: 24px;
}
.fpk-lightbox[hidden] { display: none; }
.fpk-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    border-radius: 12px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.fpk-lightbox__caption { color: #fff; font-size: 14px; margin: 0; text-align: center; max-width: 720px; }
.fpk-lightbox__close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.fpk-article { line-height: 1.75; color: #191c1e; overflow: hidden; }
.fpk-article img { max-width: 100%; height: auto; object-fit: contain; border-radius: 12px; margin: 8px 0 16px; display: block; }
.fpk-article figure, .fpk-article .fpk-scan { margin: 0 0 1.5rem; background: #f2f4f6; border-radius: 12px; overflow: hidden; padding: 12px 12px 8px; }
.fpk-article figure img, .fpk-article .fpk-scan img { margin: 0 auto 8px; width: 100%; max-width: 720px; background: #fff; }
.fpk-article figcaption, .fpk-article .fpk-scan p { text-align: center; font-size: 13px; color: #5c5f61; padding: 0 8px 8px; }
.fpk-article .fpk-scans { display: flex; flex-direction: column; gap: 0; }
.fpk-article .fpk-scans--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 1.5rem;
}
@media (min-width: 768px) {
    .fpk-article .fpk-scans--grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.fpk-article .fpk-scans--grid > .fpk-scan,
.fpk-article .fpk-scans--grid > figure { margin: 0; }
.fpk-article .fpk-scans--grid img {
    width: 100%;
    max-width: none;
    height: 180px;
    object-fit: cover;
    margin: 0 auto 8px;
}
@media (min-width: 768px) {
    .fpk-article .fpk-scans--grid img { height: 200px; }
}
.fpk-article p img { float: none; max-width: 100%; height: auto; object-fit: contain; margin: 8px 0 16px; }
.fpk-article img[src*="findpk" i],
.fpk-article img[src*="weblogo" i],
.fpk-article img[src*="satellite.gif" i],
.fpk-article img[src*="NBanner" i],
.fpk-article img[src*="786.jpg" i],
.fpk-article img[src*="flower.jpg" i] { display: none; }
@media (min-width: 768px) {
    .fpk-article img[align="right"],
    .fpk-article p img[align="right"],
    .fpk-article img[align="left"],
    .fpk-article p img[align="left"] {
        float: none;
        width: auto;
        max-width: 100%;
        margin: 8px auto 16px;
    }
}
.fpk-article table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.fpk-article td, .fpk-article th { padding: 10px 12px; vertical-align: top; border-bottom: 1px solid #eceef0; }
.fpk-article th { font-weight: 700; color: #004225; text-align: left; }
.fpk-article h1, .fpk-article h2, .fpk-article h3 { font-family: "Plus Jakarta Sans", sans-serif; color: #004225; font-weight: 700; margin: 1.4rem 0 .6rem; }
.fpk-article a { color: #0a5c36; text-decoration: none; }
.fpk-article a:hover { text-decoration: underline; }
.fpk-article p { margin-bottom: 1rem; }
.fpk-article ul, .fpk-article ol { margin: 0 0 1.2rem 1.2rem; }
.fpk-article li { margin: .3rem 0; }
.fpk-article blockquote {
    border-left: 4px solid #0a5c36;
    padding: 0.75rem 1rem;
    margin: 1rem 0 1.4rem;
    background: #f2f4f6;
    border-radius: 0 12px 12px 0;
}
.fpk-article .fpk-rtl {
    direction: rtl;
    text-align: right;
    font-size: 1.05rem;
    line-height: 1.9;
}

.fpk-pager {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    margin: 8px 0 0;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid rgba(191, 201, 191, .45);
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .05);
}
.fpk-pager__meta {
    margin: 0;
    font-size: 13px;
    line-height: 18px;
    color: #404941;
    font-weight: 600;
}
.fpk-pager__meta strong { color: #004225; font-weight: 800; }
.fpk-pager__list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}
.fpk-pager__list::-webkit-scrollbar { display: none; }
.fpk-pager__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid #e6e8ea;
    background: #f7f9fb;
    color: #004225;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
a.fpk-pager__btn:hover {
    background: #a8f3c1;
    border-color: #8dd6a6;
    color: #004225;
}
.fpk-pager__btn.is-current {
    background: #004225;
    border-color: #004225;
    color: #fff;
    box-shadow: 0 6px 14px rgba(0, 66, 37, .22);
}
.fpk-pager__btn.is-disabled {
    opacity: .38;
    cursor: default;
}
.fpk-pager__btn.is-ellipsis {
    min-width: 32px;
    border: 0;
    background: transparent;
    color: #707a71;
}
.fpk-pager__chevron { font-size: 20px; font-weight: 400; }
@media (max-width: 639px) {
    .fpk-pager { justify-content: center; }
    .fpk-pager__meta { width: 100%; text-align: center; }
    .fpk-pager__label { display: none; }
    .fpk-pager__btn { min-width: 36px; height: 36px; padding: 0 10px; }
}

@media (max-width: 767px) {
    .fpk-article p img { float: none; max-width: 100%; margin: 8px 0; }
}
