@charset "utf-8";
/* CSS Document */

/* ============================================================
   SIDEBAR BLOCK — shared wrapper used by popular/most-read
   and any other sidebar module
   ============================================================ */
.pf-sidebar-block {
	margin-top:25px;
    border: 0.5px solid #dde0e3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pf-sidebar-hd {
    background: #002244;
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pf-sidebar-hd-icon {
    color: #c8a84b;
    font-size: 14px;
}

/* Popular / Most-Read numbered list */
.pf-popular-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-bottom: 0.5px solid #dde0e3;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pf-popular-item:last-child {
    border-bottom: none;
}

.pf-popular-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 900;
    color: #c8a84b;
    opacity: 0.5;
    min-width: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.pf-popular-title {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: #212121;
}

.pf-popular-title a {
    color: #212121;
    text-decoration: none;
}

.pf-popular-title a:hover   { color: #c60c30; }
.pf-popular-title a:link,
.pf-popular-title a:visited { color: #212121; }

/* Print — hide the block */
@media print {
    .pf-sidebar-block {
        display: none;
    }
}