*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    line-height: 1.15;
    color: #333;
    font-family: arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
    width: device-width;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    font-family: -apple-system, BlinkMacSystemFont,
            "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
            "Fira Sans", "Droid Sans", "Helvetica Neue",
            sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}



/* Styling for the menu (optional) */
.navbar-logo,
.footer-logo {
    height: var(--logo-height);
    object-fit: contain;
}

/* Automatically calculate body padding */
/* body {
    padding-top: calc(var(--logo-height) + 2 * var(--navbar-padding) + 1px);
} */

[tabindex="-1"]:focus {
    outline: 0 !important;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

ol,
ul {
    margin-top: 0;
    margin-bottom: 1rem;
}

b,
strong {
    font-weight: bold;
}

a {
    color: #006edb;
    text-decoration: none;
}

a:hover {
    color: #8a9fad;
    text-decoration: none;
    outline: 0;
}

img {
    display: block;
    border-style: none;
    max-width: 100%;
    height: auto;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table {
    border-collapse: collapse;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 0;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    margin-top: 0;
}

/* Base styles (mobile first) */
h1,
.h1 {
    font-size: 26px;
}

h2,
.h2 {
    font-size: 26px;
}

h3,
.h3 {
    font-size: 22px;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-size: 22px;
}

/* Tablet and up (≥ 640px) */
@media (min-width: 640px) {

    h1,
    .h1 {
        font-size: 36px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        font-size: 24px;
    }
}

/* Desktop (≥ 1279px) */
@media (min-width: 1279px) {

    h1,
    .h1 {
        font-size: 40px;
    }

    h2,
    .h2 {
        font-size: 32px;
    }

    h3,
    .h3 {
        font-size: 26px;
    }

    h4,
    .h4,
    h5,
    .h5,
    h6,
    .h6 {
        font-size: 24px;
    }
}

figure {
    margin: 0 0 1em;
}

figcaption {
    font-size: 90%;
    color: #6c757d;
    border-radius: 3px;
}

.container {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

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

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

.container-fluid {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-left: -20px;
}

.col-left,
.col-right,
.col-full {
    position: relative;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

@media (min-width: 768px) {
    .col-left {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .col-right {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
}


/*Navbar Primary*/
.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

@media screen and (prefers-reduced-motion:reduce) {
    .collapsing {
        transition: none
    }
}

.dropdown {
    position: relative
}

.dropdown-toggle {
    white-space: nowrap
}

.dropdown-toggle:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent
}

.dropdown-toggle:empty:after {
    margin-left: 0
}

.dropdown-menu {
    position: absolute;
    /* top: 100%; */
    top: calc(100% + (2 * var(--navbar-padding)) + 2px);
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 11rem;
    padding: 0;
    font-size: 1rem;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border-radius: 0;
    margin: 0;
    border: none !important
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
}

.dropdown-menu.show {
    display: block
}

.navbar {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: var(--navbar-padding) 0;
    background-color: var(--navbar-bg-color);
    transition: transform 0.3s ease-in-out;
    border-bottom: 1px solid #dedede;
}

.navbar>.container,
.navbar>.container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav-item {
    padding-right: 1.6em;
}

.search-menu-item .search-toggler svg {
    vertical-align: -webkit-baseline-middle;
}

.navbar-nav .nav-link {
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    font-size: 16px;
    display: inline-block;
    padding: 6px 0;
    margin: 0;
    line-height: normal;
    text-transform: uppercase;
    color: var(--navbar-text-color);
    position: relative;
}



.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center
}


.navbar-toggler {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: 0;
}

.navbar-toggler .line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--navbar-text-color);
    transition: all 0.3s ease;
}

/* Hide the first search button on large screens and show it on smaller screens */
.search-toggler-mobile {
    display: block;
    /* Visible on small screens */
}

@media (min-width: 992px) {

    /* Bootstrap lg breakpoint */
    .search-toggler-mobile {
        display: none;
        /* Hide on large screens */
    }
}

/* Hide the menu search button on small screens and show it on large screens */
.search-toggler-desktop {
    display: none;
    /* Hide on small screens */
}

@media (min-width: 992px) {
    .search-toggler-desktop {
        display: block;
        /* Show on large screens */
    }
}

.search-toggler {
    background: none;
    border: none;
    cursor: pointer;
    fill: var(--navbar-text-color);
    padding: 0;
}



.search-wrapper {
    display: none;
    position: absolute;
    top: 100%;
    /* Just below the main nav */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 10;
    padding: 6px 0px;
    border-bottom: 1px solid #dedede;
    border-top: 1px solid #dedede;
}

.search-wrapper form {
    display: flex;
    justify-content: center;
    max-width: 950px;
    margin: auto;
}

.search-wrapper input[type="search"] {
    width: 70%;
    padding: 10px;
    border: none;
    background: #F0F0F0;
    border-radius: 3px;
    outline: 0;
}

.search-wrapper button {
    padding: 10px 20px;
    background: #F0F0F0;
    color: white;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
    cursor: pointer;
}

#secondaryNav {
    background-color: var(--trending-bg-color);
}

#secondaryNav a {
    color: var(--trending-text-color);
}

