:root {
    --primary-color: #dd0009;
    --primary-font: "Nunito", sans-serif;
    --second-font: "Roboto+Slab", serif;
    --link-color: #6f6f6f;
    --heading-color: #1c1c1c;
    --text-color: #616161;
    --subtext-color: #919191;
    --border-color: #e5e5e5;
}

/************************************************/
body {
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
}

@media (max-width: 991.98px) {
    [class*='col-md-'] {
        /*margin-bottom: 20px;*/
    }
}

@media (max-width: 767.98px) {
    [class*='col-sm-'] {
        /*margin-bottom: 20px;*/
    }
}


a {
    color: var(--link-color);

    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    font-weight: 400;
    color: var(--heading-color);
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.no-click {
    pointer-events: none;
    opacity: 0.7;
}

.dont-break-out {
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;

    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;

    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.top-nav {
    background-color: #2b2b2b;
}

.top-nav a {
    color: var(--subtext-color);
}

.top-nav a:hover {
    color: var(--primary-color);
}

.top-nav .list-inline {
    margin: 0;
}

.top-nav .wrap-inner {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
}

.top-nav .top-social {
    text-align: left;
}

.top-nav .top-menu {
    text-align: right;
}

@media (max-width: 499.98px) {
    /*
    .top-nav .wrap-inner {
        justify-content: center;
    }

    .top-nav .top-social {
        display: none;
    }

    .top-nav .top-menu {
        text-align: center;
    }
    */
}

@media (max-width: 399.98px) {
    .top-nav {
        font-size: 80%;
    }
}


.header {
    border-bottom: 1px solid var(--border-color);
}

.header .wrap-inner {
    display: flex;
    align-items: center;
    padding: 15px 0;
    min-height: 90px;
}

.header .logo {
    flex-basis: 33.33%;
}

.header .top-banner {
    flex-basis: 66.66%;
}

.header .logo a {
    font-size: 25px;
    font-weight: 300;
    text-decoration: none;
}

.header .top-banner .ad-element {
    justify-content: end;
    margin-bottom: 0;
}

.header .top-banner .ad-element .ad-inner {
    text-align: right;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/** header **/
.navbar-main {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .175);
    margin-bottom: 30px;
}

.homepage .navbar-main, .article-show .navbar-main {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav > li:first-child .nav-link {
        padding-left: 0;
    }

    .navbar-expand-lg .navbar-nav > li:last-child .nav-link {
        padding-right: 0;
    }
}

.navbar-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-color);
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: var(--primary-color);
}

.member-menu .list-group-item.selected {
    color: var(--primary-color);
    font-weight: 500;
}

.navbar-main .navbar-brand {
    display: none;
}

@media (min-width: 992px) {
    .mini-search-menu-item {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .header {
        display: none;
    }

    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 15px;
        padding-left: 15px;
    }

    .navbar-main .navbar-brand {
        display: block;
        padding: 0;
    }

    .navbar-main .navbar-brand > img {
        max-height: 25px;
    }

    .search-menu-item {
        display: none;
    }
}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Search Menu Icon */
.search-menu-item {
    position: relative;
}

.search-menu-item.show-search-form a.nav-link .fa-search:before {
    content: "\f00d";
}

.menu-search {
    position: absolute;
    right: 0;
    left: auto;
    width: 315px;
    margin-top: 8px;
    background-color: #ffffff;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);

    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.show-search-form .menu-search {
    visibility: visible;
    opacity: 1;
}

/**
 * Ads
 */
/*
.ad-element {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
*/

.ad-element {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 30px;
}

.ad-element .ad-inner {
    text-align: center;
}

/**
 * Blocks
 */
.block-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.block-title {
    /*flex: auto;*/
}

.block-title span {
    display: inline-block;
    font-size: 25px;
    line-height: 1;
    font-family: var(--second-font);
    padding-bottom: 15px;
    border-bottom: solid var(--primary-color) 3px;
    margin-bottom: -1px;
}

.block-cats {
    flex: auto;
    text-align: right;
}

.block-cats ul.list-inline {
    margin-bottom: 0;
}

.block-cats a {
}

.block-cats a:hover {
}

.block-item {
    overflow: hidden;
    margin-bottom: 20px;
}

.block-content {
    position: relative;
}

.block-item-img {
    position: relative;
    margin-bottom: 10px;
}

.block-item-img > a {
    display: block;
    background-size: cover;
    background-position: center center;
}

.block-item-img > a:before {
    display: block;
    content: " ";
    width: 100%;
    /*padding-top: 60%;*/ /* 5:3 >> (3*100)/5 = 60% https://stackoverflow.com/a/10441480/1794834 */
    padding-top: 50%; /*  */
}

.block-item-category {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 0 5px;
    color: #ffffff;
    font-size: 0.75rem;
}

.block-item-category a {
    color: #ffffff;
}

.block-item-title a {
    font-size: 20px;
    line-height: 24px;
    font-style: normal;
    font-weight: 400;
}

.block-item-big .block-item-title a {
    font-size: 22px;
}

.block-item-meta, .block-item-meta a {
    color: var(--subtext-color);
}

.block-item-meta small {
    font-size: 11px;
}

.block-item-meta small:after {
    content: "-";
}

.block-item-meta small:last-child:after {
    color: transparent;
}

.block-item-content {
}

a.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid #444444;
}

/**** Block 1 ****/

/**** Block 2 ****/
.block2 .row .block-item:nth-child(1) .block-item-img {
    margin-bottom: 0;
}

.block2 .row .block-item:nth-child(1) .block-item-img > a:before {
    padding-top: 40%;
}

/**** Block 3 ****/
.block3 .block-item-img {
    margin-bottom: 0;
}

.block3 .block-item-img > a:before {
    padding-top: 60%;
}

/**** Block 3 ****/
.block4 .row .block-item:not(.block-item-big) .block-item-img {
    float: left;
    width: 90px;
    margin: 0 13px 0 0;
}

.block4 .row .block-item:not(.block-item-big) .block-item-img > a:before {
    padding-top: 75%;
}