#secondaryNav {
    border-bottom: 1px solid #dedede;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.secondaryNav-wrap {
    display: inline-flex;
    padding: 16px 10px;
    margin: 0 auto;
    max-width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}

ul.secondaryNav-menu,
ul.secondaryNav-social {
    margin: 0;
    font-size: 0;
    padding: 0;
}

.secondaryNav-menu>li,
.secondaryNav-social>li {
    display: inline;
    padding: 0 12px;
    list-style-type: none;
}

.secondaryNav-menu>li a,
.secondaryNav-menu>li span {
    font-size: 15px;
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
}

.secondaryNav-menu>li span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 16px;
}

.secondaryNav-social svg {
    width: 20px;
}

.navbar .secondaryNav-social svg path {
    fill: var(--navbar-social-color);
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -ms-flex-pack: start;
        justify-content: flex-start;
        flex-direction: column;
    }

    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        background: #fff;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
    }

    .dropdown-menu .nav-link {
        color: #4d4d4d;
        padding-top: 15px;
        width: 100%;
    }

    .dropdown-menu .nav-item:last-of-type .nav-link {
        padding-bottom: 15px;
    }

    .dropdown-menu .nav-item {
        padding: 0 18px;
    }

    .navbar-expand-lg .navbar-collapse {
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

/* .navbar-nav .active>.nav-link:before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 75%;
    opacity: 1;
    height: 2px;
    background: var(--primary-color);
    -webkit-transition: all .3sease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3sease-in-out;
} */

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.d-none {
    display: none !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/*Trending Menu*/


#main {
    outline: none;
    background: #fff;
    max-width: 1170px;
    margin: 30px auto;
}



/* @media (min-width: 1585px) {
    #main {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
    }
} */

.rank-math-breadcrumb p {
    margin: 0;
}

.rank-math-breadcrumb a {
    background-color: var(--breadcrumbs-bg-color);
    color: var(--breadcrumbs-text-color);
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 5px;
    font-weight: 400;
    border-radius: 3px;
}

.rank-math-breadcrumb {
    font-size: 10pt;
    margin-bottom: 20px;
}

.rank-math-breadcrumb .separator {
    display: none;
}



/*Pagination*/
ul.page-numbers {
    list-style: none;
    padding: 0;
    display: flex;
}

.page-numbers:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.page-numbers a,
.page-numbers span {
    display: block;
    padding: 10px;
    font-size: 14px;
    color: #888;
}

.current-page span {
    color: inherit;
    font-weight: 700;
}

.page-numbers a span {
    padding: 0
}



/*Butons*/
.wp-block-button a {
    color: #fff !important;
    max-width: 150px;
    width: auto;
    margin: 0;
    background: #ab9359;
    box-sizing: border-box;
    line-height: 1;
    padding: 10px 40px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    word-break: normal;
    letter-spacing: normal;
}

/*Cat Pages*/


/*Article Single*/

.single .cat-links {
    display: flex;
    flex-wrap: wrap;
    font-size: .75em;
    font-weight: 700;
    margin: 0 0 .5em;
}

.single .cat-links.sponsor-label {
    align-items: center;
    display: flex;
    gap: .5em;
}

.single .byline {
    margin: 15px 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.single .byline-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 6px;
    vertical-align: middle;
}

.header-strapline {
    font-size: 21px;
    font-weight: 400;
    line-height: 26px;
}

.post-thumbnail img {
    border-radius: 3px;
}


.post-thumbnail.featured-image {
    margin: 15px 0;
}

.entry-content {
    color: #333;
}

.single .entry-content p:first-of-type {
    font-weight: bold;
}



.entry-content p,
.entry-content ul,
.entry-content ol,
.not-found__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 22px;
}

/* .entry-content a {
    color: var(--primary-color);
} */

.entry-content .crp_related ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entry-content .crp_related ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.entry-content .crp_related ul li a {
    color: inherit;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    -webkit-transition: all .2slinear;
    -o-transition: all .2s linear;
    transition: all .2slinear;
}

.entry-content .crp_related ul li a:hover {
    color: var(--primary-color);
}

.entry-content .crp_related ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    border-left: 8px solid var(--primary-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}


/*Entry Content with Share*/
@media only screen and (min-width: 1024px) {
    .with-share {
        position: relative;
        display: flex;
    }

    .with-share .a2a_kit {
        position: sticky;
        top: 120px;
        /* Adjust as needed based on your header */
        align-self: flex-start;
        width: 80px;
        flex-shrink: 0;
        z-index: 10;
    }

    .with-share .content-inner {
        /* Space for the sticky icons */
        flex: 1;
    }

    .with-share .content-inner p:first-of-type {
        margin-top: 0;   }

    /* Optional: Vertically align icons */
    .with-share .content-inner.a2a_kit a {
        display: block;
        margin-bottom: 10px;
    }

    .entry-content.with-share .a2a_svg {
        height: 45px;
        /* or whatever height you want */
        width: 45px;
        line-height: 45px;
        border-radius:0px;
    }

}

/*End Entry Content with share*/

.post-tags {
    font-size: 14px;
    vertical-align: baseline;
    margin-top: 20px;
}

.post-tags span {
    font-weight: 700;
    margin-right: 5px;
}

.post-tags a {
    color: #616161;
    background: #f5f5f5;
    display: inline-block;
    letter-spacing: 1px;
    line-height: normal;
    padding: 4px 10px;
    margin: 0 3px 5px 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}

.author-box {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 30px 20px;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.author-avatar {
    flex-shrink: 0;
    margin-right: 15px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    border-radius: 50%;
    width: 96px;
    height: 96px;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px;
}

.author-description {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}


/* Comments */
.comment-box {
    margin-top: 30px;
}

.community-guidelines {
    font-size: 14px;
    text-transform: none;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#comments {
    margin: 0;
}

#wpdcom .wpd-thread-head .wpd-thread-info {
    border-color: #333;
}

#wpdcom .wpd-comment.wpd-reply .wpd-comment-label {
    display: none;
}

#wpdcom #wpd-threads {
    margin-top: 0;
}

#wpdcom .wpd-thread-list {
    padding: 0;
}

.wpd-thread-list:has(.wpd-comment) {
    padding: 30px 0 !important;
}

#wpdcom .wpd-form-head {
    margin-top: 0;
}

#wpdcom .wpd-form-head,
#wpdcom .wpd-thread-head {
    border-color: #eee
}

/*Active conversations*/
.comment-count {
    font-size: 14px;
    vertical-align: text-bottom;
}


.active-conversations h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.active-conversations-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
    gap: 15px;
}

.active-conversation-item {
    display: flex;
    width: calc(50% - 10px);
}

.active-conversation-item .post-thumb {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    margin-right: 10px;
}

.active-conversation-item .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure proper cropping */
    border-radius: 3px;
}

.active-conversation-item .post-details {
    flex-grow: 1;
    /* Allow text to take remaining space */
}