/**** Block 5 ****/
.block5 .block-item-overlay {
    position: relative;
    z-index: 10;
    margin: -75px 8% 0 8%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

.block5 .block-item-big .block-item-img > a:before {
    padding-top: 45%;
}

/**** Block 6 ****/
.block6 .block-item-overlay {
    position: relative;
    z-index: 10;
    margin: -75px 8% 0 8%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}

.block6 .block-item-big .block-item-img > a:before {
    padding-top: 45%;
}

/**** Block 7 ****/
.block7 .block-item-overlay {
    position: relative;
    z-index: 10;
    margin: -75px 8% 0 8%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}

.block7 .block-item-big .block-item-img > a:before {
    padding-top: 45%;
}

/**
 * Grids
 */
.grid, .block, .widget {
    margin-bottom: 30px;
}

.grid-items-list {
    height: 450px;
}

.grid-item {
    float: left;
    overflow: hidden;
}

.grid-item-img {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    color: #ffffff;
}

.grid-item:hover .grid-item-img:after {
    opacity: 0.75;
}

.grid-item-img > a {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.grid-item-img > a:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
    transition: all 0.2s ease;
}

.grid-item-overlay {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 0;
    padding: 0 25px 10px 25px;
}

.grid-item-title a {
    font-family: var(--primary-font);
    /* font-size: 20px; */
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 500;
    color: #ffffff;
}

.grid-item-meta {
}

.grid-item-meta small {
    font-size: 70%;
}

.grid-item-meta small:after {
    content: "-";
}

.grid-item-meta small:last-child:after {
    color: transparent;
}

/***** Grid1 *******/
.grid1 .grid-items-list .grid-item:nth-child(1) {
    width: 40%;
    height: 100%;
    padding-right: 1px;
}

.grid1 .grid-items-list .grid-item:nth-child(2) {
    width: 25%;
    height: 100%;
    padding: 0 1px 0 1px;
}

.grid1 .grid-items-list .grid-item:nth-child(3) {
    width: 35%;
    height: 50%;
    padding: 0 0 1px 1px;
}

.grid1 .grid-items-list .grid-item:nth-child(4) {
    width: 35%;
    height: 50%;
    padding: 1px 0 0 1px;
}

/***** Grid2 *******/
.grid2 .grid-items-list .grid-item:nth-child(1) {
    width: 50%;
    height: 100%;
    padding-right: 1px;
}

.grid2 .grid-items-list .grid-item:nth-child(2) {
    width: 25%;
    height: 50%;
    padding: 0 1px 1px 1px;
}

.grid2 .grid-items-list .grid-item:nth-child(3) {
    width: 25%;
    height: 50%;
    padding: 0 0 1px 1px;
}

.grid2 .grid-items-list .grid-item:nth-child(4) {
    width: 25%;
    height: 50%;
    padding: 1px 1px 0 1px;
}

.grid2 .grid-items-list .grid-item:nth-child(5) {
    width: 25%;
    height: 50%;
    padding: 1px 0 0 1px;
}

/***** Grid3 *******/
.grid3 .grid-items-list .grid-item:nth-child(1) {
    width: 50%;
    height: 100%;
    padding-right: 1px;
}

.grid3 .grid-items-list .grid-item:nth-child(2) {
    width: 50%;
    height: 50%;
    padding: 0 0 1px 1px;
}

.grid3 .grid-items-list .grid-item:nth-child(3) {
    width: 25%;
    height: 50%;
    padding: 1px 1px 0 1px;
}

.grid3 .grid-items-list .grid-item:nth-child(4) {
    width: 25%;
    height: 50%;
    padding: 1px 0 0 1px;
}

@media (max-width: 991.98px) {
    .grid .grid-items-list {
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        height: 300px;
    }

    .grid .grid-items-list .grid-item {
        float: none !important;
        display: inline-block !important;
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        white-space: normal !important;
    }
}


/**
 * Image Loading effect
 */
.block-item-img > a.b-lazy:before {
    display: block;
    content: " ";
    width: 100%;
    height: 100%;
    opacity: 1;
    background-color: #e9ebee;
    background-image: linear-gradient(to left, #e9ebee 0, #f4f5f6 20%, #e9ebee 40%, #e9ebee 100%);
    background-repeat: no-repeat;
    background-size: 1000px 900px;
    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
    /*animation: lazy-load-animation 1.01s infinite linear forwards;*/
}

.block-item-img > a.b-lazy.b-loaded:before {
    background: 0 0;
    opacity: 0;
    animation: none;
}

@keyframes lazy-load-animation {
    from {
        background-position: -800px 0;
    }
    to {
        background-position: 400px 0;
    }
}

@keyframes lazy-load-animation-rtl {
    from {
        background-position: 400px 0;
    }
    to {
        background-position: -800px 0;
    }
}

/*
 * Spinner color
 */
.block .spinner1,
.block .spinner2 div,
.block .spinner3 div,
.block .spinner4 div,
.block .spinner5,
.block .spinner6 div,
.block .spinner7 div,
.block .spinner8 .sk-child:before,
.block .spinner9 .sk-cube,
.block .spinner10 .sk-circle:before,
.block .spinner11 .sk-cube:before {
    background-color: var(--primary-color) !important;
}

/*
 * Loading effects
 */
.spinner-container {
    direction: ltr;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
}

.spinner {
    position: relative;
    top: 50%;
    left: 50%;
}

.spinner1 {
    width: 40px;
    height: 40px;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.spinner2 {
    width: 40px;
    height: 40px;
    position: relative;
}

.spinner2 .double-bounce1, .spinner2 .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.spinner2 .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.spinner3 {
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}

.spinner3 > div {
    height: 100%;
    width: 6px;
    margin: 0 2px 0 0;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner3 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner3 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.spinner3 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner3 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.4);
    }
    20% {
        -webkit-transform: scaleY(1);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
    }
}

.spinner4 {
    width: 40px;
    height: 40px;
    position: relative;
}

.spinner4 .cube1, .spinner4 .cube2 {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
    animation: sk-cubemove 1.8s infinite ease-in-out;
}

.spinner4 .cube2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes sk-cubemove {
    25% {
        transform: translateX(42px) rotate(-90deg) scale(0.5);
        -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
    }
    50% {
        transform: translateX(42px) translateY(42px) rotate(-179deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
    }
    50.1% {
        transform: translateX(42px) translateY(42px) rotate(-180deg);
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
    }
}

.spinner5 {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.spinner6 {
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: sk-rotate 2.0s infinite linear;
    animation: sk-rotate 2.0s infinite linear;
}

.spinner6 .dot1, .spinner6 .dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.spinner6 .dot2 {
    top: auto;
    bottom: 0;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

@-webkit-keyframes sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes sk-rotate {
    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes sk-bounce {
    0%, 100% {
        -webkit-transform: scale(0);
    }
    50% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bounce {
    0%, 100% {
        transform: scale(0);
        -webkit-transform: scale(0);
    }
    50% {
        transform: scale(1);
        -webkit-transform: scale(1);
    }
}

.spinner7 {
    width: 70px;
    text-align: center;
}

.spinner7 > div {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner7 .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.spinner7 .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.spinner8 {
    width: 40px;
    height: 40px;
    position: relative;
}

.spinner8 .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.spinner8 .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.spinner8 .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner8 .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner8 .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner8 .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner8 .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner8 .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner8 .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner8 .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner8 .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner8 .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner8 .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.spinner8 .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner8 .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.spinner8 .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner8 .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.spinner8 .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.spinner8 .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.spinner8 .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.spinner8 .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.spinner8 .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.spinner8 .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.spinner8 .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.spinner9 {
    width: 40px;
    height: 40px;
}

.spinner9 .sk-cube {
    width: 33%;
    height: 33%;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.spinner9 .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.spinner9 .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.spinner9 .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.spinner9 .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.spinner9 .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.spinner9 .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.spinner9 .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.spinner9 .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.spinner9 .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

.spinner10 {
    width: 40px;
    height: 40px;
    position: relative;
}

.spinner10 .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.spinner10 .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

.spinner10 .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner10 .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner10 .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner10 .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner10 .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner10 .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner10 .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner10 .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner10 .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner10 .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner10 .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.spinner10 .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.spinner10 .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.spinner10 .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.spinner10 .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.spinner10 .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.spinner10 .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.spinner10 .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.spinner10 .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.spinner10 .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.spinner10 .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.spinner10 .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {
    0%, 39%, 100% {
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
}

.spinner11 {
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.spinner11 .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.spinner11 .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}

.spinner11 .sk-cube2 {
    -webkit-transform: scale(1.1) rotateZ(90deg);
    transform: scale(1.1) rotateZ(90deg);
}

.spinner11 .sk-cube3 {
    -webkit-transform: scale(1.1) rotateZ(180deg);
    transform: scale(1.1) rotateZ(180deg);
}

.spinner11 .sk-cube4 {
    -webkit-transform: scale(1.1) rotateZ(270deg);
    transform: scale(1.1) rotateZ(270deg);
}

.spinner11 .sk-cube2:before {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.spinner11 .sk-cube3:before {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.spinner11 .sk-cube4:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

@keyframes sk-foldCubeAngle {
    0%, 10% {
        -webkit-transform: perspective(140px) rotateX(-180deg);
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0;
    }
    25%, 75% {
        -webkit-transform: perspective(140px) rotateX(0deg);
        transform: perspective(140px) rotateX(0deg);
        opacity: 1;
    }
    90%, 100% {
        -webkit-transform: perspective(140px) rotateY(180deg);
        transform: perspective(140px) rotateY(180deg);
        opacity: 0;
    }
}

footer.footer {
    padding-top: 50px;
    padding-bottom: 20px;
    background-color: #151515;
    color: #a9a9a9;
    font-size: 13px;
}

footer.footer a {
    color: #cecece;
}

footer.footer input.form-control {
    background-color: #202020;
    border: none;

}

footer.footer input.form-control:focus {
    color: #495057;
    background-color: #202020;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

footer.footer .block-header {
    border-bottom: none;
}

footer.footer .block-title span {
    color: #e7e7e7;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

footer.footer .separator {
    border-bottom: 1px dashed #5656;
    margin: 20px 0;
}


.follow-us .fab {
    padding: 10px;
    font-size: 15px;
    width: 35px;
    text-decoration: none;
    margin-right: 5px;
    color: #ffffff;
}

.follow-us .fab:hover {
    opacity: 0.7;
}

/**
 * Main main-listing
 */
.main-listing .block-item-overlay {
    position: relative;
    z-index: 10;
    margin: -75px 8% 0 8%;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

.main-listing .block-item-big .block-item-img > a:before {
    padding-top: 45%;
}


/**
 * Sidebar
 */
.widget .block-title span {
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.widget .block-item-img.img-side {
    float: left;
    width: 90px;
    margin: 0 13px 0 0;
}

.widget .block-item-title a {
    font-size: 15px;
    line-height: 15px;
    font-style: normal;
    font-weight: 400;
}

.widget .block-item-img > a:before {
    padding-top: 60%;
}

.widget .block-item-img.img-side > a:before {
    padding-top: 75%;
}

/**
 * Comments
 */

.reply-form {
    display: none;
}

/**
 * Author widget
 */
.author .author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.author .author-connect {
    padding-left: 15px;
    margin-bottom: 5px;
}

.author .author-connect > div {
    margin-bottom: 5px;
}

.author .author-image img {
    border-radius: 50%;
}

.author .author-name a {
    font-family: var(--second-font);
    font-size: 20px;
    line-height: 1;
    color: var(--primary-color);
}

.author .author-description {
    text-align: center;
}

.follow-me .fab {
    padding: 5px;
    font-size: 11px;
    width: 22px;
    text-decoration: none;
    margin-right: 2px;
}

.follow-me .fab:hover {
    opacity: 0.7;
}

.follow-me .fa-facebook-f {
    background: #3b5897;
    color: white;
}

.follow-me .fa-twitter {
    background: #55ACEE;
    color: white;
}

.follow-me .fa-pinterest-p {
    background: #cb2027;
    color: white;
}

.follow-me .fa-google {
    background: #dd4b39;
    color: white;
}

.follow-me .fa-linkedin-in {
    background: #007bb6;
    color: white;
}

.follow-me .fa-youtube {
    background: #bb0f00;
    color: white;
}

.follow-me .fa-vimeo-v {
    background: #1ab7ea;
    color: white;
}

.follow-me .fa-instagram {
    background: #e4405f;
    color: white;
}

.follow-me .fa-vk {
    background: #4a76a8;
    color: white;
}

.follow-me .fa-github {
    background: #24292e;
    color: white;
}

/**
 * Article page
 */
.article-share {
    overflow: hidden;
    margin-bottom: 10px;
}

.article-share .share-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    text-decoration: none;
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    line-height: 14px;
    vertical-align: middle;
    -moz-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -webkit-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

.article-share .share-btn i {
    display: inline-block;
    vertical-align: middle;
    font-size: 12px;
}

.share-btn {
    background-color: #95a5a6;
}

.share-btn span {
    display: none;
}

.article-share .share-btn i {
    margin-right: 0;
}

@media (min-width: 992px) {
    .share-btn span {
        display: inline;
    }

    .article-share .share-btn i {
        margin-right: 5px;
    }
}

.share-btn-twitter {
    background-color: #00aced;
}

.share-btn-facebook {
    background-color: #3b5998;
}

.share-btn-linkedin {
    background-color: #007bb6;
}

.share-btn-whatsapp {
    background-color: #1ebea5;
}

.share-btn-telegram {
    background-color: #0088cc;
}

.share-btn-pinterest {
    background-color: #bd081c;
}

.share-btn-reddit {
    background-color: #ed001c;
}

.share-btn-vk {
    background-color: #4a76a8;
}


.share-btn-mail {
    background-color: #f1c40f;
}

.article-main-image-bg {
    /*padding-bottom: 10rem;*/
    padding-top: 515px;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    position: relative;
}

.article-main-image-bg .ad-element {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.article-main-image-bg:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75));
    transition: all 0.2s ease;
}

.article-main-content {
    margin-top: -10rem;
    background-color: #ffffff;
    padding-top: 15px;
    position: relative;
    z-index: 2;
}


.article-main-image-bg img {
    display: none;
}

@media (max-width: 991.999px) {
    .article-main-image-bg {
        background: none !important;
        padding-top: 0;
    }

    .article-main-image-bg img {
        display: inline-block;
    }

    .article-main-content {
        margin-top: 0;
    }
}

.article-title, .page-title {
    font-family: var(--second-font);
    margin-bottom: 10px;
}

.article-meta {
    margin-bottom: 10px;
}

.article-meta small:after {
    content: "-";
}

.article-meta small:last-child:after {
    color: transparent;
}

.article-meta, .article-meta a {
    color: var(--subtext-color);
}

.article-content, .page-content {
    font-size: 115%;
    color: #1c1c1c;
}

.article-content img[style*="float:left"],
.page-content img[style*="float:left"] {
    margin: 5px 15px 0 0;
}

.article-content img[style*="float:right"],
.page-content img[style*="float:right"] {
    margin: 5px 0 0 15px;
}

.article-content h2, .page-content h2 {
    border-bottom: 3px var(--primary-color) solid;
}

.article-content blockquote:not(.tiktok-embed):not(.twitter-tweet):not(.instagram-media),
.page-content blockquote:not(.tiktok-embed):not(.twitter-tweet):not(.instagram-media) {
    position: relative;
    font-size: 110%;
    padding: 18px 16px 18px 30px;
    background: #f1f1f1;
    margin: 0 0 10px 0;
    color: #616161;
}

.article-content blockquote:not(.tiktok-embed):not(.twitter-tweet):not(.instagram-media):after,
.page-content blockquote:not(.tiktok-embed):not(.twitter-tweet):not(.instagram-media):after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: inline-block;
    width: 6px;
    background-color: var(--primary-color);
}

.article-content blockquote > p:last-child, .page-content blockquote > p:last-child {
    margin-bottom: 0;
}

.article-tags {
    margin-bottom: 20px;
}

.article-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    padding: 20px 20px;
    font-weight: 700;
}

.article-newsletter p {
    font-size: 20px;
}

.comments .display-comment {
    padding: 17px;
    margin: 17px 0;
    border: 1px solid var(--border-color);
    word-break: break-all;
}

.comments .display-comment:last-child {
    margin-bottom: 0;
}

/**
 * Author page
 */
.author-details {
    margin-bottom: 20px;
}

.author-details .author-info {
    display: flex;
    margin-bottom: 5px;
}

.author-details .author-image {
    flex: none;
}

.author-details .author-image img {
    border-radius: 14px;
}

.author-details .author-connect > div {
    margin-bottom: 5px;
}

.author-details .author-name {
    font-family: var(--second-font);
    font-size: 20px;
    line-height: 1;
    color: var(--primary-color);
}

.author-details .author-connect {
    padding: 0 0 0 15px;
}


.form-group.captcha {
    display: flex;
    justify-content: center;
}

.nav-tabs {
    margin-bottom: 1rem;
}

/**
 * cookie bar
 */
#cookie-pop {
    position: sticky;
    bottom: 0;
    z-index: 10000;
    background-color: #2b2b2b;
    padding: 15px 0;
}

.cookie-message {
    flex: 1;
    color: #ffffff;
}

.cookie-message a {
    color: #ffffff;
}

/* PressFly layout fixes - 2026-04-30 */
.top-nav .pf-top-menu-combined,
.top-nav .pf-top-menu-combined .list-inline,
.top-nav .pf-top-actions,
.top-nav .pf-top-account-menu {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    vertical-align: middle;
}
.top-nav .pf-top-menu-combined > a,
.top-nav .pf-top-menu-combined .list-inline > .list-inline-item > a,
.top-nav .pf-top-action,
.top-nav .pf-top-auth-link,
.top-nav .pf-top-account-toggle,
.top-nav .pf-top-discover-link {
    min-height: 38px;
    height: 38px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1 !important;
    white-space: nowrap;
    box-sizing: border-box;
}
.top-nav .pf-top-account-toggle {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
.top-nav .pf-top-account-avatar,
.top-nav .pf-top-account-avatar img {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 999px;
    object-fit: cover;
}
.top-nav .pf-top-discover-button {
    padding: 0 16px !important;
    border-radius: 999px;
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: .01em;
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    box-shadow: 0 10px 24px rgba(37, 99, 235, .25);
    border: 1px solid rgba(255, 255, 255, .18);
    text-decoration: none !important;
}
.top-nav .pf-top-discover-button:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(37, 99, 235, .32);
}
footer.footer .block-title span,
footer.footer h1,
footer.footer h2,
footer.footer h3,
footer.footer h4,
footer.footer h5,
footer.footer .widget-title,
footer.footer .sidebar-title {
    color: #ffffff !important;
    font-weight: 800;
    text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
footer.footer .block-header,
footer.footer .block-title {
    color: #ffffff !important;
}
@media (max-width: 767.98px) {
    .top-nav .pf-top-discover-button {
        width: 38px;
        min-width: 38px;
        padding: 0 !important;
        border-radius: 999px;
    }
    .top-nav .pf-top-discover-button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
    }
}

/* 2026 author profile social icon visibility fix */
.author-show .pf-author-social,
.pf-author-social { display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin:8px 0 14px; }
.author-show .pf-author-social .pf-author-social-link,
.pf-author-social .pf-author-social-link { width:38px; height:38px; display:inline-flex !important; align-items:center; justify-content:center; border-radius:999px; text-decoration:none !important; color:#ffffff !important; border:0 !important; box-shadow:0 10px 22px rgba(15,23,42,.10); transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease; }
.author-show .pf-author-social .pf-author-social-link:hover,
.pf-author-social .pf-author-social-link:hover { opacity:.92; transform:translateY(-2px); box-shadow:0 14px 30px rgba(15,23,42,.14); color:#ffffff !important; }
.pf-author-social-link i { color:#ffffff !important; font-size:1rem; line-height:1; }
.pf-author-social-facebook { background:#1877f2 !important; }
.pf-author-social-twitter { background:#1da1f2 !important; }
.pf-author-social-linkedin { background:#0a66c2 !important; }
.pf-author-social-youtube { background:#ff0000 !important; }
.pf-author-social-vimeo { background:#1ab7ea !important; }
.pf-author-social-instagram { background:#e4405f !important; }
.pf-author-social-pinterest { background:#bd081c !important; }
.pf-author-social-vk { background:#4a76a8 !important; }
.pf-author-social-github { background:#24292f !important; }

/* 2026-04-30 mobile viewport no-shift guard */
html, body { width: 100% !important; max-width: 100% !important; overflow-x: hidden !important; }
*, *::before, *::after { box-sizing: border-box; }
img, svg, video, iframe, embed, object { max-width: 100%; }
@media (max-width: 767.98px) {
    .top-nav, .header, .navbar-main, footer.footer { max-width: 100% !important; overflow-x: hidden !important; }
    .top-nav { overflow: visible !important; }
    .top-nav .container, .top-nav .wrap-inner { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
    .top-nav .wrap-inner { display: grid !important; grid-template-columns: 36px minmax(0, 1fr) !important; gap: 6px !important; align-items: center !important; }
    .pf-top-social-list { display: none !important; }
    .pf-top-social-tools { width: 36px !important; min-width: 36px !important; max-width: 36px !important; overflow: visible !important; }
    .pf-top-menu-combined { width: 100% !important; min-width: 0 !important; max-width: 100% !important; justify-content: flex-end !important; overflow: visible !important; }
    .pf-top-menu-combined > .list-inline:not(.pf-top-actions):not(.pf-top-account-menu) { display: none !important; }
    .pf-top-mode-icon, .pf-top-discover-button, .pf-top-auth-link, .pf-top-action, .pf-top-account-toggle { width: 34px !important; height: 34px !important; min-width: 34px !important; min-height: 34px !important; max-width: 34px !important; padding: 0 !important; flex: 0 0 34px !important; }
    .pf-top-discover-button span, .pf-top-auth-link span, .pf-top-action span, .pf-top-account-name { position:absolute !important; width:1px !important; height:1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; }
}

/* PressFly improved responsive ads */
.ad-element.pf-ad-element,
.pf-ad-element {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 18px auto;
    overflow: hidden;
}
.ad-element .pf-ad-inner,
.pf-ad-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}
.pf-ad-element-image .pf-ad-inner,
.pf-image-ad-link {
    width: 100%;
}
.pf-image-ad-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}
.pf-ad-inner img,
.pf-image-ad-link img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
    border-radius: 12px;
}
.pf-ad-inner iframe,
.pf-ad-inner ins,
.pf-ad-inner object,
.pf-ad-inner embed {
    max-width: 100%;
}
@media (max-width: 767.98px) {
    .ad-element.pf-ad-element,
    .pf-ad-element {
        margin: 14px auto;
    }
    .pf-ad-inner {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }
}

/* Mobile top action equal sizing fix */
@media (max-width: 767.98px) {
    .top-nav .pf-top-menu-combined {
        gap: 6px !important;
    }
    .top-nav .pf-top-mode-icon,
    .top-nav .pf-top-discover-button,
    .top-nav .pf-top-auth-link,
    .top-nav .pf-top-action,
    .top-nav .pf-top-account-toggle {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
        max-width: 36px !important;
        max-height: 36px !important;
        padding: 0 !important;
        border-radius: 999px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0 !important;
        line-height: 1 !important;
        box-sizing: border-box !important;
        flex: 0 0 36px !important;
    }
    .top-nav .pf-top-action i,
    .top-nav .pf-top-auth-link i,
    .top-nav .pf-top-account-toggle i,
    .top-nav .pf-top-discover-button i,
    .top-nav .pf-top-mode-icon i {
        font-size: 15px !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    .top-nav .pf-top-account-avatar,
    .top-nav .pf-top-account-avatar img {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        max-width: 26px !important;
    }
    .top-nav .pf-top-discover-button span,
    .top-nav .pf-top-auth-link span,
    .top-nav .pf-top-action span,
    .top-nav .pf-top-account-name {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0,0,0,0) !important;
        white-space: nowrap !important;
    }
}
@media (max-width: 399.98px) {
    .top-nav .pf-top-mode-icon,
    .top-nav .pf-top-discover-button,
    .top-nav .pf-top-auth-link,
    .top-nav .pf-top-action,
    .top-nav .pf-top-account-toggle {
        width: 34px !important;
        height: 34px !important;
        min-width: 34px !important;
        min-height: 34px !important;
        max-width: 34px !important;
        max-height: 34px !important;
        flex-basis: 34px !important;
    }
}

/* PressFly flat revenue ad placements */
.pf-revenue-ad-slot{
  position:relative;
  width:100%;
  margin:18px auto;
  padding:12px;
  border:1px solid #e6edf6;
  border-radius:18px;
  background:linear-gradient(180deg,#ffffff,#f8fbff);
  box-shadow:0 12px 28px rgba(15,23,42,.06);
  overflow:hidden;
  text-align:center;
}
.pf-revenue-ad-slot:before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:#2563eb;opacity:.9}
.pf-revenue-ad-label{display:block;margin:0 0 8px;color:#94a3b8;font-size:10px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;text-align:center}
.pf-revenue-ad-slot .pf-ad-element,.pf-revenue-ad-slot .ad-element{margin:0!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important;min-height:0!important}
.pf-revenue-ad-slot .pf-ad-inner,.pf-revenue-ad-slot .ad-inner{display:flex;align-items:center;justify-content:center;width:100%;max-width:100%;margin:0 auto!important;background:transparent!important;border:0!important;overflow:hidden}
.pf-revenue-ad-slot img,.pf-revenue-ad-slot iframe,.pf-revenue-ad-slot ins,.pf-revenue-ad-slot object,.pf-revenue-ad-slot embed{max-width:100%!important;height:auto!important;border-radius:12px}
.pf-revenue-ad-slot iframe,.pf-revenue-ad-slot ins{width:100%;min-height:90px}
.pf-revenue-ad-header{margin:0;padding:8px;border-radius:16px;box-shadow:none;background:#f8fafc}
.pf-revenue-ad-home-top,.pf-revenue-ad-after-latest,.pf-revenue-ad-between-categories{margin:20px 0}
.pf-revenue-ad-home-top .pf-ad-inner,.pf-revenue-ad-after-latest .pf-ad-inner,.pf-revenue-ad-between-categories .pf-ad-inner{min-height:90px}
.pf-revenue-ad-article-top,.pf-revenue-ad-article-bottom{margin:22px 0}
.pf-revenue-ad-listing-top,.pf-revenue-ad-listing-bottom{margin:18px 0 22px}
.header .top-banner.pf-header-ad-banner{display:flex;align-items:center;justify-content:flex-end;min-height:90px}
.header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot{max-width:760px;margin:0 0 0 auto}
html.dark .pf-revenue-ad-slot,body.dark .pf-revenue-ad-slot,.dark-mode .pf-revenue-ad-slot{background:linear-gradient(180deg,#111827,#0f172a);border-color:#243044;box-shadow:none}
html.dark .pf-revenue-ad-label,body.dark .pf-revenue-ad-label,.dark-mode .pf-revenue-ad-label{color:#64748b}
html.dark .pf-revenue-ad-header,body.dark .pf-revenue-ad-header,.dark-mode .pf-revenue-ad-header{background:#0f172a}
@media(max-width:991px){.header .top-banner.pf-header-ad-banner{justify-content:center;width:100%;margin-top:12px}.header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot{margin:0 auto;max-width:100%}.pf-revenue-ad-slot{border-radius:16px;margin:14px 0;padding:10px}.pf-revenue-ad-slot iframe,.pf-revenue-ad-slot ins{min-height:70px}}
@media(max-width:575px){.pf-revenue-ad-slot{padding:8px;border-radius:14px}.pf-revenue-ad-label{font-size:9px;margin-bottom:6px}.pf-revenue-ad-slot:before{width:3px}}

/* Hide visible ad labels on frontend */
.pf-revenue-ad-label{display:none!important}
.pf-revenue-ad-slot{padding-top:10px!important}


/* 2026-05-04 author profile follow button under avatar + cleaner sidebar widget images */
.pf-author-avatar-wrap{position:relative;text-align:center;display:flex;flex-direction:column;align-items:center;}
.pf-author-avatar-frame{position:relative;display:inline-flex;align-items:center;justify-content:center;}
.pf-author-avatar-action{display:flex;justify-content:center;width:100%;margin-top:12px;}
.pf-author-avatar-action form{margin:0;}
.pf-author-avatar-follow-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;min-width:132px;border:0;border-radius:999px;padding:10px 16px;background:#2563eb;color:#fff!important;font-weight:900;line-height:1;text-decoration:none!important;box-shadow:0 12px 24px rgba(37,99,235,.22);transition:transform .18s ease, background .18s ease, box-shadow .18s ease;}
.pf-author-avatar-follow-btn:hover{transform:translateY(-2px);background:#1d4ed8;color:#fff!important;box-shadow:0 16px 30px rgba(37,99,235,.28);}
.pf-author-avatar-follow-btn.is-following,.pf-author-avatar-edit-btn{background:#0f172a;color:#fff!important;box-shadow:0 12px 24px rgba(15,23,42,.18);}
.pf-author-avatar-follow-btn.is-following:hover,.pf-author-avatar-edit-btn:hover{background:#1e293b;color:#fff!important;}
.widget .block-content .block-item{clear:both;overflow:hidden;margin-bottom:14px;padding-bottom:14px;border-bottom:1px solid #edf2f7;}
.widget .block-content .block-item:last-child{margin-bottom:0;padding-bottom:0;border-bottom:0;}
.widget .block-item-img.img-side{width:96px!important;height:72px!important;margin:2px 13px 4px 0!important;border-radius:12px;overflow:hidden;background:#eef2f7;box-shadow:0 8px 18px rgba(15,23,42,.08);}
.widget .block-item-img.img-side > a{width:100%!important;height:100%!important;display:block!important;background-size:cover!important;background-position:center!important;background-repeat:no-repeat!important;}
.widget .block-item-img.img-side > a:before{display:none!important;padding-top:0!important;}
.widget .block-item-title{min-width:0;}
.widget .block-item-title a{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;line-height:1.35!important;font-weight:700!important;}
.widget .block-item-meta{display:flex;flex-wrap:wrap;gap:6px 10px;margin-top:6px;line-height:1.3;}
@media(max-width:575.98px){.widget .block-item-img.img-side{width:88px!important;height:66px!important;margin-right:11px!important}.pf-author-avatar-follow-btn{min-width:128px}}
html.dark-mode-site .widget .block-content .block-item,body.dark-mode-site .widget .block-content .block-item,html.dark .widget .block-content .block-item,body.dark .widget .block-content .block-item,.dark-mode .widget .block-content .block-item{border-bottom-color:#243044;}


/* 2026 footer widget flat redesign */
footer.pf-site-footer,
footer.footer.pf-site-footer {
    margin-top: 36px !important;
    padding: 42px 0 22px;
    background: #0f172a;
    color: #cbd5e1;
    border-top: 1px solid rgba(148, 163, 184, .18);
}
footer.pf-site-footer .pf-footer-widgets {
    margin-left: -10px;
    margin-right: -10px;
}
footer.pf-site-footer .pf-footer-column {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}
footer.pf-site-footer .pf-footer-card {
    height: 100%;
    padding: 18px;
    background: rgba(255, 255, 255, .035);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 18px;
    box-shadow: none;
}
footer.pf-site-footer .widget {
    margin-bottom: 0;
}
footer.pf-site-footer .block-header {
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: 0 !important;
}
footer.pf-site-footer .block-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}
footer.pf-site-footer .block-title:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #3b82f6;
    flex: 0 0 auto;
}
footer.pf-site-footer .block-title span,
footer.pf-site-footer .widget-title,
footer.pf-site-footer h1,
footer.pf-site-footer h2,
footer.pf-site-footer h3,
footer.pf-site-footer h4,
footer.pf-site-footer h5 {
    color: #f8fafc !important;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -.01em;
    padding: 0;
    margin: 0;
    border: 0;
    text-shadow: none !important;
}
footer.pf-site-footer .widget-article-list .block-content {
    display: grid;
    gap: 10px;
}
footer.pf-site-footer .widget-article-list .block-item {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 9px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(148, 163, 184, .13);
    border-radius: 14px;
    transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}
footer.pf-site-footer .widget-article-list .block-item:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .07);
    border-color: rgba(59, 130, 246, .38);
}
footer.pf-site-footer .widget-article-list .block-item-img.img-side,
footer.pf-site-footer .widget-article-list .block-item-img {
    width: 68px;
    height: 56px;
    margin: 0;
    float: none;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(15, 23, 42, .65);
}
footer.pf-site-footer .widget-article-list .block-item-img > a {
    width: 100%;
    height: 100%;
    min-height: 56px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}
footer.pf-site-footer .widget-article-list .block-item-img > a:before,
footer.pf-site-footer .widget-article-list .block-item-img.img-side > a:before {
    display: none !important;
}
footer.pf-site-footer .widget-article-list .block-item-title {
    min-width: 0;
    margin: 0 0 5px;
}
footer.pf-site-footer .widget-article-list .block-item-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #f8fafc !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}
footer.pf-site-footer .widget-article-list .block-item-title a:hover {
    color: #bfdbfe !important;
}
footer.pf-site-footer .widget-article-list .block-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    color: #94a3b8 !important;
    font-size: 11px;
    line-height: 1.2;
}
footer.pf-site-footer .widget-article-list .block-item-meta small {
    margin: 0;
    color: #94a3b8 !important;
}
footer.pf-site-footer .widget-article-list .block-item-meta small:after {
    display: none;
}
footer.pf-site-footer .widget-follow-us .block-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    min-height: 42px;
    padding: 9px 11px;
    border-radius: 13px;
    color: #f8fafc !important;
    background: rgba(255, 255, 255, .045) !important;
    border: 1px solid rgba(148, 163, 184, .14);
    text-decoration: none !important;
    overflow: hidden;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link i {
    width: 24px;
    height: 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--pf-social-color, #2563eb);
    color: #fff;
    font-size: 12px;
    flex: 0 0 auto;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 750;
    color: #e2e8f0;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link:hover {
    background: rgba(255, 255, 255, .075) !important;
    border-color: rgba(59, 130, 246, .38);
}
footer.pf-site-footer .separator {
    margin: 18px 0;
    border-bottom: 1px solid rgba(148, 163, 184, .16);
}
footer.pf-site-footer .footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}
footer.pf-site-footer .footer-menu .list-inline-item {
    margin: 0;
}
footer.pf-site-footer a {
    color: #cbd5e1;
}
footer.pf-site-footer .pf-footer-copyright,
footer.pf-site-footer .pf-footer-bottom-menu {
    color: #94a3b8;
    font-size: 13px;
}
@media (max-width: 991.98px) {
    footer.pf-site-footer .pf-footer-column:last-child {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 767.98px) {
    footer.pf-site-footer {
        padding-top: 28px;
    }
    footer.pf-site-footer .pf-footer-card {
        padding: 15px;
        border-radius: 16px;
    }
    footer.pf-site-footer .widget-follow-us .block-content {
        grid-template-columns: 1fr;
    }
    footer.pf-site-footer .pf-footer-bottom-menu,
    footer.pf-site-footer .pf-footer-copyright {
        text-align: center !important;
    }
    footer.pf-site-footer .footer-menu ul {
        justify-content: center;
        margin-bottom: 12px !important;
    }
}
html.dark-mode-site footer.pf-site-footer,
body.dark-mode-site footer.pf-site-footer {
    background: #020617;
    border-top-color: rgba(148, 163, 184, .12);
}
html.dark-mode-site footer.pf-site-footer .pf-footer-card,
body.dark-mode-site footer.pf-site-footer .pf-footer-card {
    background: rgba(15, 23, 42, .86);
    border-color: rgba(148, 163, 184, .16);
}


/* 2026-05-04 footer/ad clean flat fix */
.pf-revenue-ad-slot::before,
.pf-revenue-ad-slot:before{
    display:none!important;
    content:none!important;
    width:0!important;
    background:transparent!important;
}
.pf-revenue-ad-slot{
    border-left:1px solid #e6edf6!important;
    background:#fff!important;
    box-shadow:none!important;
}
.pf-revenue-ad-header{background:#f8fafc!important;box-shadow:none!important;}
html.dark .pf-revenue-ad-slot,
body.dark .pf-revenue-ad-slot,
.dark-mode .pf-revenue-ad-slot,
html.dark-mode-site .pf-revenue-ad-slot,
body.dark-mode-site .pf-revenue-ad-slot{
    background:#0f172a!important;
    border-color:#243044!important;
    box-shadow:none!important;
}

footer.pf-site-footer,
footer.footer.pf-site-footer{
    background:#0f172a!important;
    color:#cbd5e1!important;
    padding:44px 0 22px!important;
    margin-top:38px!important;
    border-top:1px solid rgba(148,163,184,.16)!important;
}
footer.pf-site-footer .pf-footer-widgets{row-gap:18px!important;}
footer.pf-site-footer .pf-footer-column{margin-bottom:18px!important;}
footer.pf-site-footer .pf-footer-card{
    height:100%!important;
    min-height:100%!important;
    padding:18px!important;
    border:1px solid rgba(148,163,184,.16)!important;
    border-radius:18px!important;
    background:rgba(255,255,255,.035)!important;
    box-shadow:none!important;
    overflow:hidden!important;
}
footer.pf-site-footer .widget,
footer.pf-site-footer .widget *{box-sizing:border-box!important;}
footer.pf-site-footer .widget{margin:0!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important;}
footer.pf-site-footer .block-header{margin:0 0 14px!important;padding:0!important;border:0!important;background:transparent!important;}
footer.pf-site-footer .block-title{display:flex!important;align-items:center!important;gap:9px!important;margin:0!important;padding:0!important;border:0!important;background:transparent!important;}
footer.pf-site-footer .block-title:before{content:""!important;display:inline-flex!important;width:8px!important;height:8px!important;min-width:8px!important;border-radius:999px!important;background:#64748b!important;}
footer.pf-site-footer .block-title span,
footer.pf-site-footer .widget-title,
footer.pf-site-footer h1,
footer.pf-site-footer h2,
footer.pf-site-footer h3,
footer.pf-site-footer h4,
footer.pf-site-footer h5{
    color:#f8fafc!important;
    font-size:15px!important;
    line-height:1.25!important;
    font-weight:850!important;
    letter-spacing:-.01em!important;
    margin:0!important;
    padding:0!important;
    border:0!important;
    background:transparent!important;
    text-transform:none!important;
}
footer.pf-site-footer .widget-article-list .block-content{
    display:flex!important;
    flex-direction:column!important;
    gap:10px!important;
    margin:0!important;
    padding:0!important;
}
footer.pf-site-footer .widget-article-list .block-item{
    display:grid!important;
    grid-template-columns:72px minmax(0,1fr)!important;
    align-items:center!important;
    gap:12px!important;
    width:100%!important;
    min-width:0!important;
    margin:0!important;
    padding:10px!important;
    border:1px solid rgba(148,163,184,.14)!important;
    border-radius:14px!important;
    background:rgba(255,255,255,.045)!important;
    overflow:hidden!important;
    clear:none!important;
    float:none!important;
    box-shadow:none!important;
}
footer.pf-site-footer .widget-article-list .block-item:hover{background:rgba(255,255,255,.07)!important;border-color:rgba(148,163,184,.28)!important;transform:none!important;}
footer.pf-site-footer .widget-article-list .block-item-img,
footer.pf-site-footer .widget-article-list .block-item-img.img-side{
    grid-column:1!important;
    width:72px!important;
    height:58px!important;
    min-width:72px!important;
    max-width:72px!important;
    margin:0!important;
    padding:0!important;
    float:none!important;
    border:0!important;
    border-radius:12px!important;
    overflow:hidden!important;
    background:#1e293b!important;
    box-shadow:none!important;
}
footer.pf-site-footer .widget-article-list .block-item-img > a,
footer.pf-site-footer .widget-article-list .block-item-img.img-side > a{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:58px!important;
    border-radius:12px!important;
    background-size:cover!important;
    background-position:center!important;
    background-repeat:no-repeat!important;
}
footer.pf-site-footer .widget-article-list .block-item-img > a:before,
footer.pf-site-footer .widget-article-list .block-item-img.img-side > a:before{display:none!important;content:none!important;padding:0!important;}
footer.pf-site-footer .widget-article-list .block-item-title{
    grid-column:2!important;
    min-width:0!important;
    width:100%!important;
    margin:0 0 5px!important;
    padding:0!important;
    overflow:hidden!important;
}
footer.pf-site-footer .widget-article-list .block-item-title a{
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
    color:#f8fafc!important;
    font-size:13px!important;
    font-weight:800!important;
    line-height:1.35!important;
    text-decoration:none!important;
    word-break:break-word!important;
}
footer.pf-site-footer .widget-article-list .block-item-title a:hover{color:#e2e8f0!important;}
footer.pf-site-footer .widget-article-list .block-item-meta{
    grid-column:2!important;
    display:flex!important;
    flex-wrap:wrap!important;
    gap:5px 9px!important;
    margin:0!important;
    padding:0!important;
    color:#94a3b8!important;
    font-size:11px!important;
    line-height:1.2!important;
}
footer.pf-site-footer .widget-article-list .block-item-meta small,
footer.pf-site-footer .widget-article-list .block-item-meta i{color:#94a3b8!important;font-size:11px!important;margin:0!important;}
footer.pf-site-footer .widget-article-list .block-item-meta small:after{display:none!important;content:none!important;}
footer.pf-site-footer .widget-follow-us .block-content{
    display:grid!important;
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    margin:0!important;
    padding:0!important;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:9px!important;
    min-width:0!important;
    min-height:42px!important;
    padding:9px 10px!important;
    border:1px solid rgba(148,163,184,.14)!important;
    border-radius:13px!important;
    background:rgba(255,255,255,.045)!important;
    color:#e2e8f0!important;
    text-decoration:none!important;
    overflow:hidden!important;
    box-shadow:none!important;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link i{
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:24px!important;
    height:24px!important;
    min-width:24px!important;
    border-radius:8px!important;
    background:#1e293b!important;
    color:#fff!important;
    font-size:12px!important;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link span{
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:12px!important;
    font-weight:800!important;
    color:#e2e8f0!important;
}
footer.pf-site-footer .widget-follow-us .pf-follow-link:hover{background:rgba(255,255,255,.075)!important;border-color:rgba(148,163,184,.28)!important;}
footer.pf-site-footer .separator{margin:18px 0!important;border:0!important;border-bottom:1px solid rgba(148,163,184,.16)!important;}
footer.pf-site-footer .footer-menu ul{display:flex!important;flex-wrap:wrap!important;gap:8px 14px!important;margin:0!important;padding:0!important;}
footer.pf-site-footer .footer-menu .list-inline-item{margin:0!important;}
footer.pf-site-footer a{color:#cbd5e1!important;}
footer.pf-site-footer .pf-footer-copyright,
footer.pf-site-footer .pf-footer-bottom-menu{color:#94a3b8!important;font-size:13px!important;line-height:1.5!important;}
@media(max-width:991.98px){footer.pf-site-footer .pf-footer-column:last-child{flex:0 0 100%!important;max-width:100%!important;}}
@media(max-width:767.98px){footer.pf-site-footer{padding-top:30px!important;}footer.pf-site-footer .pf-footer-card{padding:15px!important;border-radius:16px!important;}footer.pf-site-footer .widget-follow-us .block-content{grid-template-columns:1fr!important;}footer.pf-site-footer .pf-footer-bottom-menu,footer.pf-site-footer .pf-footer-copyright{text-align:center!important;}footer.pf-site-footer .footer-menu ul{justify-content:center!important;margin-bottom:12px!important;}}
@media(max-width:420px){footer.pf-site-footer .widget-article-list .block-item{grid-template-columns:64px minmax(0,1fr)!important;gap:10px!important;padding:9px!important;}footer.pf-site-footer .widget-article-list .block-item-img,footer.pf-site-footer .widget-article-list .block-item-img.img-side{width:64px!important;height:52px!important;min-width:64px!important;}footer.pf-site-footer .widget-article-list .block-item-img > a,footer.pf-site-footer .widget-article-list .block-item-img.img-side > a{min-height:52px!important;}}
html.dark-mode-site footer.pf-site-footer,body.dark-mode-site footer.pf-site-footer{background:#020617!important;}
html.dark-mode-site footer.pf-site-footer .pf-footer-card,body.dark-mode-site footer.pf-site-footer .pf-footer-card{background:rgba(15,23,42,.88)!important;border-color:rgba(148,163,184,.16)!important;}

/* Smart revenue ad placements - flat clean style */
.pf-revenue-ad-slot::before,
.pf-revenue-ad-slot:before{display:none!important;content:none!important;background:transparent!important;}
.pf-revenue-ad-slot{
    position:relative!important;
    width:100%!important;
    margin:18px auto!important;
    padding:10px!important;
    border:1px solid #e5e7eb!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    box-shadow:none!important;
    overflow:hidden!important;
    text-align:center!important;
}
.pf-revenue-ad-slot .pf-ad-element,
.pf-revenue-ad-slot .ad-element{margin:0!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important;}
.pf-revenue-ad-slot .pf-ad-inner,
.pf-revenue-ad-slot .ad-inner{display:flex!important;align-items:center!important;justify-content:center!important;width:100%!important;max-width:100%!important;margin:0 auto!important;background:transparent!important;border:0!important;overflow:hidden!important;}
.pf-revenue-ad-slot img,
.pf-revenue-ad-slot iframe,
.pf-revenue-ad-slot ins,
.pf-revenue-ad-slot object,
.pf-revenue-ad-slot embed{max-width:100%!important;height:auto!important;border:0!important;border-radius:12px!important;display:block!important;margin:0 auto!important;}
.pf-revenue-ad-listing-middle{margin:10px 0 22px!important;}
.pf-revenue-ad-sidebar{margin:0 0 18px!important;padding:10px!important;border-radius:16px!important;background:#f8fafc!important;}
.pf-revenue-ad-sidebar .pf-ad-inner,.pf-revenue-ad-sidebar .ad-inner{min-height:250px!important;}
.pf-article-inline-ad{margin:24px 0!important;}
.pf-article-inline-ad .ad-element{margin:0 auto!important;}
.article-content .pf-article-inline-ad + p{margin-top:18px;}
html.dark .pf-revenue-ad-slot,body.dark .pf-revenue-ad-slot,.dark-mode .pf-revenue-ad-slot,html.dark-mode-site .pf-revenue-ad-slot,body.dark-mode-site .pf-revenue-ad-slot{background:#0f172a!important;border-color:#1f2937!important;box-shadow:none!important;}
@media(max-width:991.98px){.pf-revenue-ad-sidebar .pf-ad-inner,.pf-revenue-ad-sidebar .ad-inner{min-height:90px!important}.pf-revenue-ad-slot{margin:14px 0!important;padding:8px!important;border-radius:14px!important}}


/* 2026-05-04 compact widget spacing fix */
.sidebar .widget,
.col-sidebar .widget,
aside .widget,
.pf-author-sidebar .widget,
.main-sidebar .widget{
    margin-bottom:16px!important;
}
.sidebar .widget:last-child,
.col-sidebar .widget:last-child,
aside .widget:last-child,
.pf-author-sidebar .widget:last-child,
.main-sidebar .widget:last-child,
.col-inner > .widget:last-child{
    margin-bottom:0!important;
}
.sidebar .block-header,
.col-sidebar .block-header,
aside .block-header,
.pf-author-sidebar .block-header,
.main-sidebar .block-header{
    margin-bottom:12px!important;
    padding-bottom:0!important;
}
.widget .block-content{
    margin-bottom:0!important;
    padding-bottom:0!important;
}
.widget .block-content > *:last-child,
.widget .block-content .block-item:last-child,
.widget form .form-group:last-child,
.widget p:last-child{
    margin-bottom:0!important;
}
.widget .block-content .block-item{
    margin-bottom:10px!important;
    padding-bottom:10px!important;
}
.widget .block-content .block-item:last-child{
    margin-bottom:0!important;
    padding-bottom:0!important;
}
.pf-revenue-ad-sidebar{
    margin:0 0 16px!important;
}
.pf-revenue-ad-sidebar + .widget,
.pf-revenue-ad-slot + .widget{
    margin-top:0!important;
}
.widget:empty,
.widget .block-content:empty,
.pf-revenue-ad-slot:empty{
    display:none!important;
    margin:0!important;
    padding:0!important;
    min-height:0!important;
}
footer.pf-site-footer .pf-footer-column{
    margin-bottom:14px!important;
}
footer.pf-site-footer .pf-footer-card{
    display:flex!important;
    flex-direction:column!important;
    justify-content:flex-start!important;
}
footer.pf-site-footer .widget-article-list .block-content{
    gap:8px!important;
}
footer.pf-site-footer .widget-article-list .block-item{
    padding:9px!important;
}
footer.pf-site-footer .widget-follow-us .block-content{
    gap:8px!important;
}
@media(max-width:991.98px){
    .sidebar .widget,
    .col-sidebar .widget,
    aside .widget,
    .pf-author-sidebar .widget,
    .main-sidebar .widget,
    .pf-revenue-ad-sidebar{
        margin-bottom:14px!important;
    }
}

/* 2026-05-04 article sidebar single-ad and compact widget cleanup */
.article-sidebar-column .pf-article-sidebar-clean{
    display:block!important;
    padding:16px!important;
}
.article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar,
.article-sidebar-column .pf-article-sidebar-clean > .widget{
    margin:0 0 12px!important;
}
.article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar:last-child,
.article-sidebar-column .pf-article-sidebar-clean > .widget:last-child{
    margin-bottom:0!important;
}
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar{
    padding:8px!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    border-radius:14px!important;
    min-height:0!important;
}
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar .pf-ad-inner,
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar .ad-inner{
    min-height:0!important;
    height:auto!important;
}
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar img,
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar iframe,
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar ins{
    display:block!important;
    margin:0 auto!important;
    max-width:100%!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget{
    padding:0!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget .block-header{
    margin:0 0 10px!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget .block-content{
    margin:0!important;
    padding:0!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget .block-item{
    margin:0 0 8px!important;
    padding:0 0 8px!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget .block-item:last-child{
    margin-bottom:0!important;
    padding-bottom:0!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget-ad,
.article-sidebar-column .pf-article-sidebar-clean .pf-revenue-ad-sidebar-bottom{
    display:none!important;
}
.article-sidebar-column .pf-article-sidebar-clean .widget:empty,
.article-sidebar-column .pf-article-sidebar-clean .block-content:empty{
    display:none!important;
    margin:0!important;
    padding:0!important;
    min-height:0!important;
}
@media(max-width:991.98px){
    .article-sidebar-column .pf-article-sidebar-clean{padding:12px!important;}
    .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar,
    .article-sidebar-column .pf-article-sidebar-clean > .widget{margin-bottom:10px!important;}
}

/* Article content middle advertisement - flat, compact and responsive */
.article-content .pf-article-inline-ad,
.pf-revenue-ad-article-inside{
    clear:both!important;
    display:block!important;
    width:100%!important;
    margin:24px 0!important;
    padding:10px!important;
    border:1px solid #e5e7eb!important;
    border-radius:16px!important;
    background:#f8fafc!important;
    box-shadow:none!important;
    text-align:center!important;
    overflow:hidden!important;
}
.article-content .pf-article-inline-ad:before,
.pf-revenue-ad-article-inside:before{display:none!important;content:none!important;}
.article-content .pf-article-inline-ad .pf-ad-inner,
.article-content .pf-article-inline-ad .ad-inner,
.pf-revenue-ad-article-inside .pf-ad-inner,
.pf-revenue-ad-article-inside .ad-inner{min-height:90px!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0 auto!important;}
.article-content .pf-article-inline-ad img,
.article-content .pf-article-inline-ad iframe,
.article-content .pf-article-inline-ad ins,
.pf-revenue-ad-article-inside img,
.pf-revenue-ad-article-inside iframe,
.pf-revenue-ad-article-inside ins{max-width:100%!important;border:0!important;border-radius:12px!important;margin:0 auto!important;}
html.dark .article-content .pf-article-inline-ad,
body.dark .article-content .pf-article-inline-ad,
.dark-mode .article-content .pf-article-inline-ad,
html.dark-mode-site .article-content .pf-article-inline-ad,
body.dark-mode-site .article-content .pf-article-inline-ad,
html.dark .pf-revenue-ad-article-inside,
body.dark .pf-revenue-ad-article-inside,
.dark-mode .pf-revenue-ad-article-inside,
html.dark-mode-site .pf-revenue-ad-article-inside,
body.dark-mode-site .pf-revenue-ad-article-inside{background:#0f172a!important;border-color:#1f2937!important;}
@media(max-width:767.98px){.article-content .pf-article-inline-ad,.pf-revenue-ad-article-inside{margin:18px 0!important;padding:8px!important;border-radius:14px!important}.article-content .pf-article-inline-ad .pf-ad-inner,.article-content .pf-article-inline-ad .ad-inner,.pf-revenue-ad-article-inside .pf-ad-inner,.pf-revenue-ad-article-inside .ad-inner{min-height:70px!important}}

/* 2026-05-04 article reading page + sidebar widgets flat redesign */
body.article-show,
body.article-show.pf-cards-flat{
    background:#f5f7fb!important;
}
.article-show .article-main-image-bg{
    max-width:1140px!important;
    margin:22px auto 0!important;
    border-radius:22px!important;
    overflow:hidden!important;
    background:#e5e7eb!important;
    border:1px solid #e5e7eb!important;
    box-shadow:none!important;
}
.article-show .article-main-image-bg img{
    display:block!important;
    width:100%!important;
    height:auto!important;
    object-fit:cover!important;
    border-radius:0!important;
}
.article-show .article-main-content{
    padding-top:22px!important;
    padding-bottom:34px!important;
}
.article-show .article-layout-balanced{
    align-items:flex-start!important;
}
.article-show .article-content-column > .col-inner{
    background:#ffffff!important;
    border:1px solid #e5e7eb!important;
    border-radius:22px!important;
    padding:26px!important;
    box-shadow:none!important;
    overflow:hidden!important;
}
.article-show .article-title{
    margin:8px 0 14px!important;
    color:#0f172a!important;
    font-size:clamp(28px,3.2vw,44px)!important;
    line-height:1.16!important;
    letter-spacing:-.03em!important;
    font-weight:800!important;
}
.article-show .article-meta,
.article-show .article-meta-data,
.article-show .article-info,
.article-show .post-meta{
    color:#64748b!important;
    font-size:13px!important;
}
.article-show .article-content-column .d-inline-flex{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    margin:0 0 18px!important;
}
.article-show .article-content-column .d-inline-flex form,
.article-show .article-content-column .d-inline-flex .btn{
    margin:0!important;
}
.article-show .article-content-column .btn-light,
.article-show .article-share-button{
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    color:#334155!important;
    border-radius:999px!important;
    padding:8px 12px!important;
    box-shadow:none!important;
    font-weight:700!important;
}
.article-show .article-content-column .btn-light:hover,
.article-show .article-share-button:hover{
    background:#eef2ff!important;
    border-color:#c7d2fe!important;
    color:#1d4ed8!important;
}
.article-show #main-content.article-content,
.article-show .article-content.dont-break-out{
    color:#1f2937!important;
    font-size:17px!important;
    line-height:1.82!important;
}
.article-show #main-content.article-content p{
    margin:0 0 18px!important;
}
.article-show #main-content.article-content h2,
.article-show #main-content.article-content h3,
.article-show #main-content.article-content h4{
    color:#0f172a!important;
    line-height:1.28!important;
    letter-spacing:-.02em!important;
    margin:26px 0 12px!important;
    font-weight:800!important;
}
.article-show #main-content.article-content img,
.article-show #main-content.article-content iframe{
    max-width:100%!important;
    border-radius:18px!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
}
.article-show .article-tags,
.article-show .article-newsletter,
.article-show .article-comments{
    margin-top:20px!important;
    padding:18px!important;
    border:1px solid #e5e7eb!important;
    border-radius:18px!important;
    background:#f8fafc!important;
    box-shadow:none!important;
}
.article-show .article-tags .badge{
    border-radius:999px!important;
    padding:8px 11px!important;
    background:#e2e8f0!important;
    color:#334155!important;
}
.article-show .article-newsletter .form-control,
.article-show .article-comments .form-control{
    border:1px solid #dbe3ef!important;
    border-radius:14px!important;
    background:#fff!important;
    box-shadow:none!important;
}
.article-show .article-newsletter .btn-primary,
.article-show .article-comments .btn-primary{
    border:0!important;
    border-radius:14px!important;
    background:#2563eb!important;
    box-shadow:none!important;
    font-weight:800!important;
}
.article-show .article-sidebar-column{
    padding-left:18px!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean{
    position:sticky!important;
    top:18px!important;
    padding:0!important;
    background:transparent!important;
    border:0!important;
    box-shadow:none!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > aside.widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar{
    margin:0 0 14px!important;
    padding:16px!important;
    background:#ffffff!important;
    border:1px solid #e5e7eb!important;
    border-radius:20px!important;
    box-shadow:none!important;
    overflow:hidden!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget:last-child,
.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar:last-child{
    margin-bottom:0!important;
}
.article-show .article-sidebar-column .widget .block-header{
    margin:0 0 13px!important;
    padding:0!important;
    border:0!important;
}
.article-show .article-sidebar-column .widget .block-title,
.article-show .article-sidebar-column .widget .block-title span{
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
    margin:0!important;
    color:#0f172a!important;
    font-size:15px!important;
    line-height:1.25!important;
    letter-spacing:-.01em!important;
    font-weight:800!important;
    text-transform:none!important;
    border:0!important;
    background:transparent!important;
    padding:0!important;
}
.article-show .article-sidebar-column .widget .block-title span:before{
    content:""!important;
    width:8px!important;
    height:8px!important;
    border-radius:999px!important;
    background:#2563eb!important;
    flex:0 0 8px!important;
}
.article-show .article-sidebar-column .widget .block-content{
    display:block!important;
    margin:0!important;
    padding:0!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item{
    display:grid!important;
    grid-template-columns:76px minmax(0,1fr)!important;
    grid-template-rows:auto auto!important;
    gap:5px 10px!important;
    align-items:center!important;
    margin:0 0 10px!important;
    padding:0 0 10px!important;
    border-bottom:1px solid #eef2f7!important;
    background:transparent!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item:last-child{
    margin-bottom:0!important;
    padding-bottom:0!important;
    border-bottom:0!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-img,
.article-show .article-sidebar-column .widget-article-list .block-item-img.img-side{
    grid-row:1 / span 2!important;
    width:76px!important;
    height:62px!important;
    min-width:76px!important;
    margin:0!important;
    border-radius:14px!important;
    overflow:hidden!important;
    background:#e5e7eb!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-img > a,
.article-show .article-sidebar-column .widget-article-list .block-item-img.img-side > a{
    display:block!important;
    width:100%!important;
    height:100%!important;
    min-height:62px!important;
    padding:0!important;
    background-size:cover!important;
    background-position:center!important;
    border-radius:14px!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-img > a:before{
    display:none!important;
    content:none!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-title{
    margin:0!important;
    padding:0!important;
    font-size:13px!important;
    line-height:1.35!important;
    font-weight:800!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-title a{
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
    color:#1f2937!important;
    text-decoration:none!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-title a:hover{
    color:#2563eb!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-meta{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:6px!important;
    margin:0!important;
    color:#64748b!important;
    font-size:11px!important;
    line-height:1.2!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-meta small{
    margin:0!important;
    color:#64748b!important;
    font-size:11px!important;
}
.article-show .article-sidebar-column .widget-article-list .block-item-meta small:after{
    display:none!important;
    content:none!important;
}
.article-show .article-sidebar-column .widget-follow-us .block-content{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
}
.article-show .article-sidebar-column .widget-follow-us .pf-follow-link{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    min-height:42px!important;
    padding:10px 12px!important;
    border-radius:14px!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    color:#334155!important;
    font-weight:800!important;
    text-decoration:none!important;
    box-shadow:none!important;
}
.article-show .article-sidebar-column .widget-follow-us .pf-follow-link i{
    width:24px!important;
    height:24px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:10px!important;
    background:#fff!important;
    color:var(--pf-social-color,#2563eb)!important;
    border:1px solid #e5e7eb!important;
}
.article-show .article-sidebar-column .widget-follow-us .pf-follow-link:hover{
    background:#eef2ff!important;
    border-color:#c7d2fe!important;
    color:#1d4ed8!important;
}
.article-show .article-sidebar-column .newsletter p{
    color:#64748b!important;
    font-size:13px!important;
    line-height:1.55!important;
    margin:0 0 12px!important;
}
.article-show .article-sidebar-column .newsletter .form-group{
    margin-bottom:9px!important;
}
.article-show .article-sidebar-column .newsletter .form-control{
    border:1px solid #dbe3ef!important;
    border-radius:14px!important;
    box-shadow:none!important;
}
.article-show .article-sidebar-column .newsletter .btn,
.article-show .article-sidebar-column .newsletter input[type="submit"]{
    width:100%!important;
    border:0!important;
    border-radius:14px!important;
    background:#2563eb!important;
    color:#fff!important;
    box-shadow:none!important;
    font-weight:800!important;
}
.article-show .article-sidebar-column .pf-author-about-widget{
    padding:0!important;
    background:transparent!important;
    border:0!important;
}
.article-show .pf-author-about-card{
    padding:16px!important;
    border:1px solid #e5e7eb!important;
    border-radius:20px!important;
    background:#ffffff!important;
    box-shadow:none!important;
}
.article-show .pf-author-about-top{
    display:flex!important;
    align-items:center!important;
    gap:12px!important;
    margin-bottom:13px!important;
}
.article-show .pf-author-about-avatar img{
    width:62px!important;
    height:62px!important;
    border-radius:18px!important;
    object-fit:cover!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
}
.article-show .pf-author-about-kicker{
    display:inline-flex!important;
    align-items:center!important;
    gap:6px!important;
    margin:0 0 4px!important;
    color:#2563eb!important;
    font-size:11px!important;
    font-weight:900!important;
    text-transform:uppercase!important;
    letter-spacing:.04em!important;
}
.article-show .pf-author-about-main h3{
    margin:0!important;
    color:#0f172a!important;
    font-size:17px!important;
    line-height:1.2!important;
    font-weight:900!important;
}
.article-show .pf-author-about-main h3 a{
    color:inherit!important;
    text-decoration:none!important;
}
.article-show .pf-author-about-main small,
.article-show .pf-author-about-bio{
    color:#64748b!important;
    font-size:13px!important;
    line-height:1.55!important;
}
.article-show .pf-author-about-bio{
    margin:0 0 13px!important;
}
.article-show .pf-author-about-stats{
    display:grid!important;
    grid-template-columns:repeat(3,1fr)!important;
    gap:8px!important;
    margin:0 0 13px!important;
}
.article-show .pf-author-about-stats > div{
    padding:9px 6px!important;
    border:1px solid #e5e7eb!important;
    border-radius:14px!important;
    background:#f8fafc!important;
    text-align:center!important;
}
.article-show .pf-author-about-stats strong{
    display:block!important;
    color:#0f172a!important;
    font-size:15px!important;
    line-height:1!important;
}
.article-show .pf-author-about-stats span{
    display:block!important;
    margin-top:4px!important;
    color:#64748b!important;
    font-size:10px!important;
    line-height:1.2!important;
}
.article-show .pf-author-about-actions{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
    margin-bottom:12px!important;
}
.article-show .pf-author-about-profile-btn,
.article-show .pf-author-about-follow-btn{
    width:100%!important;
    min-height:40px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    border-radius:14px!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    color:#334155!important;
    font-weight:900!important;
    text-decoration:none!important;
    box-shadow:none!important;
}
.article-show .pf-author-about-follow-btn{
    border-color:#2563eb!important;
    background:#2563eb!important;
    color:#fff!important;
}
.article-show .pf-author-about-follow-btn.is-following{
    border-color:#dbe3ef!important;
    background:#eef2ff!important;
    color:#1d4ed8!important;
}
.article-show .pf-author-about-socials{
    display:flex!important;
    flex-wrap:wrap!important;
    gap:8px!important;
    margin:0!important;
}
.article-show .pf-author-about-socials a{
    width:34px!important;
    height:34px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    border-radius:13px!important;
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    color:#334155!important;
    text-decoration:none!important;
}
.article-show .pf-revenue-ad-article-top,
.article-show .pf-revenue-ad-article-bottom,
.article-show .pf-revenue-ad-sidebar,
.article-show .pf-revenue-ad-slot{
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    border-radius:18px!important;
    box-shadow:none!important;
}
.article-show .article-sidebar-column .pf-revenue-ad-sidebar{
    padding:10px!important;
}
.article-show .pf-revenue-ad-slot:before,
.article-show .pf-revenue-ad-sidebar:before{
    display:none!important;
    content:none!important;
}
html.dark-mode-site body.article-show,
body.dark-mode-site.article-show{
    background:#020617!important;
}
html.dark-mode-site .article-show .article-content-column > .col-inner,
body.dark-mode-site.article-show .article-content-column > .col-inner,
html.dark-mode-site .article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
body.dark-mode-site.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
html.dark-mode-site .article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar,
body.dark-mode-site.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar,
html.dark-mode-site .article-show .pf-author-about-card,
body.dark-mode-site.article-show .pf-author-about-card{
    background:#0f172a!important;
    border-color:#1f2937!important;
}
html.dark-mode-site .article-show .article-title,
body.dark-mode-site.article-show .article-title,
html.dark-mode-site .article-show #main-content.article-content h2,
html.dark-mode-site .article-show #main-content.article-content h3,
html.dark-mode-site .article-show #main-content.article-content h4,
html.dark-mode-site .article-show .article-sidebar-column .widget .block-title span,
html.dark-mode-site .article-show .pf-author-about-main h3,
html.dark-mode-site .article-show .pf-author-about-stats strong{
    color:#f8fafc!important;
}
html.dark-mode-site .article-show #main-content.article-content,
body.dark-mode-site.article-show #main-content.article-content{
    color:#cbd5e1!important;
}
html.dark-mode-site .article-show .article-tags,
html.dark-mode-site .article-show .article-newsletter,
html.dark-mode-site .article-show .article-comments,
html.dark-mode-site .article-show .pf-author-about-stats > div,
html.dark-mode-site .article-show .article-content-column .btn-light,
html.dark-mode-site .article-show .article-share-button,
html.dark-mode-site .article-show .widget-follow-us .pf-follow-link,
html.dark-mode-site .article-show .pf-author-about-profile-btn,
html.dark-mode-site .article-show .pf-author-about-socials a,
html.dark-mode-site .article-show .pf-revenue-ad-slot,
html.dark-mode-site .article-show .pf-revenue-ad-sidebar{
    background:#111827!important;
    border-color:#1f2937!important;
}
html.dark-mode-site .article-show .article-sidebar-column .widget-article-list .block-item{
    border-bottom-color:#1f2937!important;
}
@media(max-width:991.98px){
    .article-show .article-main-image-bg{margin:14px 12px 0!important;border-radius:18px!important;}
    .article-show .article-content-column > .col-inner{padding:20px!important;border-radius:18px!important;}
    .article-show .article-sidebar-column{padding-left:15px!important;margin-top:18px!important;}
    .article-show .article-sidebar-column .pf-article-sidebar-clean{position:static!important;top:auto!important;}
}
@media(max-width:575.98px){
    .article-show .article-main-content{padding-top:14px!important;padding-bottom:24px!important;}
    .article-show .article-content-column > .col-inner{padding:16px!important;border-radius:16px!important;}
    .article-show .article-title{font-size:28px!important;}
    .article-show #main-content.article-content{font-size:16px!important;line-height:1.74!important;}
    .article-show .article-tags,.article-show .article-newsletter,.article-show .article-comments{padding:14px!important;border-radius:16px!important;}
    .article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
    .article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar{padding:14px!important;border-radius:16px!important;}
    .article-show .article-sidebar-column .widget-article-list .block-item{grid-template-columns:70px minmax(0,1fr)!important;}
    .article-show .article-sidebar-column .widget-article-list .block-item-img,
    .article-show .article-sidebar-column .widget-article-list .block-item-img.img-side{width:70px!important;height:58px!important;min-width:70px!important;}
}

/* 2026-05-04 restore classic article cover image display */
.article-show .article-main-image-bg{
    max-width:none!important;
    width:100%!important;
    margin:0!important;
    padding-top:515px!important;
    border-radius:0!important;
    overflow:visible!important;
    background-color:transparent!important;
    background-size:cover!important;
    background-attachment:fixed!important;
    background-position:center!important;
    border:0!important;
    box-shadow:none!important;
    position:relative!important;
}
.article-show .article-main-image-bg:after{
    content:""!important;
    position:absolute!important;
    z-index:1!important;
    left:0!important;
    right:0!important;
    bottom:0!important;
    height:100%!important;
    background-image:linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75))!important;
    transition:all .2s ease!important;
}
.article-show .article-main-image-bg img{
    display:none!important;
}
.article-show .article-main-content{
    margin-top:-10rem!important;
}
@media (max-width:991.999px){
    .article-show .article-main-image-bg{
        background:none!important;
        padding-top:0!important;
    }
    .article-show .article-main-image-bg:after{
        display:none!important;
    }
    .article-show .article-main-image-bg img{
        display:inline-block!important;
        width:100%!important;
        height:auto!important;
        aspect-ratio:1024 / 615!important;
        object-fit:cover!important;
    }
    .article-show .article-main-content{
        margin-top:0!important;
    }
}

/* 2026-05-04 SEO/performance/reklam dengeleme */
.header .wrap-inner{
    min-height:auto!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
    gap:18px!important;
}
.header .logo{display:flex!important;align-items:center!important;min-height:60px!important;}
.header .logo img{display:block!important;max-height:60px!important;width:auto!important;object-fit:contain!important;}
.header .top-banner.pf-header-ad-banner{
    min-height:0!important;
    padding:0!important;
    margin:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
}
.header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot,
.header .top-banner.pf-header-ad-banner .pf-revenue-ad-header{
    margin:0!important;
    padding:6px!important;
    border-radius:14px!important;
    min-height:0!important;
    line-height:1!important;
    background:#f8fafc!important;
    border:1px solid #e5e7eb!important;
    box-shadow:none!important;
}
.header .top-banner.pf-header-ad-banner .pf-ad-inner,
.header .top-banner.pf-header-ad-banner .ad-inner{
    min-height:0!important;
    height:auto!important;
    max-height:96px!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
}
.header .top-banner.pf-header-ad-banner img,
.header .top-banner.pf-header-ad-banner iframe,
.header .top-banner.pf-header-ad-banner ins,
.header .top-banner.pf-header-ad-banner object,
.header .top-banner.pf-header-ad-banner embed{
    max-height:90px!important;
    width:auto!important;
    max-width:100%!important;
    display:block!important;
    margin:0 auto!important;
    border:0!important;
}
.pf-revenue-ad-slot:before,
.pf-revenue-ad-slot::before,
.pf-revenue-ad-sidebar:before,
.pf-revenue-ad-sidebar::before{display:none!important;content:none!important;background:transparent!important;}
.pf-revenue-ad-slot,
.pf-sidebar-widget-ad{
    border:1px solid #e5e7eb!important;
    background:#f8fafc!important;
    box-shadow:none!important;
}
.pf-revenue-ad-slot:empty,
.pf-sidebar-widget-ad:empty{display:none!important;min-height:0!important;margin:0!important;padding:0!important;border:0!important;}
.pf-revenue-ad-slot .pf-ad-inner:empty,
.pf-revenue-ad-slot .ad-inner:empty{min-height:0!important;display:none!important;}
.pf-revenue-ad-slot .pf-ad-element,
.pf-revenue-ad-slot .ad-element,
.pf-sidebar-widget-ad .pf-ad-element,
.pf-sidebar-widget-ad .ad-element{margin:0!important;padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important;}
.pf-revenue-ad-slot .pf-ad-inner,
.pf-revenue-ad-slot .ad-inner,
.pf-sidebar-widget-ad .pf-ad-inner,
.pf-sidebar-widget-ad .ad-inner{margin:0 auto!important;border:0!important;background:transparent!important;box-shadow:none!important;overflow:hidden!important;}
.article-show .pf-revenue-ad-article-top,
.article-show .pf-revenue-ad-article-bottom{margin:16px 0!important;padding:8px!important;}
.article-show .pf-revenue-ad-sidebar{margin:0 0 14px!important;padding:8px!important;}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget{margin-bottom:14px!important;}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget:last-child{margin-bottom:0!important;}
.article-show .article-content img{max-width:100%!important;height:auto!important;}
@media(max-width:991.98px){
    .header .wrap-inner{flex-direction:column!important;gap:10px!important;padding-top:10px!important;padding-bottom:10px!important;}
    .header .logo{justify-content:center!important;min-height:auto!important;}
    .header .top-banner.pf-header-ad-banner{justify-content:center!important;width:100%!important;}
    .header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot{max-width:100%!important;}
}
@media(max-width:575.98px){
    .header .top-banner.pf-header-ad-banner img,
    .header .top-banner.pf-header-ad-banner iframe,
    .header .top-banner.pf-header-ad-banner ins{max-height:72px!important;}
    .header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot{padding:5px!important;border-radius:12px!important;}
}
html.dark-mode-site .header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot,
body.dark-mode-site .header .top-banner.pf-header-ad-banner .pf-revenue-ad-slot,
html.dark-mode-site .pf-revenue-ad-slot,
body.dark-mode-site .pf-revenue-ad-slot,
html.dark-mode-site .pf-sidebar-widget-ad,
body.dark-mode-site .pf-sidebar-widget-ad{background:#0f172a!important;border-color:#1f2937!important;box-shadow:none!important;}

/* 2026-05-04 article page compact content/sidebar gap + wider reading area */
.article-show .article-main-content{
    max-width:1280px!important;
    width:100%!important;
}
.article-show .article-layout-balanced{
    margin-left:-8px!important;
    margin-right:-8px!important;
}
.article-show .article-content-column,
.article-show .article-sidebar-column{
    padding-left:8px!important;
    padding-right:8px!important;
}
.article-show .article-sidebar-column{
    padding-left:8px!important;
}
@media (min-width:992px){
    .article-show .article-content-column.col-lg-9{
        flex:0 0 77%!important;
        max-width:77%!important;
    }
    .article-show .article-sidebar-column.col-lg-3{
        flex:0 0 23%!important;
        max-width:23%!important;
    }
    .article-show .article-content-column > .col-inner{
        padding:28px!important;
    }
}
@media (min-width:1200px){
    .article-show .article-content-column.col-lg-9{
        flex-basis:78%!important;
        max-width:78%!important;
    }
    .article-show .article-sidebar-column.col-lg-3{
        flex-basis:22%!important;
        max-width:22%!important;
    }
}
@media (max-width:991.98px){
    .article-show .article-layout-balanced{
        margin-left:-10px!important;
        margin-right:-10px!important;
    }
    .article-show .article-content-column,
    .article-show .article-sidebar-column{
        padding-left:10px!important;
        padding-right:10px!important;
        max-width:100%!important;
        flex:0 0 100%!important;
    }
    .article-show .article-sidebar-column{
        margin-top:14px!important;
    }
}


/* 2026-05-04 article sidebar scroll/sticky stability fix */
.article-show .article-sidebar-column{
    position:relative!important;
    z-index:2!important;
    min-width:0!important;
}
.article-show .article-sidebar-column > .col-inner,
.article-show .article-sidebar-column .pf-article-sidebar-clean{
    width:100%!important;
    min-width:0!important;
    transform:none!important;
    left:auto!important;
    right:auto!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean{
    position:sticky!important;
    top:88px!important;
    max-height:calc(100vh - 104px)!important;
    overflow-y:auto!important;
    overflow-x:hidden!important;
    overscroll-behavior:contain!important;
    scrollbar-width:thin!important;
    padding-right:2px!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean.isStuck,
.article-show .article-sidebar-column .pf-article-sidebar-clean.stuckMenu,
.article-show .article-sidebar-column .pf-article-sidebar-clean.sticky{
    position:sticky!important;
    top:88px!important;
    width:100%!important;
    left:auto!important;
    right:auto!important;
    margin-left:0!important;
    transform:none!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean::-webkit-scrollbar{
    width:6px!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean::-webkit-scrollbar-thumb{
    background:#cbd5e1!important;
    border-radius:999px!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > aside.widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar{
    width:100%!important;
    max-width:100%!important;
    clear:both!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget:empty,
.article-show .article-sidebar-column .pf-article-sidebar-clean > aside.widget:empty,
.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar:empty{
    display:none!important;
    margin:0!important;
    padding:0!important;
    min-height:0!important;
    border:0!important;
}
@media (max-width:991.98px){
    .article-show .article-sidebar-column .pf-article-sidebar-clean,
    .article-show .article-sidebar-column .pf-article-sidebar-clean.isStuck,
    .article-show .article-sidebar-column .pf-article-sidebar-clean.stuckMenu,
    .article-show .article-sidebar-column .pf-article-sidebar-clean.sticky{
        position:static!important;
        top:auto!important;
        max-height:none!important;
        overflow:visible!important;
        width:100%!important;
        transform:none!important;
    }
}
html.dark-mode-site .article-show .article-sidebar-column .pf-article-sidebar-clean::-webkit-scrollbar-thumb,
body.dark-mode-site.article-show .article-sidebar-column .pf-article-sidebar-clean::-webkit-scrollbar-thumb{
    background:#334155!important;
}

/* 2026-05-24 article sidebar normal-flow + hierarchical category menu */
.article-show .article-layout-balanced,
.article-show .article-sidebar-column,
.article-show .article-sidebar-column .pf-article-sidebar-clean{
    overflow:visible!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean{
    position:static!important;
    top:auto!important;
    right:auto!important;
    bottom:auto!important;
    left:auto!important;
    height:auto!important;
    max-height:none!important;
    overflow-y:visible!important;
}
.article-show .article-sidebar-column .pf-article-sidebar-clean > .widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > aside.widget,
.article-show .article-sidebar-column .pf-article-sidebar-clean > .pf-revenue-ad-sidebar{
    max-height:none!important;
    overflow:visible!important;
}
.pf-news-menu-flat{
    align-items:center!important;
    gap:6px!important;
}
.pf-news-menu-flat .pf-news-menu-item,
.pf-news-submenu-item{
    position:relative!important;
}
.pf-news-menu-flat .pf-news-menu-item.has-submenu{
    display:flex!important;
    align-items:center!important;
    gap:4px!important;
}
.pf-news-menu-flat .pf-news-menu-link{
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    min-height:40px!important;
    padding:9px 10px!important;
    border-radius:14px!important;
    color:#0f172a!important;
    font-weight:850!important;
    transition:background .18s ease,color .18s ease,box-shadow .18s ease!important;
}
.pf-news-menu-flat .pf-news-menu-item:hover > .pf-news-menu-link,
.pf-news-menu-flat .pf-news-menu-item.is-open > .pf-news-menu-link,
.pf-news-menu-flat .pf-news-menu-link:focus{
    background:#eef2ff!important;
    color:#1d4ed8!important;
    text-decoration:none!important;
}
.pf-news-submenu-toggle{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    padding:0!important;
    border:1px solid #e5e7eb!important;
    border-radius:12px!important;
    background:#ffffff!important;
    color:#334155!important;
    box-shadow:none!important;
    cursor:pointer!important;
    transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease!important;
}
.pf-news-submenu-toggle:hover,
.pf-news-menu-item.is-open > .pf-news-submenu-toggle,
.pf-news-submenu-item.is-open > .pf-news-submenu-toggle{
    background:#2563eb!important;
    border-color:#2563eb!important;
    color:#ffffff!important;
}
.pf-news-menu-item.is-open > .pf-news-submenu-toggle i,
.pf-news-submenu-item.is-open > .pf-news-submenu-toggle i{
    transform:rotate(180deg)!important;
}
.pf-news-submenu[hidden]{
    display:none!important;
}
.pf-news-menu-flat .pf-news-submenu{
    display:none!important;
    position:absolute!important;
    top:calc(100% + 8px)!important;
    left:0!important;
    min-width:230px!important;
    max-width:min(320px,calc(100vw - 24px))!important;
    margin:0!important;
    padding:9px!important;
    border:1px solid #e5e7eb!important;
    border-radius:18px!important;
    background:#ffffff!important;
    box-shadow:0 18px 44px rgba(15,23,42,.14)!important;
    z-index:1045!important;
}
.pf-news-menu-flat .pf-news-menu-item.is-open > .pf-news-submenu,
.pf-news-submenu-item.is-open > .pf-news-submenu{
    display:block!important;
}
.pf-news-submenu-list{
    display:grid!important;
    gap:5px!important;
}
.pf-news-submenu-item{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:5px!important;
}
.pf-news-submenu-link{
    min-width:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:10px!important;
    padding:9px 10px!important;
    border-radius:13px!important;
    color:#334155!important;
    font-size:13px!important;
    line-height:1.25!important;
    font-weight:800!important;
    white-space:normal!important;
    background:transparent!important;
}
.pf-news-submenu-link span{
    min-width:0!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
}
.pf-news-submenu-link:hover,
.pf-news-submenu-link:focus,
.pf-news-submenu-item.is-open > .pf-news-submenu-link{
    background:#f1f5f9!important;
    color:#1d4ed8!important;
    text-decoration:none!important;
}
.pf-news-submenu-nested{
    top:0!important;
    left:calc(100% + 8px)!important;
}
html.dark-mode-site .pf-news-menu-flat .pf-news-menu-link,
body.dark-mode-site .pf-news-menu-flat .pf-news-menu-link,
html.dark .pf-news-menu-flat .pf-news-menu-link,
body.dark .pf-news-menu-flat .pf-news-menu-link,
.dark-mode .pf-news-menu-flat .pf-news-menu-link{
    color:#e5e7eb!important;
}
html.dark-mode-site .pf-news-submenu,
body.dark-mode-site .pf-news-submenu,
html.dark .pf-news-submenu,
body.dark .pf-news-submenu,
.dark-mode .pf-news-submenu,
html.dark-mode-site .pf-news-submenu-toggle,
body.dark-mode-site .pf-news-submenu-toggle,
html.dark .pf-news-submenu-toggle,
body.dark .pf-news-submenu-toggle,
.dark-mode .pf-news-submenu-toggle{
    background:#0f172a!important;
    border-color:#243044!important;
    color:#e5e7eb!important;
}
html.dark-mode-site .pf-news-submenu-link,
body.dark-mode-site .pf-news-submenu-link,
html.dark .pf-news-submenu-link,
body.dark .pf-news-submenu-link,
.dark-mode .pf-news-submenu-link{
    color:#cbd5e1!important;
}
html.dark-mode-site .pf-news-submenu-link:hover,
body.dark-mode-site .pf-news-submenu-link:hover,
html.dark .pf-news-submenu-link:hover,
body.dark .pf-news-submenu-link:hover,
.dark-mode .pf-news-submenu-link:hover,
html.dark-mode-site .pf-news-menu-flat .pf-news-menu-item.is-open > .pf-news-menu-link,
body.dark-mode-site .pf-news-menu-flat .pf-news-menu-item.is-open > .pf-news-menu-link{
    background:#1e293b!important;
    color:#93c5fd!important;
}
@media(max-width:991.98px){
    .pf-news-menu-flat{
        align-items:stretch!important;
        gap:6px!important;
        width:100%!important;
    }
    .pf-news-menu-flat .pf-news-menu-item,
    .pf-news-menu-flat .pf-news-menu-item.has-submenu{
        width:100%!important;
        display:grid!important;
        grid-template-columns:minmax(0,1fr) auto!important;
        gap:6px!important;
        align-items:center!important;
    }
    .pf-news-menu-flat .pf-news-menu-link{
        width:100%!important;
        padding:10px 12px!important;
        background:#f8fafc!important;
        border:1px solid #eef2f7!important;
    }
    .pf-news-menu-flat .pf-news-submenu,
    .pf-news-submenu-nested{
        position:static!important;
        width:100%!important;
        min-width:0!important;
        max-width:100%!important;
        margin:7px 0 0!important;
        grid-column:1 / -1!important;
        box-shadow:none!important;
        border-radius:16px!important;
    }
    .pf-news-submenu-item{
        grid-template-columns:minmax(0,1fr) auto!important;
    }
    .pf-news-submenu-level-2,
    .pf-news-submenu-level-3,
    .pf-news-submenu-level-4{
        padding-left:8px!important;
        border-left:2px solid #e5e7eb!important;
    }
}
.pf-news-submenu-direct{margin-bottom:6px!important;padding-bottom:6px!important;border-bottom:1px solid #eef2f7!important;}
.pf-news-submenu-all-link{background:#eef2ff!important;color:#1d4ed8!important;font-weight:900!important;}
html.dark-mode-site .pf-news-submenu-direct,body.dark-mode-site .pf-news-submenu-direct,html.dark .pf-news-submenu-direct,body.dark .pf-news-submenu-direct,.dark-mode .pf-news-submenu-direct{border-bottom-color:#243044!important;}
html.dark-mode-site .pf-news-submenu-all-link,body.dark-mode-site .pf-news-submenu-all-link,html.dark .pf-news-submenu-all-link,body.dark .pf-news-submenu-all-link,.dark-mode .pf-news-submenu-all-link{background:#1e293b!important;color:#93c5fd!important;}


/* Front top notification bell - flat, responsive */
.pf-front-notification-wrap{position:relative;display:inline-flex;align-items:center;margin-right:8px;vertical-align:middle;z-index:1042}
.pf-front-notification-btn{position:relative;width:42px;height:42px;border:1px solid #e5e7eb;border-radius:15px;background:#fff;color:#0f172a;display:inline-flex;align-items:center;justify-content:center;box-shadow:0 8px 22px rgba(15,23,42,.07);transition:all .18s ease;cursor:pointer}
.pf-front-notification-btn:hover,.pf-front-notification-btn:focus{background:#f8fafc;color:#2563eb;border-color:#cbd5e1;outline:none;box-shadow:0 12px 26px rgba(37,99,235,.14)}
.pf-front-notification-btn .navbar-badge{position:absolute;top:-5px;right:-6px;min-width:20px;height:20px;padding:0 6px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#ef4444!important;color:#fff!important;border:2px solid #fff;font-size:10px;font-weight:900;line-height:1}
.pf-front-notification-menu{width:min(370px,calc(100vw - 22px));padding:0;border:1px solid #e5e7eb;border-radius:20px;overflow:hidden;box-shadow:0 24px 60px rgba(15,23,42,.18);left:auto!important;right:0!important;transform:none!important;top:calc(100% + 10px)!important}
.pf-front-notification-head{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;background:linear-gradient(135deg,#f8fafc,#eef6ff);border-bottom:1px solid #e5edf6}
.pf-front-notification-head strong{display:block;color:#0f172a;font-weight:900;font-size:.96rem;line-height:1.15}.pf-front-notification-head small{display:block;color:#64748b;font-size:.76rem;margin-top:2px}.pf-front-notification-head a{font-size:.76rem;font-weight:900;color:#2563eb;text-decoration:none;white-space:nowrap}.pf-front-notification-list{max-height:342px;overflow:auto;padding:6px;background:#fff}.pf-front-notification-item{display:grid!important;grid-template-columns:10px minmax(0,1fr);gap:10px;padding:11px 10px!important;border-radius:14px;margin:3px 0;color:#0f172a;text-decoration:none!important;white-space:normal!important}.pf-front-notification-item:hover{background:#f8fafc}.pf-front-notification-item.unread{background:#fff7ed}.pf-front-notification-dot{width:9px;height:9px;border-radius:999px;margin-top:5px;background:#cbd5e1}.pf-front-notification-item.unread .pf-front-notification-dot{background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.12)}.pf-front-notification-item .notification-title{display:block;font-size:.86rem;font-weight:900;line-height:1.25;color:#0f172a}.pf-front-notification-item .notification-message{display:block;margin-top:3px;color:#64748b;font-size:.77rem;line-height:1.3}.pf-front-notification-item em{display:block;margin-top:4px;color:#94a3b8;font-size:.7rem;font-style:normal}.pf-front-notification-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:8px;padding:28px 14px;color:#94a3b8;text-align:center}.pf-front-notification-empty i{font-size:24px}.pf-front-notification-actions{display:grid;grid-template-columns:1fr 1fr;gap:0;border-top:1px solid #e5edf6;background:#f8fafc}.pf-front-notification-actions form{margin:0}.pf-front-notification-actions button,.pf-front-notification-actions a{width:100%;height:44px;border:0;background:transparent;color:#2563eb;font-size:.78rem;font-weight:900;display:inline-flex;align-items:center;justify-content:center;gap:6px;text-decoration:none}.pf-front-notification-actions a{border-left:1px solid #e5edf6}.pf-front-notification-actions button:hover,.pf-front-notification-actions a:hover{background:#eef6ff;color:#1d4ed8}.pf-premium-no-ads .pf-revenue-ad-slot,.pf-premium-no-ads .pf-sidebar-widget-ad,.pf-premium-no-ads .pf-header-ad-banner,.pf-premium-no-ads .pf-article-inline-ad,.pf-premium-no-ads .ad-element,.pf-premium-no-ads .ad-inner{display:none!important;min-height:0!important;height:0!important;margin:0!important;padding:0!important;border:0!important;box-shadow:none!important;background:transparent!important;overflow:hidden!important}.pf-premium-no-ads .top-banner:empty{display:none!important}.pf-premium-no-ads [class*="ad-slot"],.pf-premium-no-ads [class*="advert"],.pf-premium-no-ads [id^="ad-"]{min-height:0!important}
html.dark-mode-site .pf-front-notification-btn,body.dark-mode-site .pf-front-notification-btn{background:#0f172a;color:#e5e7eb;border-color:#1f2937}html.dark-mode-site .pf-front-notification-menu,body.dark-mode-site .pf-front-notification-menu{background:#111827;border-color:#253044}html.dark-mode-site .pf-front-notification-head,body.dark-mode-site .pf-front-notification-head{background:linear-gradient(135deg,#111827,#0f172a);border-color:#253044}html.dark-mode-site .pf-front-notification-head strong,body.dark-mode-site .pf-front-notification-head strong,html.dark-mode-site .pf-front-notification-item .notification-title,body.dark-mode-site .pf-front-notification-item .notification-title{color:#f8fafc}html.dark-mode-site .pf-front-notification-list,body.dark-mode-site .pf-front-notification-list{background:#111827}html.dark-mode-site .pf-front-notification-item:hover,body.dark-mode-site .pf-front-notification-item:hover,html.dark-mode-site .pf-front-notification-item.unread,body.dark-mode-site .pf-front-notification-item.unread{background:#1f2937}html.dark-mode-site .pf-front-notification-actions,body.dark-mode-site .pf-front-notification-actions{background:#0f172a;border-color:#253044}html.dark-mode-site .pf-front-notification-actions a,body.dark-mode-site .pf-front-notification-actions a{border-color:#253044}
@media(max-width:991.98px){.pf-front-notification-wrap{margin-right:6px}.pf-front-notification-btn{width:40px;height:40px;border-radius:14px}.pf-top-menu-combined{gap:6px;flex-wrap:wrap;align-items:center;justify-content:flex-end}.pf-front-notification-menu{position:fixed!important;top:58px!important;right:10px!important;left:auto!important;width:min(360px,calc(100vw - 20px))!important;max-height:calc(100vh - 76px);overflow:auto;transform:none!important}}
@media(max-width:575.98px){.pf-front-notification-btn{width:38px;height:38px;border-radius:13px}.pf-front-notification-head{padding:12px}.pf-front-notification-actions{grid-template-columns:1fr}.pf-front-notification-actions a{border-left:0;border-top:1px solid #e5edf6}.pf-front-notification-item{padding:10px 8px!important}}


/* Advanced article category cascade - flat */
.pf-category-cascade{border:1px solid #e5e7eb;border-radius:22px;background:linear-gradient(135deg,#ffffff,#f8fafc);padding:16px;box-shadow:0 16px 38px rgba(15,23,42,.07);position:relative;overflow:hidden}.pf-category-cascade:before{content:"";position:absolute;inset:0 auto auto 0;width:5px;height:100%;background:linear-gradient(180deg,#2563eb,#06b6d4);border-radius:22px 0 0 22px}.pf-category-cascade-title{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px;padding-left:3px}.pf-category-cascade-title>span{width:42px;height:42px;border-radius:16px;background:#eff6ff;color:#2563eb;display:flex;align-items:center;justify-content:center;box-shadow:inset 0 0 0 1px #dbeafe}.pf-category-cascade-title strong{display:block;font-size:.98rem;font-weight:900;color:#0f172a;line-height:1.2}.pf-category-cascade-title small{display:block;margin-top:4px;color:#64748b;font-size:.78rem;line-height:1.35}.pf-category-cascade-levels{display:grid;gap:12px}.pf-category-cascade-level{background:#fff;border:1px solid #edf2f7;border-radius:18px;padding:12px;box-shadow:0 8px 22px rgba(15,23,42,.04)}.pf-category-cascade-level label{display:flex;align-items:center;gap:7px;margin-bottom:7px;color:#334155;font-size:.82rem;font-weight:900}.pf-category-cascade-level label:before{content:"";width:7px;height:7px;border-radius:999px;background:#2563eb;box-shadow:0 0 0 4px rgba(37,99,235,.1)}.pf-category-cascade-select{height:45px!important;border-radius:14px!important;border-color:#dbe4f0!important;background-color:#f8fafc!important;font-weight:700;color:#0f172a!important;box-shadow:none!important}.pf-category-cascade-select:focus{background:#fff!important;border-color:#2563eb!important;box-shadow:0 0 0 4px rgba(37,99,235,.12)!important}.pf-category-cascade-selected{display:flex;align-items:center;gap:8px;margin-top:13px;padding:10px 12px;border-radius:16px;background:#ecfdf5;color:#047857;font-weight:900;font-size:.82rem}.pf-category-cascade-selected i{color:#10b981}.pf-article-taxonomy-card .pf-category-cascade{box-shadow:none}.dark-mode-site .pf-category-cascade,html.dark-mode-site .pf-category-cascade,body.dark-mode-site .pf-category-cascade{background:linear-gradient(135deg,#111827,#0f172a);border-color:#253044}.dark-mode-site .pf-category-cascade-title strong,html.dark-mode-site .pf-category-cascade-title strong,body.dark-mode-site .pf-category-cascade-title strong{color:#f8fafc}.dark-mode-site .pf-category-cascade-title small,html.dark-mode-site .pf-category-cascade-title small,body.dark-mode-site .pf-category-cascade-title small{color:#94a3b8}.dark-mode-site .pf-category-cascade-level,html.dark-mode-site .pf-category-cascade-level,body.dark-mode-site .pf-category-cascade-level{background:#111827;border-color:#253044}.dark-mode-site .pf-category-cascade-level label,html.dark-mode-site .pf-category-cascade-level label,body.dark-mode-site .pf-category-cascade-level label{color:#dbeafe}.dark-mode-site .pf-category-cascade-select,html.dark-mode-site .pf-category-cascade-select,body.dark-mode-site .pf-category-cascade-select{background:#0f172a!important;border-color:#253044!important;color:#f8fafc!important}@media(max-width:767.98px){.pf-category-cascade{border-radius:18px;padding:13px}.pf-category-cascade-title>span{width:38px;height:38px;border-radius:14px}.pf-category-cascade-title{gap:10px}.pf-category-cascade-level{border-radius:15px;padding:10px}.pf-category-cascade-select{height:43px!important}}