.active-conversation-item .post-title {
    color: #4d4d4d;
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.active-conversation-item .post-title:hover {
    color: var(--primary-color);
}

.comment-count {
    font-size: 12px;
    color: #666;
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.comment-count svg {
    margin-right: 5px;
}

@media screen and (max-width: 768px) {
    .active-conversation-item {
        width: 100%;
        /* Full width on smaller screens */
    }
}

/*Footer*/


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

/* Paddings & Margins */
.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.ml-auto {
    margin-left: auto !important;
    margin-left: auto !important;
}

.my-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/*404*/
.not-found {
    text-align: center;
}

.not-found__404 {
    font-size: 80px;
    font-weight: 700;
    color: #ebebeb;
}

.not-found__content {
    width: 480px;
    max-width: 100%;
    margin: 0 auto;
}


/*AD SECTIONS*/

.top-lead-wrapper,
.bottom-lead-wrapper {
    background: #f7f7f7;
}

@media screen and (min-width: 1000px) {

    .top-leaderboard-container,
    .bottom-leaderboard-container {
        width: 980px;
        height: 250px;
        margin: 0 auto;
        display: block;
    }
}

@media screen and (min-width: 700px) and (max-width: 999px) {

    .top-leaderboard-container,
    .bottom-leaderboard-container {
        width: 728px;
        height: 100px;
        margin: 0 auto;
        display: block;
    }
}


/*Sidebar - Widget*/

.widget {
    margin-bottom: 35px;
}

.widget-heading {
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.widget-title {
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    line-height: normal;
    border-bottom: 1px solid #eee;
}

.widget-title svg {
    vertical-align: sub;
    margin-right: 5px;
    fill: inherit;
}

.widget-title span {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    padding-right: 15px;
    white-space: nowrap;
}

.widget-title strong {
    color: var(--primary-color);
}

.widget-list-layout {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list-layout li {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget-list-layout li:last-child {
    border-bottom: none;
}

.post-thumb {
    width: 90px;
    margin-right: 15px;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-title {
    font-weight: 600;
    font-size: 18px;
    flex-grow: 1;
    line-height: normal;
}

.post-title a {
    color: #4d4d4d;
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-title a:hover {
    color: var(--primary-color);
}



.primaryFooter {
    background-color: var(--footer-bg-color);
    padding: 40px 0;
}

.primaryFooter,
.primaryFooter-bottom a {
    color: var(--footer-text-color);
}

.primaryFooter .secondaryNav-social svg path {
    fill: var(--footer-social-color);
}

.primaryFooter-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primaryFooter-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
}

/* .primaryFooter-top--logo img {
    max-width: 150px;
} */

.primaryFooter-top--tagline {
    font-size: 14px;
    line-height: 1.5;
}

.secondaryNav-social-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.secondaryNav-social-wrap a {
    display: inline-block;
    width: 30px;
    height: 30px;
}

.secondaryNav-social-wrap svg {
    width: 100%;
    height: 100%;
    transition: fill 0.3s;
}

.primaryFooter-bottom {
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    padding: 30px 0;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.primaryFooter-menu-wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.primaryFooter-menu a {
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.primaryFooter-copyright {
    font-size: 12px;
}

.primaryFooter-bottom .accordion {
    font-family: var(--font-family-headings);
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    position: relative;
    font-size: 18px;
    overflow: hidden;
}

.accordion+div {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

@media (min-width: 768px) {
    .accordion+div {
        max-height: none;
    }
}


@media (max-width: 767px) {
    .primaryFooter-bottom .accordion:after {
        content: '+';
        font-size: 20px;
        font-weight: 700;
        float: right;
        line-height: normal;
        display: inline-block;
    }

    .primaryFooter-bottom .accordion.active:after {
        content: "-";
    }
}


@media (min-width: 768px) {
    .primaryFooter-bottom .f-col {
        text-align: left;
        width: 25%;
    }
}

.primaryFooter-bottom .p-footer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.primaryFooter-bottom ul {
    overflow: hidden;
    list-style: none;
    padding-top: 20px;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14px;
}

.primaryFooter-bottom li a {
    display: inline-block;
    padding: 5px 2px;
}

.primaryFooter-bottom p {
    margin-bottom: 15px;
    line-height: 18px;
}


/* Media Query for Desktop */
@media (min-width: 768px) {

    .primaryFooter-top,
    .primaryFooter-bottom {
        flex-direction: row;
        text-align: left;
    }

    .primaryFooter-top--logo {
        flex: 1;
    }

    .primaryFooter-top--tagline {
        flex: 2;
        padding: 0 20px;
    }

    footer .secondaryNav-social-wrap {
        flex: 1;
        justify-content: flex-end;
    }
}

.custom-select {
    position: relative;
    width: 200px;
    cursor: pointer;
}

.select-trigger {
    padding: 10px;
    border: 1px solid #ccc;
    font-weight: 700;
    border-radius: 5px;
}

.select-trigger:after {
    content: "";
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-color);
    /* Triangle pointing up */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.options {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--footer-bg-color);
    z-index: 10;
    padding: 0;
    list-style: none;
    margin-bottom: 5px;
}

.options .option {
    padding: 0;
}

.options .option a {
    display: block;
    width: 100%;
    padding: 10px;
    text-decoration: none;
    color: inherit;
}

.options .option a:hover {
    color: var(--primary-color);
}



/*Archive Page*/
.archive-articles article {
    border-bottom: 1px dotted #ccc;
    padding: 1ex 20px;
    padding-left: 0;
}

.archive-articles article a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.archive-list>li {
    font-weight: bold;
    margin-top: 15px;
}

.archive-list>li ul {
    padding-left: 0;
    margin-top: 5px;
}

.archive-list>li ul li {
    font-weight: normal;
    list-style: none;
    padding: 3px 0;
    border-bottom: 1px dotted #ccc;
}

.archive-list>li ul li a {
    text-decoration: none;
    color: #333;
}

.archive-list>li ul li a:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

/*Category Page*/
.post-loop {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.post-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    position:relative;
}

.post-item .post-thumbnail {
    position: relative;
    flex: 0 0 145px;
    height: 145px;
    overflow: hidden;
    margin-right: 15px;
}

.post-item .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-category-label {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 12px;
    padding: 3px 5px;
}

.post-category-label a {
    text-decoration: none;
    background-color: var(--category-label-bg-color);
    color: var(--category-label-text-color);
    font-size: 12px;
    padding: 5px 10px;
    margin-right: 5px;
    font-weight: 400;
    border-radius: 3px;
}

.post-category-label a:hover {
    text-decoration: underline;
}

.post-details h2 {
    font-size: 21px;
}

@media screen and (min-width: 768px) {
    .post-details h2 {
        font-size: 25px;
    }
}

.post-details p {
    color: #4d4d4d;
}


/* Modifier class to enable 2-column grid layout */
.post-loop.is-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.post-loop.is-grid .post-item {
    border-bottom: none;
    /* optional, no divider in grid */
    padding-bottom: 0;
    /* optional */
    flex-direction: column;
    /* stack image and text if you prefer */
}

.post-loop.is-grid .post-thumbnail {
    width: 100%;
    height: 180px;
    flex: 0 0 180px;
    margin-right: 0;
    margin-bottom: 10px;
}


/*In content Ad Newsletter*/

.in-content-widget form {
    padding: 30px 20px;
    background: #f6f6f6;
    border-top: 2px solid #ddd;
}

form#sib_signup_form_1 input[type=email] {
    width: 100%;
    border: 1px solid #bbb;
    height: auto;
    margin: 5px 0 0 0;
    padding: 10px;
}

.in-content-widget form .sib-default-btn {
    margin: 5px 0;
    padding: 10px 20px;
    color: #fff;
    background-color: #333;
    border-color: #2E2E2E;
    font-weight: 600;
    line-height: 1.4285;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.in-content-widget form .sib-default-btn:hover {
    background-color: #444;
}

.in-content-widget form p {
    margin: 10px 0 0 0;
}

.in-content-widget form .form-footer {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

.sib-multi-lists label {
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    font-size: 14px;
}

/*Related Posts*/
.related-posts-section {
    margin: 30px 0;
}

.related-posts-section h4 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.related-posts-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    /* 2 per row */
    gap: 30px;
    list-style: none;
    padding: 0;
}

.related-post-item {
    display: flex;
}

.related-post-item .post-thumb {
    flex: 0 0 40%;
}

.related-post-item .post-thumb img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 3px;
}

.related-post-item .post-category {
    display: inline-block;
    margin: 5px 0;
}

.related-post-item .post-category a {
    text-decoration: none;
    color: var(--category-label-bg-color);
    font-size: 16px;
    font-weight: 600;
}

.related-post-item .post-title {
    font-size: 21px;
}

.related-posts-cta {
    text-align: center;
    margin: 20px 0;
}

.btn-related-posts {
    border: none;
    cursor: pointer;
    font-family: "Arial Hebrew", Arial, sans-serif;
    font-size: 14px;
    line-height: 24px;
    padding: 4px 20px;
    letter-spacing: 1px;
    box-shadow: 1px 1px 3px -1px #bbb;
    border-radius: 3px;
    max-width: none;
    background-color: #07B290;
    color: #FFFFFF;
    display: inline-block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: repeat(1, 1fr);
        /* 1 per row on mobile */
    }
}


@media screen and (min-width: 768px) {
    .related-post-item .post-title {
        font-size: 25px;
    }
}

/*Article Share Buttons*/
.a2a_kit {
    display: inline-block;
}

.addtoany_list a {
    border: 0;
    box-shadow: none;
    display: inline-block;
    vertical-align: middle;
}

.addtoany_list a>span {
    border-radius: 4px;
}

.a2a_label {
    position: absolute !important;
    clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    -webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
    overflow: hidden;
    height: 1px;
    width: 1px;
}

.a2a_svg {
    background-repeat: no-repeat;
    display: block;
    overflow: hidden;
    height: 32px;
    line-height: 32px;
    padding: 0;
    pointer-events: none;
    width: 32px;
}

.a2a_svg svg {
    background-repeat: no-repeat;
    background-position: 50% 50%;
    border: none;
    display: block;
    left: 0;
    margin: 0 auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    top: 0;
    width: auto;
    height: auto;
}


/* === Wrapper === */
.dp-comments-area {
    background: #fff;
    margin-top: 2rem;
}

/* === Title === */
.dp-comments-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* === Comment List === */
.commentlist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.commentlist>.comment {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

/* === Author Info === */
.comment-author-avatar img {
    float: left;
    margin-right: 10px;
    border-radius: 3px;
    width: 32px;
    height: 32px;
}

.comment-author .fn {
    font-weight: 700;
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* === Metadata === */
.comment-metadata {
    font-size: 11px;
    color: #999;
    margin-top: 3px;
}

.comment-metadata a {
    color: #999;
    font-size: 11px;
    text-decoration: none;
}

.comment-meta .comment-edit-link {
    float: right;
    font-size: 11px;
}

/* === Content === */
.comment-content {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.comment-content p {
    margin-bottom: 15px;
}

/* === Reply Button === */
.comment-footer .reply a,
.comment-reply-link,
.comment-reply-login {
    display: inline-block;
    font-size: 11px;
    color: #999;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 2px 6px;
    text-decoration: none;
}

.comment-footer .reply a:hover {
    background: #3c4057;
    color: #fff;
    border-color: #3c4057;
}

/* === Nested (Children) === */


/* === Read-only login prompt === */
.dp-login-required textarea {
    background: #f9f9f9;
    border: 1px dashed #bbb;
    cursor: pointer;
    color: #666;
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    resize: none;
}

.dp-login-required textarea:hover {
    background: #f0f0f0;
}

/* === Comment Form Buttons === */

.dp-btn:hover {
    background-color: #0040a8;
}

/* === Misc === */
.comment-awaiting-moderation {
    color: #f30;
    font-size: 12px;
    font-weight: 700;
}

@media screen and (max-width: 600px) {
    .comment-author-avatar img {
        float: none;
        display: block;
        margin-bottom: 5px;
    }

    .comment .children {
        margin-left: 0;
    }
}


/* === Logged-in comment form textarea === */
#commentform textarea {
    outline: none;
}

#commentform textarea#comment {
    width: 100%;
    padding: 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* === Submit button (already styled, keeping for clarity) */
#commentform input#submit,
.dp-btn {
    background-color: #0056d2;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
}

#commentform input#submit:hover {
    background-color: #0040a8;
}


#respond {
    width: 100%;
    margin: 1rem 0;
    clear: both;
}

#respond textarea {
    width: 100%;
    box-sizing: border-box;
}

.commentlist .children {
    background: #f9f9f9;
    border-radius: 5px;
    position: relative;
    padding: 15px;
    margin-left: 15px;
}

.commentlist .children li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
    list-style: none outside none;
    overflow: hidden;
}

.commentlist .children li:last-of-type {
    margin: 0;
    padding: 0;
    border: none;
}

.comment-reply-title {
    font-size: 18px;
    font-family: inherit;
    font-weight: 600;
}

.comment-reply-title small {
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}