/* Keep the shared listing filters hidden until their responsive markup is ready. */
.insights-listing-view {
    position: relative;
    visibility: hidden;
}

.insights-listing-view:not(.insights-listing-ready)::before {
    content: "";
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 20;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(26, 110, 252, 0.2);
    border-top-color: #1a6efc;
    border-radius: 50%;
    visibility: visible;
    animation: insights-listing-loader 0.75s linear infinite;
}

.insights-listing-view.insights-listing-ready {
    visibility: visible;
    animation: insights-listing-ready 0.36s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.insights-listing-view.insights-listing-ready::before {
    visibility: hidden;
}

@keyframes insights-listing-loader {
    to { transform: rotate(360deg); }
}

@keyframes insights-listing-ready {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .insights-listing-view:not(.insights-listing-ready)::before {
        animation: none;
    }

    .insights-listing-view.insights-listing-ready {
        animation: none;
    }
}

/* @import must be the very first statement in a CSS file to be valid.
   This loads the ManageEngine/Zoho font CDN (ZohoPuvi, etc.) identically
   to how insights-style.css loaded it as a standalone file. */
@import url("https://www.manageengine.com/css/fonts.css");

/* ======================================================================
   insights.css — Global theme styles
   Merged from: common.css + insights-style.css + style.css + flash-message.css
   ====================================================================== */

/* === common.css === */
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block
}

.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: 600;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

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

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

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

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

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
    position: relative;
    bottom: 1px;
    display: inline-block;
    margin-right: 2px
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    font-size: 16px
}

button,
input,
optgroup,
select,
textarea {
    color: #111;
    font-weight: 400;
    line-height: 1.8;
    text-rendering: optimizeLegibility
}

.author-description .author-link,
.comment-author .fn,
.comments-title,
.error-404 .page-title,
.main-navigation,
.no-comments,
.not-found .page-title,
.page-description,
.pagination .nav-links,
.post-navigation .post-title,
.site-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1 {
    font-size: 2.25rem
}

p:empty {
    display: none;
}

@media only screen and (min-width:768px) {
    h1 {
        font-size: 2.8125rem
    }
}

.entry-title,
.error-404 .page-title,
.has-larger-font-size,
.not-found .page-title,
h2 {
    font-size: 1.6875em
}


.page-title,
.site-title {
    font-weight: 400
}

.page-description,
.page-links a {
    font-weight: 600
}

.site-description {
    letter-spacing: -.01em
}

.comments-title,
.entry-title,
.error-404 .page-title,
.not-found .page-title,
.post-navigation .post-title,
blockquote {
    hyphens: auto;
    word-break: break-word
}

@media only screen and (min-width:768px) {
    .entry-title {
        hyphens: none
    }
}

p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #434343;
}

cite,
dfn,
em,
i {
    font-style: italic
}

blockquote cite {
    font-size: .71111em;
    font-style: normal
}

pre {
    font-size: .88889em;
    font-family: "Courier 10 Pitch", Courier, monospace;
    line-height: 1.8;
    overflow: auto
}

code,
kbd,
tt,
var {
    font-size: .88889em;
    font-family: Menlo, monaco, Consolas, Lucida Console, monospace
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help
}

ins,
mark {
    background: #fff9c0;
    text-decoration: none
}

big {
    font-size: 125%
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:focus {
    text-decoration: none
}

html {
    box-sizing: border-box
}

::-moz-selection {
    background-color: #bfdcea
}

::selection {
    background-color: #bfdcea
}

*,
:after,
:before {
    box-sizing: inherit
}

a {
    color: #0073aa
}

a:active,
a:hover {
    color: #005177;
    outline: 0;
    text-decoration: none
}

a:focus {
    outline: thin;
    outline-style: dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 1rem 0
}

hr {
    background-color: #767676;
    border: 0;
    height: 1px
}

ol,
ul {
    padding-left: 1rem
}

ul {
    list-style: disc
}

ul ul {
    list-style-type: circle
}

ol {
    list-style: decimal
}

li {
    line-height: 1.8
}

li>ol,
li>ul {
    padding-left: 2rem
}

dt {
    font-weight: 700
}

dd {
    margin: 0 1rem 1rem
}

img {
    height: auto;
    max-width: 100%;
    position: relative
}

input[type=search]::-webkit-search-decoration {
    display: none
}

textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    resize: vertical
}

form p {
    margin: 1rem 0
}

.space-large {
    height: 50px;
}

.space-medium {
    height: 30px;
}

.space-small {
    height: 10px;
}

a {
    color: #111c95
}

a:active,
a:hover {
    color: #005177;
    outline: 0;
    text-decoration: none
}

a:focus {
    outline: thin dotted
}

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

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

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

.text-light {
    color: #fff !important;
}

.text-dark {
    color: #000 !important;
}

.round-corner {
    border-radius: 6px;
}

body {
    font-family: 'ZohoPuvi';
    font-weight: 300;
    font-size: 16px;
    background: #fff;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

:focus {
    outline: 0 !important
}

footer {
    position: relative
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.container-full {
    width: 100%;
}

footer {
    background: #292929;
    color: #fff;
    padding: 0;
}

footer>.container {
    padding: 20px 0
}

#colophon .site-info {
    text-align: center;
    color: #898c90;
    background: #222
}

.footer-para {
    font-size: 15px;
    line-height: 1.5;
    color: #e4e1e1
}

.copyright {
    color: #fff;
    font-size: 14px;
    margin: 20px 0;
}

.copyright a {
    color: #fff;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.rows {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: auto;
    grid-column-gap: 2%;
    grid-row-gap: 4%;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box
}

.rows-2 {
    grid-template-columns: 49% 49%
}

#contact .widget.widget_custom_html {
    margin: 0
}

section.no-results.not-found {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

.main-row:after {
    content: "";
    display: table;
    clear: both
}

.main-row {
    margin-left: -10px;
    margin-right: -10px
}



.alm-listing .alm-listing>li:after,
.alm-listing .alm-listing>li:before,
.row:after,
.row:before,
section:after,
section:before,
.container:before,
.container:after,
.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
    clear: both;
}

/* .row {
    margin-left: -15px;
    margin-right: -15px
} */

.cols-10,
.cols-12,
.cols-2,
.cols-3,
.cols-3-extend,
.cols-4,
.cols-5,
.cols-6,
.cols-7,
.cols-8,
.cols-9 {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px
}

.cols-12 {
    width: 100%
}

.cols-10 {
    width: 80%
}

.cols-9 {
    width: 75%
}

.cols-8 {
    width: 66.6%
}

.cols-7 {
    width: 58.4%
}

.cols-6 {
    width: 50%
}

.cols-5 {
    width: 41.6%
}

.cols-4 {
    width: 33.3%
}

.cols-3 {
    width: 25%
}

.cols-3-extend {
    width: 20%
}

.cols-2 {
    width: 16.6%
}

.cols-center {
    margin: 0 auto;
    float: none;
}

@media only screen and (max-width: 1025px) {
    .cols-md-12 {
        width: 100%;
    }
    .single-podcast-container .cols-md-12{
        padding: 0;
    }

    .cols-md-10 {
        width: 80%;
    }

    .cols-md-9 {
        width: 75%;
    }

    .cols-md-8 {
        width: 66.6%;
    }

    .cols-md-6 {
        width: 50%;
    }

    .cols-md-4 {
        width: 33.3%;
    }

    .cols-md-3 {
        width: 25%;
    }

    .cols-md-center {
        float: none;
        margin: 0 auto;
    }

    .cols-md-hidden {
        display: none;
    }

    .mob-only {
        display: none;
    }

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

@media only screen and (max-width: 650px) {
    .cols-sd-12 {
        width: 100%;
    }

    .cols-sd-9 {
        width: 75%;
    }

    .cols-sd-8 {
        width: 66.6%;
    }

    .cols-sd-6 {
        width: 50%;
    }

    .cols-sd-4 {
        width: 33.3%;
    }

    .cols-sd-3 {
        width: 25%;
    }

    .cols-sd-hidden {
        display: none;
    }
}

section {
    padding: 50px 0
}

/* slick */

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block
}

.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-dots li {
    list-style: none;
	    display: inline-block;
    margin: 0 5px;
	    line-height: normal;
}
ul.slick-dots {
    position: absolute;
    bottom: 10px;
    transform: translate(-50%, 0);
    left: 50%;
    margin: 0;
    padding: 0;
}
.slick-dots button {
    text-indent: -99999px;
    width: 12px;
    height: 12px;
    line-height: normal;
    border-radius: 100%;
    border: none;
    padding: 0;
    box-shadow: 0 0 10px #000000b3;
	    background: #fff;
	cursor: pointer;
}
.slick-dots li.slick-active button {
    background: #ffb70a;
}
.grid-full{
    display: block !important;
}

/* mobile promo */
.mobilepromo-section {
    background: #FFB800;
    color: #000;
    padding-bottom: 0;
    margin-top: 8px;
    padding-top: 40px;
    border-radius: 20px;
    padding: 50px 50px 0px;
}
.mobilepromo-section h2, .mobilepromo-section p {
    padding-left: 15px;
}
.mobilepromo-section h2 {
    font-weight: 600;
}
.mobilepromo-section p {
    color: #000;
    font-size: 1.3em;
}
.mobilepromo-section .text-center {
    text-align: center;
    margin: auto;
    margin-top: 10px;
    display: inline-block;
}
.mobilepromo-section a {
    display: block;
    margin-top: 15px;
}
.mobilepromo-section a:first-child {
    margin-top: 30px;
}
.mobilepromo-section .mob-banner-vis {
    display: none !important;
}
.breadcrumb::after {
    display: none !important;
}
@media only screen and (max-width: 1400px) {
    .container, .tag-container .container {
        width: 90%;
        max-width: none;
    }
}
@media only screen and (max-width: 650px) {
    .container, .tag-container .container {
        max-width: 90%;
    }
    #mobilepromo-section{
        padding:20px 0 40px 0;
    }
}
/* === insights-style.css === */

* {
    font-family: 'ZohoPuvi' !important;
}

body {
    font-weight: 300;
    font-size: 16px;
    background: #fff;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
hr{
    display: none;
}

/* ========== BROWSE MORE / RELATED ARTICLES SECTION ========== */

/* .single-related-section {
    padding-bottom: 0;
} */

.single-related-section .page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 50px;
}

/* Related articles grid container - floated layout to match WordPress */
.same-category-posts {
    margin-right: -10px;
    margin-left: -10px;
    width: 100%;

}

/* Individual article card - floated 3-column layout */
.cat-posts {
    width: 33.3%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}

/* Article thumbnail image */
.cat-posts img {
    display: block;
    height: 190px;
    object-fit: cover;
    width: 100%;
}

/* Article content wrapper */
.same-category-details h2 {
    font-size: 18px;
    margin-top: 13px;
    min-height: 65px;
}

/* Article title link styling */
.same-category-details h2 a {
    color: #000;
    text-decoration: none;
}

.same-category-details h2 a:hover {
    color: #E69701;
}

/* Read more link styling */
.readmore {
    color: #153caa;
    text-decoration: none;
    font-weight: 600;
}

.readmore:hover {
    color: #111c95;
}

span.arrow {
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    background: url(../../../../sites/default/files/static/arrow-right.png) no-repeat #153caa;
    background-size: 50%;
    background-position: center;
    border-radius: 100%;
    margin-right: 10px;
}

/* Discover more arrow section */
.more-arrow {
    display: block;
    padding: 90px 0;
    border-left: 1px solid #7f7b7b;
    text-decoration: none;
    color: #000;

}

.more-arrow span {
    display: block;
    margin: 10px 0;
    font-size: 1.4em;
    font-weight: 500;
    color: #000;
}

.more-arrow span.full-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.more-arrow:hover span {
    color: #153caa;
}

/* .same-category-posts{
    margin: 50px;
    display: flex;
    justify-content: space-between;
} */

/* Responsive: Tablet */
@media only screen and (max-width: 768px) {
    .cat-posts {
        width: 50%;
    }

    .same-category-posts {
        margin-right: -10px;
        margin-left: -10px;
    }

    .same-category-details h2 {
        min-height: auto;
    }

}

/* Responsive: Mobile */
@media only screen and (max-width: 640px) {
    .cat-posts {
        width: 100%;
        margin-bottom: 50px;
    }

    .same-category-details h2 {
        min-height: auto;
    }

    .more-arrow {
        padding: 50px 0;
        border-left: none;
    }
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 30px;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.me-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-brand,
.custom-logo-link {
    display: inline-block;
    line-height: normal;
    vertical-align: baseline;
    font-size: 1.5em;
    font-weight: 400;
    color: #231f20 !important;
    text-decoration: none;
}

/* MENU */
.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hamburger {
    display: none;
}

.main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

ul {
    margin-inline-start: 0;
}

.menu-item ul {
    display: none;
    position: absolute;
    background: white;
}

.menu-item:hover>ul {
    display: block;
}

.menu-item:hover>a {
    color: #094de1;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 0.937em;
}

.logo-brand:before {
    content: "|";
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: text-top;
}

/* DROPDOWN */

.dropdown {
    position: absolute;
    text-align: left;
    width: 270px;
    background: #fff;
    padding: 0;
    z-index: 9999;
    display: none;
    padding: 20px 0;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 35%);
    margin-top: 25px;
}

.menu-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.menu-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
}

.has-dropdown>a::after {
    content: "";
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    position: relative;
    top: 4px;
    margin-left: 10px;
}

.menu-link:hover {
    color: #007bff;
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.dropdown a:hover {
    background: #1f3a93;
    /* dark blue */
    color: white;
}

.dropdown a.active {
    background: #1f3a93;
    color: white;
}

/* RIGHT SIDE */
.right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
}

.subscribe {
    text-transform: uppercase;
}

.subscribe,
.media-cta a,.media-cta span,
.author-see-more-btn {
    background: #ffc300;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 23px 10px 23px;
    font-weight: 500;
    color: #0e143d;
    font-size: 16px;
    line-height: normal;
    margin-top: 2px;
    border: none;
    cursor: pointer;
}

.subscribe:hover,
.media-cta a:hover,.media-cta span:hover,
.author-see-more-btn:hover {
    background: #404040;
    color: #fff;
}

/* footer */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer p {
    color: white;
}

/* About us */
/* .page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    color: #fff;
} */

/* Newsletter section styles */
/* newsletter section */
#newsletter-section {
    background: url(../../../../sites/default/files/static/subscribe-bg.png), linear-gradient(45deg, #2d52c8, #1b3398);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
}

.newsletter-section {
    padding: 70px 70px;
    background: transparent linear-gradient(91deg, rgb(0 88 85 / 92%) 0%, rgb(1 39 38 / 76%) 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    position: relative;
}

.newsletter-footer-box {
    color: #fff;
    padding: 40px 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-footer-box.videocastscr {
    background: radial-gradient(#3168d9, #111217);
    background-size: cover;
    background-position: center;
}

.videocastscr .newsletter-back {
    width: 90%;
    margin-bottom: 0;
}

.newsltr-opn {
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    color: #14203a;
    background-color: #fff;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    line-height: 1.9;
}

.newsltr-opn:hover {
    background: #c5c5c5;
}

.videocastscr .newsltr-opn {
    display: block;
}

.newsletter-front>img {
    width: 20%;
    min-width: 150px;
    margin: 0 auto 20px auto;
    display: block;
    padding-right: 30px;
}

.newsletter-front h2 {
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    color: white;
}

.videocastscr.newsletter-footer-box {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 700px;
    height: auto;
    border-radius: 5px;
    padding: 60px;
    z-index: 999999;
}

.videocastscr .newsletter-front h2 {
    font-size: 1.6em !important;
    padding: 0;
    margin-top: 0;
}

.videocastscr input#emailNL,
.videocastscr select {
    width: 45%;
}

.videocastscr select#country_state,
.videocastscr select#ukcountry_region {
    margin-left: 48%;
}

/* === Gated Videocast Thumbnail Overlay === */
.videocast-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    background: #000;
}

.videocast-gate-overlay .gate-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.videocast-gate-overlay .gate-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.videocast-gate-overlay:hover .gate-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.gate-subscribe-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 30px;
    text-align: center;
    z-index: 11;
}
.gate-subscribe-section p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}
.gate-subscribe-section .dwn-priv {
    color: #ccc;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.gate-subscribe-section .dwn-priv a {
    color: #8bb4f0;
}
.gate-subscribe-section .btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}
.gate-subscribe-section .btn-submits button:hover {
    background: #fff;
}

.videocast-in-wrap-1 {
    position: relative;
}

.newsletter-back {
    width: 70%;
    margin: 35px auto;
    text-align: center;
}

input#emailNL,
select {
    border: 1px solid #102472;
    background: #13349e;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
    color: #fff;
}

input#emailNL::placeholder {
    color: #fff;
}

select#zccountry,
select#country_state,
select#ukcountry_region {
    background: url(../../../../sites/default/files/static/down-arrow.png) #13349e no-repeat;
    background-size: 18px;
    background-position: 95% center;
}

.dwn-priv {
    margin: 25px 0 25px 0;
    font-size: 14px;
}

.dwn-priv a {
    color: #fff;
    text-decoration: underline;
}

.dwn-priv a:hover {
    color: #ffc300;
}

.btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}

.btn-submits button:hover {
    background: #fff;
}

.overlay-newsletter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 59%);
    z-index: 99999;
    display: none;
}

.email-error {
    color: red !important;
    font-size: 0.9rem !important;
}

.clearfix {
    clear: both;
}

/* ============================================================
   FEATURED SECTION STYLES (Featured Posts & Sidebar)
   Reference: style.css lines 1480-1700
   ============================================================ */

/* --- FEATURED SECTION MAIN CONTAINER --- */
#spotlight {
    padding: 0;
}

/* --- PAGE TITLE (Featured Heading) --- */
.page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #000;
}

/* --- FEATURED POST CATEGORY LINK --- */
.p-heading h3 a {
    color: #1e499a;
    font-weight: 300;
}

.p-heading a:hover {
    color: #111c95;
}

.p-heading a {
    color: #000;
}

.p-heading h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em;
}

/* --- FEATURED POST TITLE (h2) --- */
.p-heading h2 {
    font-size: 2em;
    font-weight: 600;
    margin: 8px 0 0 0;
}

/* --- FEATURED POST EXCERPT TEXT --- */
p.descr {
    margin: 0;
}

.descr:after {
    content: "...";
    margin-left: -2px;
}

/* --- FEATURED POST AUTHOR SECTION --- */
.author-dp,
.slick-author img.avatar,
.insights-author img.avatar,
.auth-spn img.avatar,
.alm-listing .entry-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    position: relative;
    bottom: 1px;
}

span.author-name {
    margin-bottom: 6px;
}

.author-in {
    display: inline-block;
    vertical-align: middle;
}

.author-name a {
    color: #000;
    font-size: 1em;
    font-weight: 400;
    text-transform: capitalize;
}

.slick-author {
    margin-top: 15px;
}

.slick-author p {
    margin: 0;
    position: relative;
}

/* --- FEATURED POST - FULL WIDTH (First Post) --- */
#content-wide {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e1e1;
}

.imgwide .imgdiv img {
    height: 275px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}

/* --- GRID LAYOUT FOR 3 REMAINING POSTS (Half Content) --- */
#half-content {
    padding-bottom: 0px;
}

#half-content .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

#half-content .post {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

#half-content .imgdiv img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

#half-content .p-heading h3 {
    margin-top: 12px;
    margin-bottom: 10px;
}

#half-content .p-heading h2 {
    font-size: 1.1em;
    line-height: 1.4;
    min-height: 40px;
}

#half-content .single-post-author span {
    font-size: 0.875em;
}

/* --- SIDEBAR LAYOUT --- */
#spotlight .container {
    border-bottom: 1px solid #e3e1e1;
}

/* Article page */

/* ============================================================================
   ARTICLE PAGE LAYOUT & STYLING
   ============================================================================ */

/* Breadcrumb Navigation */
.brdcrm {
    background: #f5f5f5;
    padding: 15px 0;
    overflow: hidden;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb a {
    color: #094de1;
    text-decoration: none;
    font-size: 0.95em;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Header Section */
.page-header {
    /* background: #fff; */
    padding: 40px 0;
    /* border-bottom: 1px solid #e3e1e1; */
}

.header-banner {
    display: flex;
    /* gap: 30px; */
    align-items: flex-start;
    position: relative;
}

.post-feature-img {
    flex: 1;
    width: 100%;
}

.post-feature-img img {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}


/* .header-post {
flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
} */
.header-post {
    color: #fff;
    background: #163caa;
    width: 400px;
    position: absolute;
    bottom: 0;
    right: 5px;
    padding: 20px;
}

.header-post:before {
    content: "";
    background: #094de1;
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    top: -5px;
    left: 0;
}

.header-post h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: #fff;
}

.header-post a.single-page-tit {
    color: #fff !important;
    font-weight: 500;
    font-size: 1.1em;
}

.header-post a.single-page-tit:hover {
    color: #ffc300;
}

/* .single-post-title {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #000;
} */
.single-post-title {
    font-size: 2.2em;
    line-height: 1.2;
    color: black;
}

.single-post-title-article {
    color: white;
}


/* Author Information */
.post-author-det {
    /* display: flex;
    gap: 15px;
    align-items: center; */
    margin-top: 30px;
}

.author-dp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author {
    margin: 0;
    font-size: 0.95em;
}

.post-author-name {
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 3px;
}

.post-author-det img.author-dp {
    width: 50px;
    height: auto;
    border-radius: 50%;
    float: left;
    display: block;
    margin-top: 5px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.post-author-name a {
    font-weight: 600;
}

.post-author-name-art a {
    color: #fff;
}

.post-author-name a:hover {
    text-decoration: underline;
}

.post-author span {
    display: block;
    color: #666;
    font-size: 0.9em;
}

.header-post .post-author span {
    display: block;
    color: #fff;
}


/* Content Area */
#primary.content-area {
    /* background: #fff; */
    padding: 10px 0;
}

.single-post-container {
    width: 100%;
    /* overflow: hidden; */
}

.single-post-container .row {
    display: flex;

}

/* Main Content */
#main.site-main {
    flex: 1;
}

#main {
    padding: 0;
}

#article-content {
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
}

#article-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

#article-content h1,
#article-content h2,
#article-content h3,
#article-content h4,
#article-content h5,
#article-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}
body.darktheme #article-content h3{
    color: white;
}


#article-content h1 {
    font-size: 1.8em;
}

#article-content h2 {
    font-size: 1.6em;
}

#article-content h3 {
    font-size: 1.4em;
}

#article-content h4 {
    font-size: 1.2em;
}

#article-content h5 {
    font-size: 1.1em;
}

#article-content h6 {
    font-size: 1em;
}

#article-content ul,
#article-content ol {
    margin: 20px 0;
    padding-left: 30px;
    line-height: 1.8;
}

#article-content li {
    margin-bottom: 10px;
}

#article-content a {
    color: #094de1;
    text-decoration: none;
}

#article-content a:hover {
    text-decoration: underline;
}

/* Publication Date */
.pub-date {
    color: #999;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 30px;
}

/* Reading Time */
/* .reading-time-text {
    color: #000;
    font-style: normal;
} */

/* Tags */
/* .post-tags {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
} */
.post-tags {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-left: 0;
    list-style-type: none;
}

.post-tags li {
    display: inline-block;
}

.post-tags li a {
    color: #000;
    display: inline-block;
    border: 1px solid #000;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-size: 14px;
    background: #fff;
}

.post-tags li a:hover {
    color: #111c95;
    border-color: #111c95;
}

/* ============================================================================
   TABLE OF CONTENTS AND STICKY SIDEBAR
   ============================================================================ */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sticky-sidebar-art {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding-right: 10px;
    z-index: 9;
    background: #fff;
}

#ez-toc-container {
    border: none;
    padding: 0;
}

#ez-toc-container .ez-toc-list {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 5px;
}

#ez-toc-container .ez-toc-title {

    display: block !important;
    font-weight: 600;
    color: #000 !important;
    font-size: 1.2em;
}

.ez-toc-title-container {
    display: table;
    width: 100%;
}

#ez-toc-container .ez-toc-list {
    list-style: none;
    padding: 0;
}

#ez-toc-container .ez-toc-list li {
    margin-bottom: 12px;
}

#ez-toc-container .ez-toc-list li a {
    display: block;
    position: relative;
    color: #838383 !important;
    padding-left: 10px;
    font-weight: 300;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.3s ease;
}

#ez-toc-container .ez-toc-list li a:hover,
#ez-toc-container .ez-toc-list li.active-tab a {
    color: #000 !important;
    text-decoration: none !important;
}

#ez-toc-container .ez-toc-list li a:hover:before,
#ez-toc-container .ez-toc-list li.active-tab a:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 5px;
    left: 0;
    background: #094de1;
}

/* ============================================================================
   AUDIO PLAYER & TTS
   ============================================================================ */

/* .tts-wrap {
    background: #f9f9f9;
    border: 1px solid #e3e1e1;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.tts-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tts-widget p {
    margin: 0;
    font-weight: 500;
    color: #000;
    font-size: 0.95em;
}

#ttsaudio {
    flex: 1;
    min-width: 300px;
}

.tts-widget.scrolled-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
} */

/* ============================================================================
   ARTICLE ACTIONS
   ============================================================================ */

.article-actions {
    /* margin: 40px 0; */
    padding: 20px 0;
    border-top: none;
    border-bottom: none;
}

.videocast-actions {
    margin: 40px 0 20px;
}

/* Like button styling is handled by me_insights_like module */
/* See: web/modules/custom/me_insights_like/css/like-button.css */

/* ============================================================================
   AUTHOR BOX
   ============================================================================ */
/* .author-of-the-post-box {
    width: 75%;
    margin: 0 auto;
} */
.media-author-box.author-of-the-post-box {
    width: 100%;
}

.auth-photo {
    position: relative;
}

.author-bg {
    width: 100%;
    height: 100%;
    left: -7px;
    top: -6px;
    position: absolute;
    background: #163caa;
}

.author-bg:before {
    content: "";
    background: linear-gradient(to bottom, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    top: -5px;
    left: -5px;
}

.author-bg:after {
    content: "";
    background: linear-gradient(to right, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    top: -5px;
    right: 0;
}

.author-pic {
    background: #fff;
    position: relative;
}

.auth-photo img {
    width: 100%;
}

.single-post .auth-name {
    margin-top: 30px;
}

.auth-name {
    font-size: 1.5em;
    margin: 0;
}

.profile-link {
    display: inline-block;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}

.auth-details {
    margin: 0;
}

/* .author-of-the-post-box {
    background: #f9f9f9;
    border: 1px solid #e3e1e1;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.auth-photo {
    position: relative;
}

.author-bg {
    background: linear-gradient(135deg, #094de1, #2566ed);
    height: 80px;
    border-radius: 8px 8px 0 0;
}

.author-pic {
    margin-top: -40px;
    text-align: center;
}

.author-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}

.auth-name {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 600;
}

.auth-name a {
    color: #094de1;
    text-decoration: none;
}

.auth-name a:hover {
    text-decoration: underline;
}

.auth-details {
    margin: 0;
    color: #666;
    font-size: 0.95em;
} */

/* ============================================================================
   RELATED ARTICLES SECTION
   ============================================================================ */

.single-related-section {
    /* background: #f9f9f9; */
    /* padding: 50px 0; */
    border-top: 1px solid #e3e1e1;
    padding: 20px 0;
}

.single-related-section .page-title {
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
}

.rel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-arrow {
    color: #094de1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex-direction: column;
    padding-left: 30px;
}

.more-arrow:hover {
    gap: 15px;
}

.arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* Podcasts */
.media-highlights .fixed-sidebar {
    background: #000103;
    color: #fff;
    padding: 25px;
    border-top: 5px solid #1b61ff;
}

#listn-podcast-section {
    padding: 12px 0;
}

.media-highlights h3.widget-title {
    margin-top: 0;
    color: #fff;
    margin-bottom: 10px;
}

h3.widget-title {
    font-size: 1.3em;
    font-weight: 500;
    margin-top: 40px;
}

.media-highlights ul {
    padding-left: 0;
    list-style: none;
}

#podcast-acord li {
    cursor: pointer;
}

.media-highlights ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.media-highlights ul li strong {
    display: inline-block;
    color: #1b61ff;
    position: absolute;
    left: 0px;
}


.media-highlights {
    border-left: 1px solid #cacaca;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* --- Reset Drupal field wrapper classes inside highlights sidebar --- */
.media-highlights .fixed-sidebar .field,
.media-highlights .fixed-sidebar .field__item,
.media-highlights .fixed-sidebar .field--type-text-long,
.media-highlights .fixed-sidebar .field--name-field-podcast-highlights,
.media-highlights .fixed-sidebar .text-content,
.media-highlights .fixed-sidebar .clearfix.field {
    all: unset;
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Also reset for player section field wrappers */
.page-header-videocast .field,
.page-header-videocast .field__item,
.page-header-videocast .field--type-text-long,
.page-header-videocast .field--type-link,
.page-header-videocast .field--name-field-podcast-player,
.page-header-videocast .field--name-field-featured-image-podcast {
    all: unset;
    display: block;
    margin: 0;
    padding: 0;
}

/* --- VIDEO PLAYER WRAPPER --- */
.page-header-videocast .container {

    padding: 0 15px;
    overflow: hidden;
}

.videocast-in-wrap-1 {
    width: 100%;
    position: relative;
}

.videocast-in-wrap-1 p {
    width: 100%;
    margin: 0;
}

.videocast-acord p {
    color: #ccffff !important;
}

.videocast-in-wrap-1 iframe {
    width: 100%;
    max-height: 750px;
    height: calc(100vh - 250px);
    min-height: 400px;
    display: block;
}

.featured-image-container {
    margin-top: 20px;
}

.featured-image-container img {
    width: 100%;
    border-radius: 6px;
}

/* ============================================================================
   THINKING TECH PAGE STYLING
   Styling for thinking-tech content type
   Shares layout structure with videocasts
   ============================================================================ */

/* thinking-tech single post layout */
.thinking-tech-single {
    background: #fff;
    padding: 40px 0;
}

/* thinking-tech post title styling */
.thinking-tech-single .single-post-title {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2;
    margin: 20px 0;
    color: #000;
}

/* thinking-tech video player container */
/* .thinking-tech-single .videocast-in-wrap-1 iframe {
    width: 100% !important;
    height: calc(100vh - 200px) !important;
    min-height: 400px;
    display: block;
} */


/* thinking-tech post actions (like button) */
.thinking-tech-actions {
    margin: 20px 0 0;
    padding: 0;
}

/* thinking-tech author section */
.thinking-tech-single .auth-name {
    font-size: 1.5em;
    margin: 30px 0 10px 0;
    font-weight: 600;
}

.thinking-tech-single .profile-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.thinking-tech-single .profile-link:hover {
    color: #094de1;
    text-decoration: underline;
}

/* Tech in a minute */
.video-opt {
    position: absolute;
    bottom: 18px;
    left: -72px;
}

.video-opt .flag a {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 6px; */
    padding: 6px 12px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid #ddd !important;
    border-color: #999;
    background-color: #eeeeee78;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* ============================================================================
   NEWSLETTER SECTION
   ============================================================================ */

.newsletter-section {
    padding: 40px 0;
    background: #fff;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* ── Breadcrumb ── */
.breadcrumb-wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 0px 14px;
    box-sizing: border-box;
}

.breadcrumb-wrapper .me-container {
    display: block;
}

.breadcrumb-wrapper .block {
    margin: 0;
    padding: 0;
}

.breadcrumb-wrapper nav {
    margin: 0;
    padding: 0;
}

/* Olivero breadcrumb overrides */
.breadcrumb-wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    min-height: auto;
}

.breadcrumb-wrapper .breadcrumb__list,
.breadcrumb-wrapper ol,
.breadcrumb-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 15px;
    color: #333;
}

.breadcrumb-wrapper .breadcrumb__item,
.breadcrumb-wrapper li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

/* Kill Olivero's default ::before and ::after separators */
.breadcrumb-wrapper .breadcrumb__item::before,
.breadcrumb-wrapper .breadcrumb__item::after,
.breadcrumb-wrapper li::before,
.breadcrumb-wrapper li::after {
    content: none !important;
    display: none !important;
}

/* "/" separator rendered from template */
.breadcrumb-wrapper .breadcrumb__separator {
    margin: 0 8px;
    color: #666;
    font-size: 15px;
}

.breadcrumb-wrapper .breadcrumb__link,
.breadcrumb-wrapper a {
    color: #1a237e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300 !important;
}

.breadcrumb-wrapper .breadcrumb__link:hover,
.breadcrumb-wrapper a:hover {
    text-decoration: none !important;
}

/* Last breadcrumb__item: non-clickable, normal weight, dark */
.breadcrumb-wrapper .breadcrumb__item:last-child .breadcrumb__link,
.breadcrumb-wrapper .breadcrumb__item:last-child a,
.breadcrumb-wrapper .breadcrumb__item:last-child {
    color: #1a1a1a;
    font-weight: 300 !important;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
}


/* ── Page spacing: content area ── */
/* main {
    padding: 0px 0px 40px;
} */

/* .container {
    padding: 0px;
} */

main .region--content {
    max-width: 100%;
}

/* ── Kill Olivero's CSS grid on .grid-full — use simple block layout ── */
/* This prevents the multi-column grid tracks from breaking our layout    */
.grid-full,
main .grid-full,
main .layout--pass--content-medium,
main .layout--pass--content-medium .grid-full {
    display: block !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
    grid-column-gap: unset !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── Global 1400px max-width container for header, content, footer ── */
.header .me-container,
.header>.me-container {
    /* max-width: 1400px;
    margin-left: auto;
    margin-right: auto; */
    /* padding: 0; */
}

.header {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    box-shadow: none !important;
}

main {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media only screen and (max-width: 1400px) {
    .header .me-container.container {
        width: 90%;
        max-width: none;
    }
}

/* Minimal-content pages (404, 403, user profile) — enforce a sensible
   page height so the footer doesn't sit right under a few lines of
   content. Shared globally since these pages don't all load the same
   template's inline styles. */
main.main--404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer.footer,
.footer {
    box-sizing: border-box;
}

/* Ensure content regions fill available width */
.block-system-main-block,
.region--content,
.layout--pass--content-medium {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Remove Olivero page title spacing */
/* .page-title {
    margin: 0 0 16px 0;
} */

.block-system-main-block>.block__content {
    margin: 0;
    padding: 0;
}

/* ── Hide contextual links (pencil icon) ── */
.contextual-region .contextual,
.contextual-region>.contextual {
    display: none !important;
}

/* ── Remove Olivero default block hover outline ── */
.block:hover,
.block:focus-within,
.contextual-region:hover,
.contextual-region:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

.block::after,
.block::before {
    display: none !important;
}

/* HEADER RESPONSIVE */
@media only screen and (max-width: 1280px) {
    .header {
        padding: 20px 0;
    }
}

@media only screen and (max-width: 1024px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .me-logo {
        width: 140px;
        height: auto;
    }

    .logo-brand {
        font-size: 1.2em;
    }

    /* Hide menu */
    .menu {
        display: block;
        position: fixed;
        top: calc(var(--me-banner-height, 0px) + 68px);
        right: 10px;
        width: 340px;
        /* height: calc(100vh - 60px); */
        background: rgba(31, 63, 163, 0.98);
        padding: 12px;
        z-index: 99999;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border: 4px solid #094de1;
    }

    /* Right section */
    .right {
        gap: 10px;
        display: none;
    }

    .subscribe {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Hamburger */
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        position: relative;
        margin-left: auto;
        width: 42px;
        height: 42px;
        line-height: 42px;
        background: none;
        border: none;
        padding: 0;
        z-index: 100000;
    }

    .hamburger::before {
        content: ' ';
        display: block;
        font-size: 30px;
        line-height: 42px;
        color: #000;
    }

    .hamburger.active::before {
        content: ' ';
        font-size: 32px;
    }

    .menu.active {
        transform: scaleY(1);
    }

    .main-menu {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item>a {
        color: white !important;
        font-size: 14px;
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 8px 0;
    }


    /* Base dropdown */
    .dropdown {
        position: static !important;
        display: block !important;
        width: 100%;
        margin-top: 0;
        color: white;
        background: transparent;
        box-shadow: none;
        padding: 0;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s ease, max-height 0.4s ease, padding 0.3s ease;
        height: auto;
    }

    .menu-item ul {
        background: transparent;
        position: static;
    }

    .menu-item:hover>ul,
    .menu-item:hover>.dropdown {
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: scaleY(0) !important;
        max-height: 0 !important;
    }

    .menu-item.open>.dropdown,
    .menu-item.open>ul {
        transform: scaleY(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 600px !important;
        padding: 10px 0;
        overflow: visible;
    }

    .dropdown a {
        color: #e0e6ff;
        font-size: 14px;
        padding: 10px 0 10px 15px;
    }

    .has-dropdown>a::after {
        transition: transform 0.3s ease;
        border: solid white;
        border-width: 0 2px 2px 0;
    }

    .menu-item.open>a::after {
        transform: rotate(225deg);
    }

    /*  newsletter media query */
    .newsletter-footer-box {
        padding: 10px 25px;
    }

    .newsletter-back {
        width: 90%;
    }

    select#country_state,
    select#ukcountry_region {
        width: 100%;
    }

    .video-info {
        position: static;
    }

    /* mobile banner */
    .mobilepromo-section .mob-banner-vis {
        display: block !important;
        margin-top: 20px;
    }

    .mobilepromo-section .web-banner-vis {
        display: none !important;
    }

    .mobilepromo-section br {
        display: none;
    }

    .more-arrow {
        display: none;
    }

    .same-category-posts {
        margin: 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .tech-cta {
        display: none;
    }
}

/* Tablets - max-width: 820px */
@media only screen and (max-width: 992px) {
    .newsletter-footer-box {
        padding: 15px 20px;
    }

    .newsletter-back {
        width: 95%;
        margin: 25px auto;
    }

    input#emailNL,
    select {
        width: 100%;
        margin: 5px 0;
        height: 45px;
    }

    .newsltr-opn {
        width: 25px;
        height: 25px;
        font-size: 1.1em;
    }
}


/* Mobile - max-width: 650px */
@media only screen and (max-width: 650px) {
    section {
        padding: 20px 0!important;
    }

    #newsletter-section {
        background-size: cover;
        background-position: center;
    }

    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-footer-box {
        padding: 20px;
        color: #fff;
    }

    .newsletter-back {
        width: 100%;
        margin: 20px 0;
    }

    .newsletter-front>img {
        width: 30%;
        min-width: 100px;
        margin: 0 auto 15px;
        padding-right: 0;
    }

    .newsletter-front h2 {
        font-size: 1.5em;
        line-height: 1.2;
    }

    input#emailNL,
    select {
        width: 100%;
        margin: 8px 0;
        padding: 10px 12px;
        height: 45px;
    }

    select#zccountry,
    select#country_state,
    select#ukcountry_region {
        width: 100%;
        margin: 8px 0 !important;
    }

    .dwn-priv {
        margin: 15px 0;
        font-size: 12px;
    }

    .btn-submits button {
        padding: 10px 40px;
        font-size: 14px;
        width: 100%;
    }

    .videocastscr.newsletter-footer-box {
        position: fixed;
        width: 90%;
        padding: 30px;
    }

    .videocastscr input#emailNL,
    .videocastscr select {
        width: 100%;
    }

    .newsltr-opn {
        font-size: 1.2em;
        width: 30px;
        height: 30px;
    }

    .video-info {
        display: none;
    }

    .cat-posts {
        width: 100%;
        margin-bottom: 0px;
        clear: both;
        padding: 0;
    }

    .post-feature-img img {
        width: 100%;
        height: 170px;
    }

    .header-post {
        width: 100%;
        position: relative;
        padding: 25px 25px;
        right: 0;
    }

    .mobilepromo-section {
        padding: 50px 0 0;
    }

    .video-podcasts {
        min-height: 200px !important;
    }
    .single-podcast-container #listn-podcast-section {
        padding: 0px 0;
    }
}

@media (min-height: 700px) {
    .video-opt {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header-banner {
        flex-direction: column;
    }

    .single-post-title {
        font-size: 1.6em;
    }

    .single-post-container .row {
        flex-direction: column;
        gap: 20px;
    }

    .sticky-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 30px;
    }

    #ez-toc-container .ez-toc-list {
        max-height: none;
    }

    .tts-widget.scrolled-widget {
        position: static;
        max-width: 100%;
    }

    .page-header-videocast,
    .videocasts-single,
    #primary {
        padding: 0 0 40px 0 !important;
    }

    .video-info {
        position: static;
        width: 100%;
        text-align: center;
    }

    .videocast-in-wrap-1 iframe {
        height: auto;
    }

}

@media (max-width: 480px) {
    .post-author-det {
        flex-wrap: wrap;
    }

    .single-post-title {
        font-size: 1.3em;
    }

    #article-content {
        font-size: 1em;
    }

    /* .video-podcasts{
        min-height: 200px !important;
    } */
}

/* ============================================
   MAGAZINE PAGE STYLING
   ============================================ */
.cover-popup {
    display: none !important;
}

#pdf-wrap-container {
    width: 100%;
    max-width: 1400px;
    margin: 0;
    padding: 50px;
    background: #f6f6f6;
}

#pdf-container {
    width: 100%;
    height: 80vh;
    overflow: scroll;
}


#pdf-iframe {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    height: 90vh;
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#pdf-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.page {
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page canvas {
    width: 100%;
    height: auto;
}

#subscription-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.magazine-title {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 30px 0;
    text-align: center;
    padding: 20px;
    background: #244394;
}

.magazine-form form {
    width: 80%;
    margin: auto;
    text-align: center;
}

.close-popup {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 23px;
    border-radius: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #fff;
}

.close-popup:hover {
    background: #fff;
    color: #244394;
}

#pdfsection {
    position: relative;
}

#subscription-popup .form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c9c6c6;
    border-radius: 4px;
    box-shadow: none;
    position: relative;
    margin-bottom: 32px;
    transition: border ease 1.5s;
    -webkit-transition: border ease 1.5s;
    -moz-transition: border ease 1.5s;
}

.form-control .label {
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: 30px;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.4s;
    font-size: 16px;
    z-index: 8;
    opacity: 0.7;
}

.form-control input#emailNL,
.form-control input#mag_emailNL,
.form-control select {
    width: 100%;
    outline: none;
    border: none;
    background: none !important;
    height: 100%;
    padding-left: 20px;
    font-size: 1.2em;
    position: relative;
    z-index: 9;
    opacity: 1;
    color: #444;
    resize: none;
    font-family: "ZohoPuvi";
}

.form-control.active-row {
    border: 1px solid #fff;
}

.form-control.active-row select {
    opacity: 1;
    color: #444;
}

.active-row.form-control::before {
    border-top-color: #3754ff;
    border-right-color: #3754ff;
    transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
    width: 100%;
    height: 100%;
}

.active-row.form-control::after {
    border-bottom-color: #3754ff;
    border-left-color: #3754ff;
    transition: border-color 0s ease-out 0.3s, width 0.15s ease-out 0.3s,
        height 0.15s ease-out 0.45s;
    width: 100%;
    height: 100%;
}

.form-control.active-row .label {
    top: 0;
    background: #fff;
    padding: 0 6px;
    left: 15px;
    font-size: 1em;
    opacity: 1;
}

.popup .form-control.active-row .label {
    background: #fff;
}

#subscription-popup .uscountry.form-control.active-row .label {
    z-index: 99;
}

#subscription-popup .form_dropdown {
    margin-bottom: 15px;
}

select#zccountry,
select#mag_zccountry {
    padding: 0 !important;
    padding-left: 25px !important;
}

.form-control input#emailNL,
.form-control input#mag_emailNL,
.form-control select {
    width: 100%;
    outline: none;
    border: none;
    background: none !important;
    height: 100%;
    padding-left: 20px;
    font-size: 1.2em;
    position: relative;
    z-index: 9;
    opacity: 1;
    color: #444;
    resize: none;
    font-family: "ZohoPuvi";
}

#subscription-popup .form-control.btn-submits {
    border: none;
}

.popup-content p.email-error {
    top: 7px;
}

.popup-content form {
    width: 80%;
    padding-bottom: 20px;
    margin: auto;
    text-align: center;
}

.popup-content .btn-submits button {
    margin-top: 20px;
}

.popup-content .btn-submits button:hover {
    background: #ffd95e;
}

.popup-content #meGDPRMessage label {
    font-size: 15px;
    margin-bottom: 20px;
}

.popup-content #meGDPRMessage label a {
    color: #111c95;
}

.fullscreenoverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999999;
    background: #ffffff;
}

.fullscreenpdf {
    width: 100%;
    height: 100%;
}

.fullscreenpdf iframe {
    width: 100%;
    height: 100%;
}

span.fulscr_close {
    cursor: pointer;
    display: inline-block;
    background: #ffc300;
    color: #000;
    font-weight: 600;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    bottom: 50px;
    z-index: 9999999999;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
}

span.fulscr_close:hover {
    background: #fff;
}

#fullscreen {
    display: inline-block;
    cursor: pointer;
    background: #323639;
    right: 18px;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 100%;
    position: absolute;
    bottom: 25px;
}

#fullscreen:hover {
    background: #454a4d;
}

/* ── Homepage Sidebar (WP-matching) ── */
.featured-section-home__sidebar.home-widget {
    border-left: 1px solid #e3e1e1;
    padding-left: 30px;
    padding-top: 0;
}

.home-search input#homepage-search-input {
    width: 90%;
    padding: 5px 15px;
    font-size: 1em;
    border: 1px solid #e3e1e1 !important;
    border-radius: 25px;
    background: url(../../../../sites/default/files/static/search.png) no-repeat #fff;
    background-size: 20px;
    background-position: 95% center;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    height: 34px;
    box-sizing: border-box;
}

.home-search input#homepage-search-input:focus {
    border: 1px solid #111c95 !important;
    outline: none !important;
    box-shadow: none !important;
}

.home-search input#homepage-search-input::placeholder {
    color: #aaa;
}

.home-search .home-search-plain__btn {
    display: none;
}

.featured-section-home__sidebar .home-tags {
    margin-top: 0;
}

.featured-section-home__sidebar a.tag-cloud-link {
    color: #494949;
    display: inline-block;
    border: 1px solid #e3e1e1;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-size: 0.84rem;
    text-decoration: none;
    background: transparent;
}

.featured-section-home__sidebar a.tag-cloud-link:hover {
    color: #111c95;
    border-color: #111c95;
    background: transparent;
}

.featured-section-home__sidebar .home-trending-post {
    background: #f1f4ff;
    padding: 20px;
    border-top: 5px solid #012b6e;
    margin-top: 30px;
}

.featured-section-home__sidebar .home-trending-post h3.widget-title {
    margin-top: 5px;
}

.featured-section-home__sidebar .trending-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.featured-section-home__sidebar .trending-posts li {
    margin-bottom: 0;
}

.featured-section-home__sidebar .trending-posts a {
    color: #000;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.featured-section-home__sidebar .trending-posts a:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #111c95;
    position: absolute;
    top: 7px;
    left: 2px;
}

.featured-section-home__sidebar .trending-posts a:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #111c95;
    position: absolute;
    top: 5px;
    left: 0px;
}

.featured-section-home__sidebar .trending-posts a:hover {
    color: #111c95;
}

.featured-section-home__sidebar .trending-posts h3 {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
    .featured-section-home__sidebar.home-widget {
        border-left: none;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1450px) {
    /* #pdf-wrap-container { max-width: 90%; }
    #pdf-iframe { max-width: 90%; } */
}

@media only screen and (max-width: 1025px) {
    #pdf-wrap-container {
        width: 100%;
    }

    #fullscreen {
        display: none;
    }
}

/* ── Tech in a Minute (WP-matching) ── */
#tech-sec {
    padding-bottom: 0;
}

#tech-sec .container {
    padding-bottom: 60px;
    border-bottom: 1px solid #e3e1e1;
}

.home-tech {
    display: block;
    color: #000;
    text-decoration: none;
}

.home-tech:hover .home-tech h3{
    color: #111c95;
}

.home-tech img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center;
    display: block;
    height: auto;
}

.home-tech h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 10px 0 0;
    line-height: 1.4;
}

.dis-cta {
    display: block;
    text-align: center;
    color: #000;
    font-size: 1.25em;
    text-decoration: none;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.dis-cta.tech-cta {
    transform: none;
    position: static;
    padding-top: 50%;
}

a.dis-cta:hover {
    color: #153caa;
}

.dis-cta b {
    font-weight: 500;
    display: inline-block;
    margin-top: 3px;
}

.dis-cta span {
    display: block;
    width: 80px;
    height: 80px;
    background: #1e499a;
    margin: 0 auto;
    padding: 20px;
    border-radius: 100%;
    box-sizing: border-box;
}

.dis-cta span img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

#tech-sec .row {
    margin-top: 30px;
}

.home-article-discover-icon {
    background: #1e499a !important;
}

.region> :where(:not([data-big-pipe-placeholder-id])) {
    margin-bottom: 0 !important;
}

.static-page-content {
    padding: 0 !important;
}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1025px) {


    .dis-cta.tech-cta {
        padding-top: 30px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 650px) {
    #tech-sec .cols-sd-6 {
        margin-bottom: 15px;
    }

    #tech-sec .cols-sd-6:nth-child(2n+1) {
        clear: left;
    }

    .home-tech img {
        aspect-ratio: 9 / 16;
        object-fit: cover;
        height: auto;
        width: 100%;
    }

    .dis-cta.tech-cta {
        padding-top: 20px;
    }

    .dis-cta span,
    .media-box .dis-cta span {
        width: 50px;
        height: 50px;
        padding: 14px;
    }
}

/* =============================================================
SEARCH PAGE
============================================================= */

/* ── Banner ── */
.search-page-header {
    background: linear-gradient(135deg, #094de1 0%, #163caa 100%);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}

/* Force all text inside the banner to white — prevents any global rule from overriding */
.search-page-header,
.search-page-header p,
.search-page-header h1,
.search-page-header strong,
.search-page-header span {
    color: #fff !important;
}

.search-page-header .container {
    padding: 0 24px;
}

.search-page-header__label {
        font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 0 10px;
    letter-spacing: 0;
    text-transform: none;
}

.search-page-header__query {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 14px;
    word-break: break-word;
    line-height: 1.2;
}

.search-page-header__count {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
}

.search-page-header__count strong {
    font-weight: 700;
    color: #fff !important;
}

/* ── Main content area ── */
.search-page-main {
    padding: 48px 0 64px;
}

.search-page-main > .container {
    padding: 0 24px;
}

/* ── 3-column card grid ── */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-bottom: 40px;
    width: 80%;
    margin: 0 auto 40px;
}

/* ── Individual card ── */
.search-card {
  display: flex;
  flex-direction: column;
  background: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
}

/* Fade-in animation for lazy-loaded cards */
.search-card--entering {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.search-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.search-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Thumbnail */
.search-card__image-link {
    display: block;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.search-card__image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Category badge — colors/weight matched to the homepage featured-section
   half-content cards (.featured-grid-card__category), which have no hover
   state at all. */
.search-card__category {
    display: inline-block;
    color: #1e499a;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    margin: 14px 0px 6px 0px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

/* Title */
.search-card__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 10px 0 12px 0;
    flex: 1;
}

.search-card__title a {
    color: #111;
    text-decoration: none;
}

.search-card__title a:hover {
    color: #111c95;
}

/* Author row */
.search-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 16px 0;
    margin-top: auto;
}

.search-card__author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.search-card__author-name {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Load-more sentinel & spinner ── */
.search-load-more-sentinel {
    height: 1px;
    margin-top: -1px;
}

.search-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    font-size: 14px;
    color: #555;
}

/* Rotating spinner */
.search-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(9, 77, 225, 0.2);
    border-top-color: #094de1;
    border-radius: 50%;
    animation: search-spin 0.75s linear infinite;
}

@keyframes search-spin {
    to { transform: rotate(360deg); }
}

/* "End of results" notice */
.search-no-more {
    text-align: center;
    color: #aab0bf;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.04em;
    padding: 20px 0 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-no-more::before,
.search-no-more::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e4e7ef;
}

/* Empty state */
.search-empty {
    padding: 72px 24px;
    text-align: center;
    color: #555;
}

.search-empty__msg {
    font-size: 17px;
    margin-bottom: 32px;
    color: #444;
}

.search-empty__form {
    display: inline-block;
}

.search-empty__input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #d0d8f0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(9, 77, 225, 0.08);
    min-height: 48px;
    transition: border-color 0.2s;
}

.search-empty__input-wrap:focus-within {
    border-color: #094de1;
}

.search-empty__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 15px;
    min-width: 240px;
    background: transparent;
    color: #111;
    -webkit-appearance: none;
}

.search-empty__input::-webkit-search-cancel-button {
    display: none;
}

.search-empty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 22px;
    background: #ffc300;
    color: #000000 !important;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s;
    border-radius: 0 5px 5px 0;
}

.search-empty__btn:hover {
    background: #ffc300;
}

.search-empty__btn img {
    filter: brightness(100) invert(1);
    width: 16px;
    height: 16px;
    display: block;
    -webkit-filter: brightness(100) invert(1);
}

/* Hidden pager */
.search-pager-hidden {
    display: none !important;
}

/* Author link inside card */
.search-card__author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }
}

@media (max-width: 600px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .search-page-header {
        padding: 40px 0 36px;
    }

    .search-card__image {
        height: 180px;
    }

    .search-card__category {
        font-size: 13px;
        margin: 12px 14px 6px;
    }
}

/* =============================================================
   HEADER SEARCH
   ============================================================= */

.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Toggle icon button ── */
.header-search-toggle {
    background: none;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.15s;
    border-radius: 4px;
    line-height: 1;
}

.header-search-toggle:hover,
.header-search-wrap.is-open .header-search-toggle {
    opacity: 1;
}

.header-search-toggle img {
    display: block;
    width: 19px;
    height: 19px;
    object-fit: contain;
}

/* ── Dropdown panel — hidden by default ── */
.header-search-form {
    position: absolute;
    top: auto;
    right: 0;
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
    border: 1.5px solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: width 0.22s ease, opacity 0.18s ease, border-color 0.18s;
    z-index: 2000;
    white-space: nowrap;
    min-height: 44px;
}

/* ── Open state ── */
.header-search-wrap.is-open .header-search-form {
    width: 450px;
    opacity: 1;
    pointer-events: auto;
    border-color: #d0d8f0;
}

/* ── Input wrapper (input + clear) ── */
.header-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 4px 0 14px;
    border-right: 1.5px solid #dde2ef;
    background: #fff;
    border-radius: 5px 0 0 5px;
}

.header-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 4px 10px 0;
    font-size: 14px;
    background: transparent;
    color: #111;
    min-width: 0;
    /* Hide the native browser × in webkit */
    -webkit-appearance: none;
}

.header-search-input::-webkit-search-cancel-button {
    display: none;
}

/* ── Clear (×) button ── */
.header-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    font-size: 17px;
    line-height: 1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: color 0.15s;
    flex-shrink: 0;
}

.header-search-clear:hover {
    color: #333;
}

/* ── Blue submit button ── */
.header-search-submit {
    flex-shrink: 0;
    background: #ffc300;
    border: none;
    width: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    transition: background 0.15s;
    padding: 0;
}

.header-search-submit:hover {
    background: #ffc300;
}

.header-search-submit img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(100) invert(1);
    -webkit-filter: brightness(100) invert(1);
}

/* ── Mobile: full-width panel ── */
@media (max-width: 768px) {
    .header-search-form {
        position: fixed;
        top: auto;
        right: 0;
        left: 0;
        width: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .header-search-wrap.is-open .header-search-form {
        width: 100%;
    }

    .header-search-input-wrap {
        border-radius: 0;
    }

    .header-search-submit {
        border-radius: 0;
        width: 52px;
    }
}


/* ── Gated Article ── */
.gated-content-area {
    position: relative;
}
.gated-content-area #article-content {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}
.gated-content-area #article-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 90%);
    pointer-events: none;
}
/* Subscriber-only on gated articles — hide the AI summary toggle/box. */
.gated-content-area .ai-summary-wrapper {
    display: none !important;
}
.gated-article-gate {
    display: block;
    position: relative;
    z-index: 9;
    margin-top: -80px;
}
.gated-article-box {
    text-align: center;
}
.gated-in {
    width: 90%;
    margin: 0 auto;
    padding: 35px 95px;
    background: url(../../../../sites/default/files/static/bglock-3.png), url(../../../../sites/default/files/static/bglock-3.png) #E3EEFF;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -219px -232px, 552px 267px;
    position: relative;
    overflow: hidden;
}
.gated-in:before {
    content: "";
    position: absolute;
    background: url(../../../../sites/default/files/static/bg-lock1.png) no-repeat;
    background-size: 90%;
    top: 3px;
    right: -52px;
    width: 150px;
    height: 150px;
}
.gated-in:after {
    content: "";
    position: absolute;
    background: url(../../../../sites/default/files/static/pglock-2.png) no-repeat;
    background-size: 90%;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 100px;
}
.gated-in h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    position: relative;
    z-index: 1;
}
.gated-in > p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.gated-in .clearfix.pr {
    position: relative;
    margin-bottom: 10px;
}
.gated-in .error {
    color: red;
    font-size: 0.8rem;
    display: none;
    margin-bottom: 8px;
}
.gated-in input.txtfield {
    border: 1px solid #c9c6c6;
    background: #fff;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    border-radius: 4px;
    color: #000;
    font-size: 1rem;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.gated-in input.txtfield::placeholder {
    color: #999;
}
.gated-in input.txtfield:focus {
    border-color: #3b82f6;
    outline: none;
}
.gated-in select.zccountry {
    border: 1px solid #c9c6c6;
    background: url(../../../../sites/default/files/static/down-arrow-dark.png) #fff no-repeat;
    background-size: 18px;
    background-position: 95% center;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.gated-in select.zccountry:focus {
    border-color: #3b82f6;
    outline: none;
}
.gated-in .dwn-priv {
    margin: 25px 0 25px 0;
    font-size: 14px;
    color: #333;
}
.gated-in .dwn-priv a {
    color: #000;
    text-decoration: underline;
}
.gated-in .btn-submits {
    border: none;
    text-align: center;
}
.gated-in .btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}
.gated-in .btn-submits button:hover {
    background: #fff;
}
.tts-widget.inactive {
    opacity: 0.4;
    pointer-events: none;
}
@media only screen and (max-width: 1025px) {
    .gated-in {
        width: 100%;
        padding: 35px 50px;
    }
}
@media only screen and (max-width: 768px) {
    .gated-in {
        width: 100%;
        padding: 30px 30px;
        background-position: -180px -200px, 350px 250px;
    }
    .gated-in input.txtfield,
    .gated-in select.zccountry {
        width: 100%;
        margin: 5px 0;
    }
}
@media only screen and (max-width: 650px) {
    .gated-in {
        background-position: -159px -194px, 159px 257px;
        padding: 26px;
    }
    .gated-in:before, .gated-in:after {
       display: none;
    }
    .gated-in h3 {
        font-size: 1.6rem;
    }
    .gated-in > p {
        font-size: 0.95rem;
    }
    .gated-in input.txtfield,
    .gated-in select.zccountry {
        width: 100%;
        margin: 5px 0;
    }
    .gated-in .btn-submits button {
        width: 100%;
        padding: 10px 40px;
    }
}

/* ========== USER PROFILE (Zoho account detect) ========== */

.me-sub-user-area {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.me-sub-profile {
    position: relative;
}

.me-sub-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0e143d;
    color: #ffc300;
    border: 2px solid #ffc300;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s;
    line-height: 1;
    padding: 0;
    overflow: hidden;
}

.me-sub-avatar:hover {
    background: #1a2155;
    transform: scale(1.08);
}

.me-sub-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.me-sub-avatar-initials {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Dropdown */
.me-sub-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    animation: meSubDropIn 0.15s ease-out;
}

.me-sub-dropdown--open {
    display: block;
}

@keyframes meSubDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Arrow */
.me-sub-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.06);
}

.me-sub-dropdown-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.me-sub-dropdown-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #0e143d;
    color: #ffc300;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.me-sub-dropdown-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.me-sub-dropdown-avatar-initials {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.me-sub-dropdown-info {
    display: flex;
    flex-direction: column;
}

.me-sub-dropdown-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0e143d;
    line-height: 1.3;
}

.me-sub-dropdown-zhome {
    font-size: 12px;
    color: #2196f3;
    text-decoration: none;
    margin-top: 2px;
}

.me-sub-dropdown-zhome:hover {
    text-decoration: underline;
}

.me-sub-dropdown-email {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
    word-break: break-all;
}

.me-sub-dropdown-actions {
    padding: 10px 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.me-sub-account-link {
    font-size: 13px;
    font-weight: 500;
    color: #2196f3;
    text-decoration: none;
}

.me-sub-account-link:hover {
    text-decoration: underline;
}

.me-sub-logout-btn {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #d32f2f;
    border: 1px solid #d32f2f;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.me-sub-logout-btn:hover {
    background: #d32f2f;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .me-sub-dropdown {
        right: -10px;
        min-width: 200px;
    }
}

/* ========== ONE-CLICK SUBSCRIBE BUTTON (Newsletter) ========== */

/* .me-sub-one-click-wrap {
    text-align: center;
    padding: 10px 0;
}

.me-sub-one-click-btn {
    background: #ffc300;
    color: #0e143d;
    border: none;
    border-radius: 5px;
    padding: 14px 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
} */

/* .me-sub-one-click-btn:hover {
    background: #404040;
    color: #fff;
    transform: scale(1.03);
}

.me-sub-one-click-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
} */

/* ========== TOAST NOTIFICATION ========== */

.me-sub-toast {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2e7d32;
    color: #fff;
    padding: 16px 48px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

.me-sub-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.me-sub-toast-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.8;
}

.me-sub-toast-close:hover {
    opacity: 1;
}

.popup-content .me-sub-one-click-wrap{
    padding: 0 0 30px 0;
}

/* ============================================================================
   MOBILE STYLES - BELOW 450px
   ============================================================================ */
@media only screen and (max-width: 450px) {
    .article-actions {
        padding: 0;
        border-top: none;
        border-bottom: none;
    }
    .single-related-section{
        border-top: none;
    }
}

/* ============================================================================
   ARTICLE PAGE — FOLLOW-UP TWEAKS
   ============================================================================ */

/* TTS widget: keep the "Listen to the article…" label on a single line.
   It otherwise wraps in narrow columns (cols-9 on tablets, scrolled-widget
   fixed bar) and pushes half the text out of view. clamp() scales the
   font-size down so the line shrinks to fit instead of being clipped. */
.tts-widget p {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.62rem, 1.6vw, 0.8rem) !important;
}


/* Bottom author card: constrain to 90% width and centre it. */
.author-of-the-post-box {
    width: 100%;
    margin: 20px auto;
}

/* Vertically centre the author name/designation next to the photo. */
.author-of-the-post-box .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Keep the photo + name/designation side-by-side below 768px too —
   without this, the legacy float-grid column widths can collapse to
   100% and the two columns stack instead of staying in a row. */
@media (max-width: 768px) {
    .author-of-the-post-box .row{
        align-items: self-start;
        gap:20px;
        /* flex: 0 0 auto;
        width: auto; */
    }
    .author-of-the-post-box .row > .cols-3,
    .author-of-the-post-box .row > .cols-md-3,
    .author-of-the-post-box .row > .cols-sd-4 {
        /* width: 25%; */
    }
    .author-of-the-post-box .row > .cols-9,
    .author-of-the-post-box .row > .cols-md-9,
    .author-of-the-post-box .row > .cols-sd-8 {
        /* width: 75%; */
    }
}

/* Gated overlay: undo the legacy `position: absolute; bottom: 0; padding-top: 300px`
   on `.gated-article-box` (style.css ~L3689). That rule was for the old WP
   structure and visually buried the author card + tags + like row below the
   gate. The new structure positions the gate via `.gated-article-gate`. */
.gated-article-box {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    padding: 0;
    background: none;
}

/* ============================================================================
   BACK TO TOP BUTTON
   ============================================================================ */
#backToTop {
    display: none !important;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #163caa;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #094de1;
    box-shadow: 0 4px 16px rgba(9, 77, 225, 0.35);
}

.back-to-top svg {
    pointer-events: none;
}

@media only screen and (max-width: 650px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* === style.css === */
.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block
}

.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}


html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: 600;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

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

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

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

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

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: baseline
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
    position: relative;
    bottom: 1px;
    display: inline-block;
    margin-right: 2px
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

template {
    display: none
}

[hidden] {
    display: none
}

html {
    font-size: 16px
}

button,
input,
optgroup,
select,
textarea {
    color: #111;
    font-weight: 400;
    line-height: 1.8;
    text-rendering: optimizeLegibility
}

.author-description .author-link,
.comment-author .fn,
.comments-title,
.error-404 .page-title,
.main-navigation,
.no-comments,
.not-found .page-title,
.page-description,
.pagination .nav-links,
.post-navigation .post-title,
.site-title,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1 {
    font-size: 2.25rem
}

p:empty {
    display: none;
}

@media only screen and (min-width:768px) {
    h1 {
        font-size: 2.8125rem
    }
}

.entry-title,
.error-404 .page-title,
.has-larger-font-size,
.not-found .page-title,
h2 {
    font-size: 1.6875em
}


.page-title,
.site-title {
    font-weight: 400
}

.page-description,
.page-links a {
    font-weight: 600
}

.site-description {
    letter-spacing: -.01em
}

.comments-title,
.entry-title,
.error-404 .page-title,
.not-found .page-title,
.post-navigation .post-title,
blockquote {
    hyphens: auto;
    word-break: break-word
}

@media only screen and (min-width:768px) {
    .entry-title {
        hyphens: none
    }
}

p {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #434343;
}

cite,
dfn,
em,
i {
    font-style: italic
}

blockquote cite {
    font-size: .71111em;
    font-style: normal
}

pre {
    font-size: .88889em;
    font-family: "Courier 10 Pitch", Courier, monospace;
    line-height: 1.8;
    overflow: auto
}

code,
kbd,
tt,
var {
    font-size: .88889em;
    font-family: Menlo, monaco, Consolas, Lucida Console, monospace
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help
}

ins,
mark {
    background: #fff9c0;
    text-decoration: none
}

big {
    font-size: 125%
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

a:focus {
    text-decoration: none
}

html {
    box-sizing: border-box
}

::-moz-selection {
    background-color: #bfdcea
}

::selection {
    background-color: #bfdcea
}

*,
:after,
:before {
    box-sizing: inherit
}

a {
    color: #0073aa
}

a:active,
a:hover {
    color: #005177;
    outline: 0;
    text-decoration: none
}

a:focus {
    outline: thin;
    outline-style: dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 1rem 0
}

hr {
    background-color: #767676;
    border: 0;
    height: 1px
}

ol,
ul {
    padding-left: 1rem
}

ul {
    list-style: disc
}

ul ul {
    list-style-type: circle
}

ol {
    list-style: decimal
}

li {
    line-height: 1.8
}

li>ol,
li>ul {
    padding-left: 2rem
}

dt {
    font-weight: 700
}

dd {
    margin: 0 1rem 1rem
}

img {
    height: auto;
    max-width: 100%;
    position: relative
}

input[type=search]::-webkit-search-decoration {
    display: none
}

textarea {
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: 100%;
    resize: vertical
}

form p {
    margin: 1rem 0
}

.space-large {
    height: 50px;
}

.space-medium {
    height: 30px;
}

.space-small {
    height: 10px;
}

a {
    color: #111c95
}

a:active,
a:hover {
    color: #005177;
    outline: 0;
    text-decoration: none
}

a:focus {
    outline: thin dotted
}

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

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

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

.text-light {
    color: #fff !important;
}

.text-dark {
    color: #000 !important;
}

.round-corner {
    border-radius: 6px;
}

body {
    font-family: 'ZohoPuvi';
    font-weight: 300;
    font-size: 16px;
    background: #fff;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility
}

:focus {
    outline: 0 !important
}

footer {
    position: relative
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto
}

.container-full {
    width: 100%;
}

footer {
    background: #292929;
    color: #fff;
    padding: 0;
}

footer>.container {
    padding: 20px 0
}

#colophon .site-info {
    text-align: center;
    color: #898c90;
    background: #222
}

.footer-para {
    font-size: 15px;
    line-height: 1.5;
    color: #e4e1e1
}

.copyright {
    color: #fff;
    font-size: 14px;
    margin: 20px 0;
}

.copyright a {
    color: #fff;
}

.no-padding-top {
    padding-top: 0 !important;
}

.no-padding-bottom {
    padding-bottom: 0 !important;
}

.rows {
    display: grid;
    grid-template-columns: 32% 32% 32%;
    grid-template-rows: auto;
    grid-column-gap: 2%;
    grid-row-gap: 4%;
    margin: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box
}

.rows-2 {
    grid-template-columns: 49% 49%
}

#contact .widget.widget_custom_html {
    margin: 0
}

section.no-results.not-found {
    min-height: calc(100vh - 200px);
    padding-top: 0;
}

.main-row:after {
    content: "";
    display: table;
    clear: both
}

.main-row {
    margin-left: -10px;
    margin-right: -10px
}



.alm-listing .alm-listing>li:after,
.alm-listing .alm-listing>li:before,
.row:after,
.row:before,
section:after,
section:before,
.container:before,
.container:after,
.clearfix:after,
.clearfix:before {
    content: "";
    display: table;
    clear: both;
}

/* .row {
    margin-left: -15px;
    margin-right: -15px
} */

.cols-10,
.cols-12,
.cols-2,
.cols-3,
.cols-3-extend,
.cols-4,
.cols-5,
.cols-6,
.cols-7,
.cols-8,
.cols-9 {
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    min-height: 1px
}

.cols-12 {
    width: 100%
}

.cols-10 {
    width: 80%
}

.cols-9 {
    width: 75%
}

.cols-8 {
    width: 66.6%
}

.cols-7 {
    width: 58.4%
}

.cols-6 {
    width: 50%
}

.cols-5 {
    width: 41.6%
}

.cols-4 {
    width: 33.3%
}

.cols-3 {
    width: 25%
}

.cols-3-extend {
    width: 20%
}

.cols-2 {
    width: 16.6%
}

.cols-center {
    margin: 0 auto;
    float: none;
}

@media only screen and (max-width: 1025px) {
    .cols-md-12 {
        width: 100%;
    }
    .single-podcast-container .cols-md-12{
        padding: 0;
    }

    .cols-md-10 {
        width: 80%;
    }

    .cols-md-9 {
        width: 75%;
    }

    .cols-md-8 {
        width: 66.6%;
    }

    .cols-md-6 {
        width: 50%;
    }

    .cols-md-4 {
        width: 33.3%;
    }

    .cols-md-3 {
        width: 25%;
    }

    .cols-md-center {
        float: none;
        margin: 0 auto;
    }

    .cols-md-hidden {
        display: none;
    }

    .mob-only {
        display: none;
    }

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

@media only screen and (max-width: 650px) {
    .cols-sd-12 {
        width: 100%;
    }

    .cols-sd-9 {
        width: 75%;
    }

    .cols-sd-8 {
        width: 66.6%;
    }

    .cols-sd-6 {
        width: 50%;
    }

    .cols-sd-4 {
        width: 33.3%;
    }

    .cols-sd-3 {
        width: 25%;
    }

    .cols-sd-hidden {
        display: none;
    }
}

section {
    padding: 50px 0
}

/* slick */

.slick-list,
.slick-slider,
.slick-track {
    position: relative;
    display: block
}

.slick-slider {
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-slide,
.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-initialized .slick-slide,
.slick-slide img {
    display: block
}

.slick-arrow.slick-hidden,
.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-dots li {
    list-style: none;
	    display: inline-block;
    margin: 0 5px;
	    line-height: normal;
}
ul.slick-dots {
    position: absolute;
    bottom: 10px;
    transform: translate(-50%, 0);
    left: 50%;
    margin: 0;
    padding: 0;
}
.slick-dots button {
    text-indent: -99999px;
    width: 12px;
    height: 12px;
    line-height: normal;
    border-radius: 100%;
    border: none;
    padding: 0;
    box-shadow: 0 0 10px #000000b3;
	    background: #fff;
	cursor: pointer;
}
.slick-dots li.slick-active button {
    background: #ffb70a;
}
.grid-full{
    display: block !important;
}

/* mobile promo */
.mobilepromo-section {
    background: #FFB800;
    color: #000;
    padding-bottom: 0;
    margin-top: 8px;
    padding-top: 40px;
    border-radius: 20px;
    padding: 50px 50px 0px;
}
.mobilepromo-section h2, .mobilepromo-section p {
    padding-left: 15px;
}
.mobilepromo-section h2 {
    font-weight: 600;
}
.mobilepromo-section p {
    color: #000;
    font-size: 1.3em;
}
.mobilepromo-section .text-center {
    text-align: center;
    margin: auto;
    margin-top: 10px;
    display: inline-block;
}
.mobilepromo-section a {
    display: block;
    margin-top: 15px;
}
.mobilepromo-section a:first-child {
    margin-top: 30px;
}
.mobilepromo-section .mob-banner-vis {
    display: none !important;
}
.breadcrumb::after {
    display: none !important;
}
@media only screen and (max-width: 1500px) {
    .container {
        max-width: 1200px;
    }
}
@media only screen and (max-width: 1250px) {
    .container, .tag-container .container {
        max-width: 95%;
    }
}
@media only screen and (max-width: 650px) {
    .container, .tag-container .container {
        max-width: 90%;
    }
    #mobilepromo-section{
        padding:20px 0 40px 0;
    }
}

* {
    font-family: 'ZohoPuvi' !important;
}

body {
    font-weight: 300;
    font-size: 16px;
    background: #fff;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
hr{
    display: none;
}

/* ========== BROWSE MORE / RELATED ARTICLES SECTION ========== */

/* .single-related-section {
    padding-bottom: 0;
} */

.single-related-section .page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 50px;
}

/* Related articles grid container - floated layout to match WordPress */
.same-category-posts {
    margin-right: -10px;
    margin-left: -10px;
    width: 100%;

}

/* Individual article card - floated 3-column layout */
.cat-posts {
    width: 33.3%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
}

/* Article thumbnail image */
.cat-posts img {
    display: block;
    height: 190px;
    object-fit: cover;
    width: 100%;
}

/* Article content wrapper */
.same-category-details h2 {
    font-size: 18px;
    margin-top: 13px;
    min-height: 65px;
}

/* Article title link styling */
.same-category-details h2 a {
    color: #000;
    text-decoration: none;
}

.same-category-details h2 a:hover {
    color: #E69701;
}

/* Read more link styling */
.readmore {
    color: #153caa;
    text-decoration: none;
    font-weight: 600;
}

.readmore:hover {
    color: #111c95;
}

span.arrow {
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    background: url(../../../../sites/default/files/static/arrow-right.png) no-repeat #153caa;
    background-size: 50%;
    background-position: center;
    border-radius: 100%;
    margin-right: 10px;
}

/* Discover more arrow section */
.more-arrow {
    display: block;
    padding: 90px 0;
    border-left: 1px solid #7f7b7b;
    text-decoration: none;
    color: #000;

}

.more-arrow span {
    display: block;
    margin: 10px 0;
    font-size: 1.4em;
    font-weight: 500;
    color: #000;
}

.more-arrow span.full-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.more-arrow:hover span {
    color: #153caa;
}

/* .same-category-posts{
    margin: 50px;
    display: flex;
    justify-content: space-between;
} */

/* Responsive: Tablet */
@media only screen and (max-width: 768px) {
    .cat-posts {
        width: 50%;
    }

    .same-category-posts {
        margin-right: -10px;
        margin-left: -10px;
    }

    .same-category-details h2 {
        min-height: auto;
    }

}

/* Responsive: Mobile */
@media only screen and (max-width: 640px) {
    .cat-posts {
        width: 100%;
        margin-bottom: 50px;
    }

    .same-category-details h2 {
        min-height: auto;
    }

    .more-arrow {
        padding: 50px 0;
        border-left: none;
    }
}

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

.header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 20px 30px;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 10;
}

.me-container {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-brand,
.custom-logo-link {
    display: inline-block;
    line-height: normal;
    vertical-align: baseline;
    font-size: 1.5em;
    font-weight: 400;
    color: #231f20 !important;
    text-decoration: none;
}

/* MENU */
.menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hamburger {
    display: none;
}

.main-menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu-item {
    position: relative;
}

.menu-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

ul {
    margin-inline-start: 0;
}

.menu-item ul {
    display: none;
    position: absolute;
    background: white;
}

.menu-item:hover>ul {
    display: block;
}

.menu-item:hover>a {
    color: #094de1;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 0.937em;
}

.logo-brand:before {
    content: "|";
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: text-top;
}

/* DROPDOWN */

.dropdown {
    position: absolute;
    text-align: left;
    width: 270px;
    background: #fff;
    padding: 0;
    z-index: 9999;
    display: none;
    padding: 20px 0;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 35%);
    margin-top: 25px;
}

.menu-item:hover>.dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.menu-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
}

.has-dropdown>a::after {
    content: "";
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    position: relative;
    top: 4px;
    margin-left: 10px;
}

.menu-link:hover {
    color: #007bff;
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
}

.dropdown a:hover {
    background: #1f3a93;
    /* dark blue */
    color: white;
}

.dropdown a.active {
    background: #1f3a93;
    color: white;
}

/* RIGHT SIDE */
.right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    flex-shrink: 0;
}

.subscribe {
    text-transform: uppercase;
}

.subscribe,
.media-cta a,.media-cta span,
.author-see-more-btn {
    background: #ffc300;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 23px 10px 23px;
    font-weight: 500;
    color: #0e143d;
    font-size: 16px;
    line-height: normal;
    margin-top: 2px;
    border: none;
    cursor: pointer;
}

.subscribe:hover,
.media-cta a:hover,.media-cta span:hover,
.author-see-more-btn:hover {
    background: #404040;
    color: #fff;
}

/* footer */
.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}

.footer p {
    color: white;
}

/* About us */
/* .page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    color: #fff;
} */

/* Newsletter section styles */
/* newsletter section */
#newsletter-section {
    background: url(../../../../sites/default/files/static/subscribe-bg.png), linear-gradient(45deg, #2d52c8, #1b3398);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
}

.newsletter-section {
    padding: 70px 70px;
    background: transparent linear-gradient(91deg, rgb(0 88 85 / 92%) 0%, rgb(1 39 38 / 76%) 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    position: relative;
}

.newsletter-footer-box {
    color: #fff;
    padding: 40px 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-footer-box.videocastscr {
    background: radial-gradient(#3168d9, #111217);
    background-size: cover;
    background-position: center;
}

.videocastscr .newsletter-back {
    width: 90%;
    margin-bottom: 0;
}

.newsltr-opn {
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    color: #14203a;
    background-color: #fff;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    line-height: 1.9;
}

.newsltr-opn:hover {
    background: #c5c5c5;
}

.videocastscr .newsltr-opn {
    display: block;
}

.newsletter-front>img {
    width: 20%;
    min-width: 150px;
    margin: 0 auto 20px auto;
    display: block;
    padding-right: 30px;
}

.newsletter-front h2 {
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 0;
    color: white;
}

.videocastscr.newsletter-footer-box {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 700px;
    height: auto;
    border-radius: 5px;
    padding: 60px;
    z-index: 999999;
}

.videocastscr .newsletter-front h2 {
    font-size: 1.6em !important;
    padding: 0;
    margin-top: 0;
}

.videocastscr input#emailNL,
.videocastscr select {
    width: 45%;
}

.videocastscr select#country_state,
.videocastscr select#ukcountry_region {
    margin-left: 48%;
}

/* === Gated Videocast Thumbnail Overlay === */
.videocast-gate-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    background: #000;
}

.videocast-gate-overlay .gate-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.videocast-gate-overlay .gate-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.videocast-gate-overlay:hover .gate-play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.gate-subscribe-section {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px 30px;
    text-align: center;
    z-index: 11;
}
.gate-subscribe-section p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}
.gate-subscribe-section .dwn-priv {
    color: #ccc;
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.gate-subscribe-section .dwn-priv a {
    color: #8bb4f0;
}
.gate-subscribe-section .btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}
.gate-subscribe-section .btn-submits button:hover {
    background: #fff;
}

.videocast-in-wrap-1 {
    position: relative;
}

.newsletter-back {
    width: 70%;
    margin: 35px auto;
    text-align: center;
}

input#emailNL,
select {
    border: 1px solid #102472;
    background: #13349e;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
    color: #fff;
}

input#emailNL::placeholder {
    color: #fff;
}

select#zccountry,
select#country_state,
select#ukcountry_region {
    background: url(../../../../sites/default/files/static/down-arrow.png) #13349e no-repeat;
    background-size: 18px;
    background-position: 95% center;
}

.dwn-priv {
    margin: 25px 0 25px 0;
    font-size: 14px;
}

.dwn-priv a {
    color: #fff;
    text-decoration: underline;
}

.dwn-priv a:hover {
    color: #ffc300;
}

.btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}

.btn-submits button:hover {
    background: #fff;
}

.overlay-newsletter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 59%);
    z-index: 99999;
    display: none;
}

.email-error {
    color: red !important;
    font-size: 0.9rem !important;
}

.clearfix {
    clear: both;
}

/* ============================================================
   FEATURED SECTION STYLES (Featured Posts & Sidebar)
   Reference: style.css lines 1480-1700
   ============================================================ */

/* --- FEATURED SECTION MAIN CONTAINER --- */
#spotlight {
    padding: 0;
}

/* --- PAGE TITLE (Featured Heading) --- */
.page-title {
    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 30px;
    color: #000;
}

/* --- FEATURED POST CATEGORY LINK --- */
.p-heading h3 a {
    color: #1e499a;
    font-weight: 300;
}

.p-heading a:hover {
    color: #111c95;
}

.p-heading a {
    color: #000;
}

.p-heading h3 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em;
}

/* --- FEATURED POST TITLE (h2) --- */
.p-heading h2 {
    font-size: 2em;
    font-weight: 600;
    margin: 8px 0 0 0;
}

/* --- FEATURED POST EXCERPT TEXT --- */
p.descr {
    margin: 0;
}

.descr:after {
    content: "...";
    margin-left: -2px;
}

/* --- FEATURED POST AUTHOR SECTION --- */
.author-dp,
.slick-author img.avatar,
.insights-author img.avatar,
.auth-spn img.avatar,
.alm-listing .entry-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    position: relative;
    bottom: 1px;
}

span.author-name {
    margin-bottom: 6px;
}

.author-in {
    display: inline-block;
    vertical-align: middle;
}

.author-name a {
    color: #000;
    font-size: 1em;
    font-weight: 400;
    text-transform: capitalize;
}

.slick-author {
    margin-top: 15px;
}

.slick-author p {
    margin: 0;
    position: relative;
}

/* --- FEATURED POST - FULL WIDTH (First Post) --- */
#content-wide {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e1e1;
}

.imgwide .imgdiv img {
    height: 275px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    object-position: center;
}

/* --- GRID LAYOUT FOR 3 REMAINING POSTS (Half Content) --- */
#half-content {
    padding-bottom: 0px;
}

#half-content .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

#half-content .post {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

#half-content .imgdiv img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
}

#half-content .p-heading h3 {
    margin-top: 12px;
    margin-bottom: 10px;
}

#half-content .p-heading h2 {
    font-size: 1.1em;
    line-height: 1.4;
    min-height: 40px;
}

#half-content .single-post-author span {
    font-size: 0.875em;
}

/* --- SIDEBAR LAYOUT --- */
#spotlight .container {
    border-bottom: 1px solid #e3e1e1;
}

/* Article page */

/* ============================================================================
   ARTICLE PAGE LAYOUT & STYLING
   ============================================================================ */

/* Breadcrumb Navigation */
.brdcrm {
    background: #f5f5f5;
    padding: 15px 0;
    overflow: hidden;
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 5px;
}

.breadcrumb li {
    display: inline-block;
}

.breadcrumb a {
    color: #094de1;
    text-decoration: none;
    font-size: 0.95em;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Page Header Section */
.page-header {
    /* background: #fff; */
    padding: 40px 0;
    /* border-bottom: 1px solid #e3e1e1; */
}

.header-banner {
    display: flex;
    /* gap: 30px; */
    align-items: flex-start;
    position: relative;
}

.post-feature-img {
    flex: 1;
    width: 100%;
}

.post-feature-img img {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}


/* .header-post {
flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
} */
.header-post {
    color: #fff;
    background: #163caa;
    width: 400px;
    position: absolute;
    bottom: 0;
    right: 5px;
    padding: 20px;
}

.header-post:before {
    content: "";
    background: #094de1;
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    top: -5px;
    left: 0;
}

.header-post h3 {
    margin: 0 0 15px 0;
    font-size: 1.1em;
    color: #fff;
}

.header-post a.single-page-tit {
    color: #fff !important;
    font-weight: 500;
    font-size: 1.1em;
}

.header-post a.single-page-tit:hover {
    color: #ffc300;
}

/* .single-post-title {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #000;
} */
.single-post-title {
    font-size: 2.2em;
    line-height: 1.2;
    color: black;
}

.single-post-title-article {
    color: white;
}


/* Author Information */
.post-author-det {
    /* display: flex;
    gap: 15px;
    align-items: center; */
    margin-top: 30px;
}

.author-dp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.post-author {
    margin: 0;
    font-size: 0.95em;
}

.post-author-name {
    font-weight: 600;
    color: #000;
    display: block;
    margin-bottom: 3px;
}

.post-author-det img.author-dp {
    width: 50px;
    height: auto;
    border-radius: 50%;
    float: left;
    display: block;
    margin-top: 5px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}

.post-author-name a {
    font-weight: 600;
}

.post-author-name-art a {
    color: #fff;
}

.post-author-name a:hover {
    text-decoration: underline;
}

.post-author span {
    display: block;
    color: #666;
    font-size: 0.9em;
}

.header-post .post-author span {
    display: block;
    color: #fff;
}


/* Content Area */
#primary.content-area {
    /* background: #fff; */
    padding: 10px 0;
}

.single-post-container {
    width: 100%;
    /* overflow: hidden; */
}

.single-post-container .row {
    display: flex;

}

/* Main Content */
#main.site-main {
    flex: 1;
}

#main {
    padding: 0;
}

#article-content {
    font-size: 1.05em;
    line-height: 1.8;
    color: #333;
}

#article-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

#article-content h1,
#article-content h2,
#article-content h3,
#article-content h4,
#article-content h5,
#article-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}
body.darktheme #article-content h3{
    color: white;
}


#article-content h1 {
    font-size: 1.8em;
}

#article-content h2 {
    font-size: 1.6em;
}

#article-content h3 {
    font-size: 1.4em;
}

#article-content h4 {
    font-size: 1.2em;
}

#article-content h5 {
    font-size: 1.1em;
}

#article-content h6 {
    font-size: 1em;
}

#article-content ul,
#article-content ol {
    margin: 20px 0;
    padding-left: 30px;
    line-height: 1.8;
}

#article-content li {
    margin-bottom: 10px;
}

#article-content a {
    color: #094de1;
    text-decoration: none;
}

#article-content a:hover {
    text-decoration: underline;
}

/* Publication Date */
.pub-date {
    color: #999;
    font-size: 0.95em;
    font-style: italic;
    margin-bottom: 30px;
}

/* Reading Time */
/* .reading-time-text {
    color: #000;
    font-style: normal;
} */

/* Tags */
/* .post-tags {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
} */
.post-tags {
    margin-top: 40px;
    margin-bottom: 10px;
    padding-left: 0;
    list-style-type: none;
}

.post-tags li {
    display: inline-block;
}

.post-tags li a {
    color: #000;
    display: inline-block;
    border: 1px solid #000;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-size: 14px;
    background: #fff;
}

.post-tags li a:hover {
    color: #111c95;
    border-color: #111c95;
}

/* ============================================================================
   TABLE OF CONTENTS AND STICKY SIDEBAR
   ============================================================================ */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sticky-sidebar-art {
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    padding-right: 10px;
    z-index: 9;
    background: #fff;
}

#ez-toc-container {
    border: none;
    padding: 0;
}

#ez-toc-container .ez-toc-list {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 5px;
}

#ez-toc-container .ez-toc-title {

    display: block !important;
    font-weight: 600;
    color: #000 !important;
    font-size: 1.2em;
}

.ez-toc-title-container {
    display: table;
    width: 100%;
}

#ez-toc-container .ez-toc-list {
    list-style: none;
    padding: 0;
}

#ez-toc-container .ez-toc-list li {
    margin-bottom: 12px;
}

#ez-toc-container .ez-toc-list li a {
    display: block;
    position: relative;
    color: #838383 !important;
    padding-left: 10px;
    font-weight: 300;
    font-size: 0.95em;
    text-decoration: none;
    transition: all 0.3s ease;
}

#ez-toc-container .ez-toc-list li a:hover,
#ez-toc-container .ez-toc-list li.active-tab a {
    color: #000 !important;
    text-decoration: none !important;
}

#ez-toc-container .ez-toc-list li a:hover:before,
#ez-toc-container .ez-toc-list li.active-tab a:before {
    content: "";
    display: block;
    position: absolute;
    height: 100%;
    width: 5px;
    left: 0;
    background: #094de1;
}

/* ============================================================================
   AUDIO PLAYER & TTS
   ============================================================================ */

/* .tts-wrap {
    background: #f9f9f9;
    border: 1px solid #e3e1e1;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 30px;
}

.tts-widget {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tts-widget p {
    margin: 0;
    font-weight: 500;
    color: #000;
    font-size: 0.95em;
}

#ttsaudio {
    flex: 1;
    min-width: 300px;
}

.tts-widget.scrolled-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
} */

/* ============================================================================
   ARTICLE ACTIONS
   ============================================================================ */

.article-actions {
    /* margin: 40px 0; */
    padding: 20px 0;
    border-top: none;
    border-bottom: none;
}

.videocast-actions {
    margin: 40px 0 20px;
}

/* Like button styling is handled by me_insights_like module */
/* See: web/modules/custom/me_insights_like/css/like-button.css */

/* ============================================================================
   AUTHOR BOX
   ============================================================================ */
/* .author-of-the-post-box {
    width: 75%;
    margin: 0 auto;
} */
.media-author-box.author-of-the-post-box {
    width: 100%;
}

.auth-photo {
    position: relative;
}

.author-bg {
    width: 100%;
    height: 100%;
    left: -7px;
    top: -6px;
    position: absolute;
    background: #163caa;
}

.author-bg:before {
    content: "";
    background: linear-gradient(to bottom, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    top: -5px;
    left: -5px;
}

.author-bg:after {
    content: "";
    background: linear-gradient(to right, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    top: -5px;
    right: 0;
}

.author-pic {
    background: #fff;
    position: relative;
}

.auth-photo img {
    width: 100%;
}

.single-post .auth-name {
    margin-top: 30px;
}

.auth-name {
    font-size: 1.5em;
    margin: 0;
}

.profile-link {
    display: inline-block;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}

.auth-details {
    margin: 0;
}

/* .author-of-the-post-box {
    background: #f9f9f9;
    border: 1px solid #e3e1e1;
    border-radius: 8px;
    padding: 25px;
    margin: 40px 0;
}

.auth-photo {
    position: relative;
}

.author-bg {
    background: linear-gradient(135deg, #094de1, #2566ed);
    height: 80px;
    border-radius: 8px 8px 0 0;
}

.author-pic {
    margin-top: -40px;
    text-align: center;
}

.author-pic img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    object-fit: cover;
}

.auth-name {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 1.1em;
    font-weight: 600;
}

.auth-name a {
    color: #094de1;
    text-decoration: none;
}

.auth-name a:hover {
    text-decoration: underline;
}

.auth-details {
    margin: 0;
    color: #666;
    font-size: 0.95em;
} */

/* ============================================================================
   RELATED ARTICLES SECTION
   ============================================================================ */

.single-related-section {
    /* background: #f9f9f9; */
    /* padding: 50px 0; */
    border-top: 1px solid #e3e1e1;
    padding: 20px 0;
}

.single-related-section .page-title {
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
}

.rel-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-arrow {
    color: #094de1;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    flex-direction: column;
    padding-left: 30px;
}

.more-arrow:hover {
    gap: 15px;
}

.arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
}

/* Podcasts */
.media-highlights .fixed-sidebar {
    background: #000103;
    color: #fff;
    padding: 25px;
    border-top: 5px solid #1b61ff;
}

#listn-podcast-section {
    padding: 12px 0;
}

.media-highlights h3.widget-title {
    margin-top: 0;
    color: #fff;
    margin-bottom: 10px;
}

h3.widget-title {
    font-size: 1.3em;
    font-weight: 500;
    margin-top: 40px;
}

.media-highlights ul {
    padding-left: 0;
    list-style: none;
}

#podcast-acord li {
    cursor: pointer;
}

.media-highlights ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
}

.media-highlights ul li strong {
    display: inline-block;
    color: #1b61ff;
    position: absolute;
    left: 0px;
}


.media-highlights {
    border-left: 1px solid #cacaca;
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* --- Reset Drupal field wrapper classes inside highlights sidebar --- */
.media-highlights .fixed-sidebar .field,
.media-highlights .fixed-sidebar .field__item,
.media-highlights .fixed-sidebar .field--type-text-long,
.media-highlights .fixed-sidebar .field--name-field-podcast-highlights,
.media-highlights .fixed-sidebar .text-content,
.media-highlights .fixed-sidebar .clearfix.field {
    all: unset;
    display: block;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

/* Also reset for player section field wrappers */
.page-header-videocast .field,
.page-header-videocast .field__item,
.page-header-videocast .field--type-text-long,
.page-header-videocast .field--type-link,
.page-header-videocast .field--name-field-podcast-player,
.page-header-videocast .field--name-field-featured-image-podcast {
    all: unset;
    display: block;
    margin: 0;
    padding: 0;
}

/* --- VIDEO PLAYER WRAPPER --- */
.page-header-videocast .container {

    padding: 0 15px;
    overflow: hidden;
}

.videocast-in-wrap-1 {
    width: 100%;
    position: relative;
}

.videocast-in-wrap-1 p {
    width: 100%;
    margin: 0;
}

.videocast-acord p {
    color: #ccffff !important;
}

.videocast-in-wrap-1 iframe {
    width: 100%;
    max-height: 750px;
    height: calc(100vh - 250px);
    min-height: 400px;
    display: block;
}

.featured-image-container {
    margin-top: 20px;
}

.featured-image-container img {
    width: 100%;
    border-radius: 6px;
}

/* ============================================================================
   THINKING TECH PAGE STYLING
   Styling for thinking-tech content type
   Shares layout structure with videocasts
   ============================================================================ */

/* thinking-tech single post layout */
.thinking-tech-single {
    background: #fff;
    padding: 40px 0;
}

/* thinking-tech post title styling */
.thinking-tech-single .single-post-title {
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2;
    margin: 20px 0;
    color: #000;
}

/* thinking-tech video player container */
/* .thinking-tech-single .videocast-in-wrap-1 iframe {
    width: 100% !important;
    height: calc(100vh - 200px) !important;
    min-height: 400px;
    display: block;
} */


/* thinking-tech post actions (like button) */
.thinking-tech-actions {
    margin: 20px 0 0;
    padding: 0;
}

/* thinking-tech author section */
.thinking-tech-single .auth-name {
    font-size: 1.5em;
    margin: 30px 0 10px 0;
    font-weight: 600;
}

.thinking-tech-single .profile-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.thinking-tech-single .profile-link:hover {
    color: #094de1;
    text-decoration: underline;
}

/* Tech in a minute */
.video-opt {
    position: absolute;
    bottom: 18px;
    left: -72px;
}

.video-opt .flag a {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 6px; */
    padding: 6px 12px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid #ddd !important;
    border-color: #999;
    background-color: #eeeeee78;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

/* ============================================================================
   NEWSLETTER SECTION
   ============================================================================ */

.newsletter-section {
    padding: 40px 0;
    background: #fff;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* ── Breadcrumb ── */
.breadcrumb-wrapper {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 0px 14px;
    box-sizing: border-box;
}

.breadcrumb-wrapper .me-container {
    display: block;
}

.breadcrumb-wrapper .block {
    margin: 0;
    padding: 0;
}

.breadcrumb-wrapper nav {
    margin: 0;
    padding: 0;
}

/* Olivero breadcrumb overrides */
.breadcrumb-wrapper .breadcrumb {
    margin: 0;
    padding: 0;
    min-height: auto;
}

.breadcrumb-wrapper .breadcrumb__list,
.breadcrumb-wrapper ol,
.breadcrumb-wrapper ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-size: 15px;
    color: #333;
}

.breadcrumb-wrapper .breadcrumb__item,
.breadcrumb-wrapper li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

/* Kill Olivero's default ::before and ::after separators */
.breadcrumb-wrapper .breadcrumb__item::before,
.breadcrumb-wrapper .breadcrumb__item::after,
.breadcrumb-wrapper li::before,
.breadcrumb-wrapper li::after {
    content: none !important;
    display: none !important;
}

/* "/" separator rendered from template */
.breadcrumb-wrapper .breadcrumb__separator {
    margin: 0 8px;
    color: #666;
    font-size: 15px;
}

.breadcrumb-wrapper .breadcrumb__link,
.breadcrumb-wrapper a {
    color: #1a237e;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300 !important;
}

.breadcrumb-wrapper .breadcrumb__link:hover,
.breadcrumb-wrapper a:hover {
    text-decoration: none !important;
}

/* Last breadcrumb__item: non-clickable, normal weight, dark */
.breadcrumb-wrapper .breadcrumb__item:last-child .breadcrumb__link,
.breadcrumb-wrapper .breadcrumb__item:last-child a,
.breadcrumb-wrapper .breadcrumb__item:last-child {
    color: #1a1a1a;
    font-weight: 300 !important;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word;
}


/* ── Page spacing: content area ── */
/* main {
    padding: 0px 0px 40px;
} */

/* .container {
    padding: 0px;
} */

main .region--content {
    max-width: 100%;
}

/* ── Kill Olivero's CSS grid on .grid-full — use simple block layout ── */
/* This prevents the multi-column grid tracks from breaking our layout    */
.grid-full,
main .grid-full,
main .layout--pass--content-medium,
main .layout--pass--content-medium .grid-full {
    display: block !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
    grid-column-gap: unset !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ── Global 1400px max-width container for header, content, footer ── */
.header .me-container,
.header>.me-container {
    /* max-width: 1400px;
    margin-left: auto;
    margin-right: auto; */
    /* padding: 0; */
}

.header {
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
    box-shadow: none !important;
}

main {
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

/* Minimal-content pages (404, 403, user profile) — enforce a sensible
   page height so the footer doesn't sit right under a few lines of
   content. Shared globally since these pages don't all load the same
   template's inline styles. */
main.main--404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

footer.footer,
.footer {
    box-sizing: border-box;
}

/* Ensure content regions fill available width */
.block-system-main-block,
.region--content,
.layout--pass--content-medium {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Remove Olivero page title spacing */
/* .page-title {
    margin: 0 0 16px 0;
} */

.block-system-main-block>.block__content {
    margin: 0;
    padding: 0;
}

/* ── Hide contextual links (pencil icon) ── */
.contextual-region .contextual,
.contextual-region>.contextual {
    display: none !important;
}

/* ── Remove Olivero default block hover outline ── */
.block:hover,
.block:focus-within,
.contextual-region:hover,
.contextual-region:focus-within {
    outline: none !important;
    box-shadow: none !important;
}

.block::after,
.block::before {
    display: none !important;
}

/* HEADER RESPONSIVE */
@media only screen and (max-width: 1280px) {
    .header {
        padding: 20px 0;
    }
}

@media only screen and (max-width: 1024px) {
    .header {
        padding: 12px 0;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .me-logo {
        width: 140px;
        height: auto;
    }

    .logo-brand {
        font-size: 1.2em;
    }

    /* Hide menu */
    .menu {
        display: block;
        position: fixed;
        top: calc(var(--me-banner-height, 0px) + 68px);
        right: 10px;
        width: 340px;
        /* height: calc(100vh - 60px); */
        background: rgba(31, 63, 163, 0.98);
        padding: 12px;
        z-index: 99999;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        border: 4px solid #094de1;
    }

    /* Right section */
    .right {
        gap: 10px;
        display: none;
    }

    .subscribe {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* Hamburger */
    .hamburger {
        display: block;
        font-size: 28px;
        cursor: pointer;
        position: relative;
        margin-left: auto;
        width: 42px;
        height: 42px;
        line-height: 42px;
        background: none;
        border: none;
        padding: 0;
        z-index: 100000;
    }

    .hamburger::before {
        content: ' ';
        display: block;
        font-size: 30px;
        line-height: 42px;
        color: #000;
    }

    .hamburger.active::before {
        content: ' ';
        font-size: 32px;
    }

    .menu.active {
        transform: scaleY(1);
    }

    .main-menu {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item>a {
        color: white !important;
        font-size: 14px;
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 8px 0;
    }


    /* Base dropdown */
    .dropdown {
        position: static !important;
        display: block !important;
        width: 100%;
        margin-top: 0;
        color: white;
        background: transparent;
        box-shadow: none;
        padding: 0;
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s ease, max-height 0.4s ease, padding 0.3s ease;
        height: auto;
    }

    .menu-item ul {
        background: transparent;
        position: static;
    }

    .menu-item:hover>ul,
    .menu-item:hover>.dropdown {
        display: block !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: scaleY(0) !important;
        max-height: 0 !important;
    }

    .menu-item.open>.dropdown,
    .menu-item.open>ul {
        transform: scaleY(1) !important;
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 600px !important;
        padding: 10px 0;
        overflow: visible;
    }

    .dropdown a {
        color: #e0e6ff;
        font-size: 14px;
        padding: 10px 0 10px 15px;
    }

    .has-dropdown>a::after {
        transition: transform 0.3s ease;
        border: solid white;
        border-width: 0 2px 2px 0;
    }

    .menu-item.open>a::after {
        transform: rotate(225deg);
    }

    /*  newsletter media query */
    .newsletter-footer-box {
        padding: 10px 25px;
    }

    .newsletter-back {
        width: 90%;
    }

    select#country_state,
    select#ukcountry_region {
        width: 100%;
    }

    .video-info {
        position: static;
    }

    /* mobile banner */
    .mobilepromo-section .mob-banner-vis {
        display: block !important;
        margin-top: 20px;
    }

    .mobilepromo-section .web-banner-vis {
        display: none !important;
    }

    .mobilepromo-section br {
        display: none;
    }

    .more-arrow {
        display: none;
    }

    .same-category-posts {
        margin: 0;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .tech-cta {
        display: none;
    }
}

/* Tablets - max-width: 820px */
@media only screen and (max-width: 992px) {
    .newsletter-footer-box {
        padding: 15px 20px;
    }

    .newsletter-back {
        width: 95%;
        margin: 25px auto;
    }

    input#emailNL,
    select {
        width: 100%;
        margin: 5px 0;
        height: 45px;
    }

    .newsltr-opn {
        width: 25px;
        height: 25px;
        font-size: 1.1em;
    }
}


/* Mobile - max-width: 650px */
@media only screen and (max-width: 650px) {
    section {
        padding: 20px 0!important;
    }

    #newsletter-section {
        background-size: cover;
        background-position: center;
    }

    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-footer-box {
        padding: 20px;
        color: #fff;
    }

    .newsletter-back {
        width: 100%;
        margin: 20px 0;
    }

    .newsletter-front>img {
        width: 30%;
        min-width: 100px;
        margin: 0 auto 15px;
        padding-right: 0;
    }

    .newsletter-front h2 {
        font-size: 1.5em;
        line-height: 1.2;
    }

    input#emailNL,
    select {
        width: 100%;
        margin: 8px 0;
        padding: 10px 12px;
        height: 45px;
    }

    select#zccountry,
    select#country_state,
    select#ukcountry_region {
        width: 100%;
        margin: 8px 0 !important;
    }

    .dwn-priv {
        margin: 15px 0;
        font-size: 12px;
    }

    .btn-submits button {
        padding: 10px 40px;
        font-size: 14px;
        width: 100%;
    }

    .videocastscr.newsletter-footer-box {
        position: fixed;
        width: 90%;
        padding: 30px;
    }

    .videocastscr input#emailNL,
    .videocastscr select {
        width: 100%;
    }

    .newsltr-opn {
        font-size: 1.2em;
        width: 30px;
        height: 30px;
    }

    .video-info {
        display: none;
    }

    .cat-posts {
        width: 100%;
        margin-bottom: 0px;
        clear: both;
        padding: 0;
    }

    .post-feature-img img {
        width: 100%;
        height: 170px;
    }

    .header-post {
        width: 100%;
        position: relative;
        padding: 25px 25px;
        right: 0;
    }

    .mobilepromo-section {
        padding: 50px 0 0;
    }

    .video-podcasts {
        min-height: 200px !important;
    }
    .single-podcast-container #listn-podcast-section {
        padding: 0px 0;
    }
}

@media (min-height: 700px) {
    .video-opt {
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .header-banner {
        flex-direction: column;
    }

    .single-post-title {
        font-size: 1.6em;
    }

    .single-post-container .row {
        flex-direction: column;
        gap: 20px;
    }

    .sticky-sidebar {
        position: static;
        max-height: none;
        margin-bottom: 30px;
    }

    #ez-toc-container .ez-toc-list {
        max-height: none;
    }

    .tts-widget.scrolled-widget {
        position: static;
        max-width: 100%;
    }

    .page-header-videocast,
    .videocasts-single,
    #primary {
        padding: 0 0 40px 0 !important;
    }

    .video-info {
        position: static;
        width: 100%;
        text-align: center;
    }

    .videocast-in-wrap-1 iframe {
        height: auto;
    }

}

@media (max-width: 480px) {
    .post-author-det {
        flex-wrap: wrap;
    }

    .single-post-title {
        font-size: 1.3em;
    }

    #article-content {
        font-size: 1em;
    }

    /* .video-podcasts{
        min-height: 200px !important;
    } */
}

/* ============================================
   MAGAZINE PAGE STYLING
   ============================================ */
.cover-popup {
    display: none !important;
}

#pdf-wrap-container {
    width: 100%;
    max-width: 1400px;
    margin: 0;
    padding: 50px;
    background: #f6f6f6;
}

#pdf-container {
    width: 100%;
    height: 80vh;
    overflow: scroll;
}


#pdf-iframe {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    height: 90vh;
    position: relative;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#pdf-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
}

.page {
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page canvas {
    width: 100%;
    height: auto;
}

#subscription-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.magazine-title {
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    margin: 0 0 30px 0;
    text-align: center;
    padding: 20px;
    background: #244394;
}

.magazine-form form {
    width: 80%;
    margin: auto;
    text-align: center;
}

.close-popup {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 23px;
    border-radius: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    border: 1px solid #fff;
}

.close-popup:hover {
    background: #fff;
    color: #244394;
}

#pdfsection {
    position: relative;
}

#subscription-popup .form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #c9c6c6;
    border-radius: 4px;
    box-shadow: none;
    position: relative;
    margin-bottom: 32px;
    transition: border ease 1.5s;
    -webkit-transition: border ease 1.5s;
    -moz-transition: border ease 1.5s;
}

.form-control .label {
    position: absolute;
    transform: translate(0%, -50%);
    top: 50%;
    left: 30px;
    transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -webkit-transition: all ease 0.4s;
    font-size: 16px;
    z-index: 8;
    opacity: 0.7;
}

.form-control input#emailNL,
.form-control input#mag_emailNL,
.form-control select {
    width: 100%;
    outline: none;
    border: none;
    background: none !important;
    height: 100%;
    padding-left: 20px;
    font-size: 1.2em;
    position: relative;
    z-index: 9;
    opacity: 1;
    color: #444;
    resize: none;
    font-family: "ZohoPuvi";
}

.form-control.active-row {
    border: 1px solid #fff;
}

.form-control.active-row select {
    opacity: 1;
    color: #444;
}

.active-row.form-control::before {
    border-top-color: #3754ff;
    border-right-color: #3754ff;
    transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
    width: 100%;
    height: 100%;
}

.active-row.form-control::after {
    border-bottom-color: #3754ff;
    border-left-color: #3754ff;
    transition: border-color 0s ease-out 0.3s, width 0.15s ease-out 0.3s,
        height 0.15s ease-out 0.45s;
    width: 100%;
    height: 100%;
}

.form-control.active-row .label {
    top: 0;
    background: #fff;
    padding: 0 6px;
    left: 15px;
    font-size: 1em;
    opacity: 1;
}

.popup .form-control.active-row .label {
    background: #fff;
}

#subscription-popup .uscountry.form-control.active-row .label {
    z-index: 99;
}

#subscription-popup .form_dropdown {
    margin-bottom: 15px;
}

select#zccountry,
select#mag_zccountry {
    padding: 0 !important;
    padding-left: 25px !important;
}

.form-control input#emailNL,
.form-control input#mag_emailNL,
.form-control select {
    width: 100%;
    outline: none;
    border: none;
    background: none !important;
    height: 100%;
    padding-left: 20px;
    font-size: 1.2em;
    position: relative;
    z-index: 9;
    opacity: 1;
    color: #444;
    resize: none;
    font-family: "ZohoPuvi";
}

#subscription-popup .form-control.btn-submits {
    border: none;
}

.popup-content p.email-error {
    top: 7px;
}

.popup-content form {
    width: 80%;
    padding-bottom: 20px;
    margin: auto;
    text-align: center;
}

.popup-content .btn-submits button {
    margin-top: 20px;
}

.popup-content .btn-submits button:hover {
    background: #ffd95e;
}

.popup-content #meGDPRMessage label {
    font-size: 15px;
    margin-bottom: 20px;
}

.popup-content #meGDPRMessage label a {
    color: #111c95;
}

.fullscreenoverlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999999;
    background: #ffffff;
}

.fullscreenpdf {
    width: 100%;
    height: 100%;
}

.fullscreenpdf iframe {
    width: 100%;
    height: 100%;
}

span.fulscr_close {
    cursor: pointer;
    display: inline-block;
    background: #ffc300;
    color: #000;
    font-weight: 600;
    right: 50px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: absolute;
    bottom: 50px;
    z-index: 9999999999;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
}

span.fulscr_close:hover {
    background: #fff;
}

#fullscreen {
    display: inline-block;
    cursor: pointer;
    background: #323639;
    right: 18px;
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 100%;
    position: absolute;
    bottom: 25px;
}

#fullscreen:hover {
    background: #454a4d;
}

/* ── Homepage Sidebar (WP-matching) ── */
.featured-section-home__sidebar.home-widget {
    border-left: 1px solid #e3e1e1;
    padding-left: 30px;
    padding-top: 0;
}

.home-search input#homepage-search-input {
    width: 90%;
    padding: 5px 15px;
    font-size: 1em;
    border: 1px solid #e3e1e1 !important;
    border-radius: 25px;
    background: url(../../../../sites/default/files/static/search.png) no-repeat #fff;
    background-size: 20px;
    background-position: 95% center;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    height: 34px;
    box-sizing: border-box;
}

.home-search input#homepage-search-input:focus {
    border: 1px solid #111c95 !important;
    outline: none !important;
    box-shadow: none !important;
}

.home-search input#homepage-search-input::placeholder {
    color: #aaa;
}

.home-search .home-search-plain__btn {
    display: none;
}

.featured-section-home__sidebar .home-tags {
    margin-top: 0;
}

.featured-section-home__sidebar a.tag-cloud-link {
    color: #494949;
    display: inline-block;
    border: 1px solid #e3e1e1;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
    font-size: 0.84rem;
    text-decoration: none;
    background: transparent;
}

.featured-section-home__sidebar a.tag-cloud-link:hover {
    color: #111c95;
    border-color: #111c95;
    background: transparent;
}

.featured-section-home__sidebar .home-trending-post {
    background: #f1f4ff;
    padding: 20px;
    border-top: 5px solid #012b6e;
    margin-top: 30px;
}

.featured-section-home__sidebar .home-trending-post h3.widget-title {
    margin-top: 5px;
}

.featured-section-home__sidebar .trending-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.featured-section-home__sidebar .trending-posts li {
    margin-bottom: 0;
}

.featured-section-home__sidebar .trending-posts a {
    color: #000;
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    text-decoration: none;
}

.featured-section-home__sidebar .trending-posts a:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #111c95;
    position: absolute;
    top: 7px;
    left: 2px;
}

.featured-section-home__sidebar .trending-posts a:after {
    content: "";
    width: 8px;
    height: 8px;
    border: 1px solid #111c95;
    position: absolute;
    top: 5px;
    left: 0px;
}

.featured-section-home__sidebar .trending-posts a:hover {
    color: #111c95;
}

.featured-section-home__sidebar .trending-posts h3 {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0;
    margin-top: 0;
}

@media only screen and (max-width: 1025px) {
    .featured-section-home__sidebar.home-widget {
        border-left: none;
        padding-left: 15px;
    }
}

@media only screen and (max-width: 1450px) {
    /* #pdf-wrap-container { max-width: 90%; }
    #pdf-iframe { max-width: 90%; } */
}

@media only screen and (max-width: 1025px) {
    #pdf-wrap-container {
        width: 100%;
    }

    #fullscreen {
        display: none;
    }
}

/* ── Tech in a Minute (WP-matching) ── */
#tech-sec {
    padding-bottom: 0;
}

#tech-sec .container {
    padding-bottom: 60px;
    border-bottom: 1px solid #e3e1e1;
}

.home-tech {
    display: block;
    color: #000;
    text-decoration: none;
}

.home-tech:hover .home-tech h3{
    color: #111c95;
}

.home-tech img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center;
    display: block;
    height: auto;
}

.home-tech h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 10px 0 0;
    line-height: 1.4;
}

.dis-cta {
    display: block;
    text-align: center;
    color: #000;
    font-size: 1.25em;
    text-decoration: none;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

.dis-cta.tech-cta {
    transform: none;
    position: static;
    padding-top: 50%;
}

a.dis-cta:hover {
    color: #153caa;
}

.dis-cta b {
    font-weight: 500;
    display: inline-block;
    margin-top: 3px;
}

.dis-cta span {
    display: block;
    width: 80px;
    height: 80px;
    background: #1e499a;
    margin: 0 auto;
    padding: 20px;
    border-radius: 100%;
    box-sizing: border-box;
}

.dis-cta span img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

#tech-sec .row {
    margin-top: 30px;
}

.home-article-discover-icon {
    background: #1e499a !important;
}

.region> :where(:not([data-big-pipe-placeholder-id])) {
    margin-bottom: 0 !important;
}

.static-page-content {
    padding: 0 !important;
}

@media only screen and (max-width: 1400px) {}

@media only screen and (max-width: 1025px) {


    .dis-cta.tech-cta {
        padding-top: 30px;
        padding-bottom: 10px;
    }
}

@media only screen and (max-width: 650px) {
    #tech-sec .cols-sd-6 {
        margin-bottom: 15px;
    }

    #tech-sec .cols-sd-6:nth-child(2n+1) {
        clear: left;
    }

    .home-tech img {
        aspect-ratio: 9 / 16;
        object-fit: cover;
        height: auto;
        width: 100%;
    }

    .dis-cta.tech-cta {
        padding-top: 20px;
    }

    .dis-cta span,
    .media-box .dis-cta span {
        width: 50px;
        height: 50px;
        padding: 14px;
    }
}

/* =============================================================
SEARCH PAGE
============================================================= */

/* ── Banner ── */
.search-page-header {
    background: linear-gradient(135deg, #094de1 0%, #163caa 100%);
    color: #fff;
    padding: 56px 0 48px;
    text-align: center;
}

/* Force all text inside the banner to white — prevents any global rule from overriding */
.search-page-header,
.search-page-header p,
.search-page-header h1,
.search-page-header strong,
.search-page-header span {
    color: #fff !important;
}

.search-page-header .container {
    padding: 0 24px;
}

.search-page-header__label {
        font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75) !important;
    margin: 0 0 10px;
    letter-spacing: 0;
    text-transform: none;
}

.search-page-header__query {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #fff !important;
    margin: 0 0 14px;
    word-break: break-word;
    line-height: 1.2;
}

.search-page-header__count {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
}

.search-page-header__count strong {
    font-weight: 700;
    color: #fff !important;
}

/* ── Main content area ── */
.search-page-main {
    padding: 48px 0 64px;
}

.search-page-main > .container {
    padding: 0 24px;
}

/* ── 3-column card grid ── */
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
    margin-bottom: 40px;
    width: 80%;
    margin: 0 auto 40px;
}

/* ── Individual card ── */
.search-card {
  display: flex;
  flex-direction: column;
  background: none;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
}

/* Fade-in animation for lazy-loaded cards */
.search-card--entering {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.search-card--visible {
    opacity: 1;
    transform: translateY(0);
}

.search-card__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Thumbnail */
.search-card__image-link {
    display: block;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.search-card__image {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

/* Category badge — colors/weight matched to the homepage featured-section
   half-content cards (.featured-grid-card__category), which have no hover
   state at all. */
.search-card__category {
    display: inline-block;
    color: #1e499a;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    margin: 14px 0px 6px 0px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

/* Title */
.search-card__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 10px 0 12px 0;
    flex: 1;
}

.search-card__title a {
    color: #111;
    text-decoration: none;
}

.search-card__title a:hover {
    color: #111c95;
}

/* Author row */
.search-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 16px 0;
    margin-top: auto;
}

.search-card__author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.search-card__author-name {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Load-more sentinel & spinner ── */
.search-load-more-sentinel {
    height: 1px;
    margin-top: -1px;
}

.search-loading-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 0;
    font-size: 14px;
    color: #555;
}

/* Rotating spinner */
.search-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(9, 77, 225, 0.2);
    border-top-color: #094de1;
    border-radius: 50%;
    animation: search-spin 0.75s linear infinite;
}

@keyframes search-spin {
    to { transform: rotate(360deg); }
}

/* "End of results" notice */
.search-no-more {
    text-align: center;
    color: #aab0bf;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.04em;
    padding: 20px 0 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.search-no-more::before,
.search-no-more::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e4e7ef;
}

/* Empty state */
.search-empty {
    padding: 72px 24px;
    text-align: center;
    color: #555;
}

.search-empty__msg {
    font-size: 17px;
    margin-bottom: 32px;
    color: #444;
}

.search-empty__form {
    display: inline-block;
}

.search-empty__input-wrap {
    display: flex;
    align-items: stretch;
    border: 1.5px solid #d0d8f0;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 12px rgba(9, 77, 225, 0.08);
    min-height: 48px;
    transition: border-color 0.2s;
}

.search-empty__input-wrap:focus-within {
    border-color: #094de1;
}

.search-empty__input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 16px;
    font-size: 15px;
    min-width: 240px;
    background: transparent;
    color: #111;
    -webkit-appearance: none;
}

.search-empty__input::-webkit-search-cancel-button {
    display: none;
}

.search-empty__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 22px;
    background: #ffc300;
    color: #000000 !important;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.15s;
    border-radius: 0 5px 5px 0;
}

.search-empty__btn:hover {
    background: #ffc300;
}

.search-empty__btn img {
    filter: brightness(100) invert(1);
    width: 16px;
    height: 16px;
    display: block;
    -webkit-filter: brightness(100) invert(1);
}

/* Hidden pager */
.search-pager-hidden {
    display: none !important;
}

/* Author link inside card */
.search-card__author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }
}

@media (max-width: 600px) {
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .search-page-header {
        padding: 40px 0 36px;
    }

    .search-card__image {
        height: 180px;
    }

    .search-card__category {
        font-size: 13px;
        margin: 12px 14px 6px;
    }
}

/* =============================================================
   HEADER SEARCH
   ============================================================= */

.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

/* ── Toggle icon button ── */
.header-search-toggle {
    background: none;
    border: none;
    padding: 4px 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.65;
    transition: opacity 0.15s;
    border-radius: 4px;
    line-height: 1;
}

.header-search-toggle:hover,
.header-search-wrap.is-open .header-search-toggle {
    opacity: 1;
}

.header-search-toggle img {
    display: block;
    width: 19px;
    height: 19px;
    object-fit: contain;
}

/* ── Dropdown panel — hidden by default ── */
.header-search-form {
    position: absolute;
    top: auto;
    right: 0;
    width: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
    border: 1.5px solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: width 0.22s ease, opacity 0.18s ease, border-color 0.18s;
    z-index: 2000;
    white-space: nowrap;
    min-height: 44px;
}

/* ── Open state ── */
.header-search-wrap.is-open .header-search-form {
    width: 450px;
    opacity: 1;
    pointer-events: auto;
    border-color: #d0d8f0;
}

/* ── Input wrapper (input + clear) ── */
.header-search-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 4px 0 14px;
    border-right: 1.5px solid #dde2ef;
    background: #fff;
    border-radius: 5px 0 0 5px;
}

.header-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 4px 10px 0;
    font-size: 14px;
    background: transparent;
    color: #111;
    min-width: 0;
    /* Hide the native browser × in webkit */
    -webkit-appearance: none;
}

.header-search-input::-webkit-search-cancel-button {
    display: none;
}

/* ── Clear (×) button ── */
.header-search-clear {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    font-size: 17px;
    line-height: 1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    transition: color 0.15s;
    flex-shrink: 0;
}

.header-search-clear:hover {
    color: #333;
}

/* ── Blue submit button ── */
.header-search-submit {
    flex-shrink: 0;
    background: #ffc300;
    border: none;
    width: 46px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    transition: background 0.15s;
    padding: 0;
}

.header-search-submit:hover {
    background: #ffc300;
}

.header-search-submit img {
    display: block;
    width: 17px;
    height: 17px;
    object-fit: contain;
    filter: brightness(100) invert(1);
    -webkit-filter: brightness(100) invert(1);
}

/* ── Mobile: full-width panel ── */
@media (max-width: 768px) {
    .header-search-form {
        position: fixed;
        top: auto;
        right: 0;
        left: 0;
        width: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .header-search-wrap.is-open .header-search-form {
        width: 100%;
    }

    .header-search-input-wrap {
        border-radius: 0;
    }

    .header-search-submit {
        border-radius: 0;
        width: 52px;
    }
}


/* ── Gated Article ── */
.gated-content-area {
    position: relative;
}
.gated-content-area #article-content {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}
.gated-content-area #article-content::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #fff 90%);
    pointer-events: none;
}
/* Subscriber-only on gated articles — hide the AI summary toggle/box. */
.gated-content-area .ai-summary-wrapper {
    display: none !important;
}
.gated-article-gate {
    display: block;
    position: relative;
    z-index: 9;
    margin-top: -80px;
}
.gated-article-box {
    text-align: center;
}
.gated-in {
    width: 90%;
    margin: 0 auto;
    padding: 35px 95px;
    background: url(../../../../sites/default/files/static/bglock-3.png), url(../../../../sites/default/files/static/bglock-3.png) #E3EEFF;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: -219px -232px, 552px 267px;
    position: relative;
    overflow: hidden;
}
.gated-in:before {
    content: "";
    position: absolute;
    background: url(../../../../sites/default/files/static/bg-lock1.png) no-repeat;
    background-size: 90%;
    top: 3px;
    right: -52px;
    width: 150px;
    height: 150px;
}
.gated-in:after {
    content: "";
    position: absolute;
    background: url(../../../../sites/default/files/static/pglock-2.png) no-repeat;
    background-size: 90%;
    bottom: -8px;
    left: 0;
    width: 100px;
    height: 100px;
}
.gated-in h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    position: relative;
    z-index: 1;
}
.gated-in > p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.gated-in .clearfix.pr {
    position: relative;
    margin-bottom: 10px;
}
.gated-in .error {
    color: red;
    font-size: 0.8rem;
    display: none;
    margin-bottom: 8px;
}
.gated-in input.txtfield {
    border: 1px solid #c9c6c6;
    background: #fff;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    border-radius: 4px;
    color: #000;
    font-size: 1rem;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.gated-in input.txtfield::placeholder {
    color: #999;
}
.gated-in input.txtfield:focus {
    border-color: #3b82f6;
    outline: none;
}
.gated-in select.zccountry {
    border: 1px solid #c9c6c6;
    background: url(../../../../sites/default/files/static/down-arrow-dark.png) #fff no-repeat;
    background-size: 18px;
    background-position: 95% center;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    border-radius: 4px;
    color: #333;
    font-size: 1rem;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.gated-in select.zccountry:focus {
    border-color: #3b82f6;
    outline: none;
}
.gated-in .dwn-priv {
    margin: 25px 0 25px 0;
    font-size: 14px;
    color: #333;
}
.gated-in .dwn-priv a {
    color: #000;
    text-decoration: underline;
}
.gated-in .btn-submits {
    border: none;
    text-align: center;
}
.gated-in .btn-submits button {
    background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}
.gated-in .btn-submits button:hover {
    background: #fff;
}
.tts-widget.inactive {
    opacity: 0.4;
    pointer-events: none;
}
@media only screen and (max-width: 1025px) {
    .gated-in {
        width: 100%;
        padding: 35px 50px;
    }
}
@media only screen and (max-width: 768px) {
    .gated-in {
        width: 100%;
        padding: 30px 30px;
        background-position: -180px -200px, 350px 250px;
    }
    .gated-in input.txtfield,
    .gated-in select.zccountry {
        width: 100%;
        margin: 5px 0;
    }
}
@media only screen and (max-width: 650px) {
    .gated-in {
        background-position: -159px -194px, 159px 257px;
        padding: 26px;
    }
    .gated-in:before, .gated-in:after {
       display: none;
    }
    .gated-in h3 {
        font-size: 1.6rem;
    }
    .gated-in > p {
        font-size: 0.95rem;
    }
    .gated-in input.txtfield,
    .gated-in select.zccountry {
        width: 100%;
        margin: 5px 0;
    }
    .gated-in .btn-submits button {
        width: 100%;
        padding: 10px 40px;
    }
}

/* ========== USER PROFILE (Zoho account detect) ========== */

.me-sub-user-area {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.me-sub-profile {
    position: relative;
}

.me-sub-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0e143d;
    color: #ffc300;
    border: 2px solid #ffc300;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    transition: background 0.2s, transform 0.15s;
    line-height: 1;
    padding: 0;
    overflow: hidden;
}

.me-sub-avatar:hover {
    background: #1a2155;
    transform: scale(1.08);
}

.me-sub-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.me-sub-avatar-initials {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Dropdown */
.me-sub-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    overflow: hidden;
    animation: meSubDropIn 0.15s ease-out;
}

.me-sub-dropdown--open {
    display: block;
}

@keyframes meSubDropIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Arrow */
.me-sub-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    right: 12px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.06);
}

.me-sub-dropdown-header {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.me-sub-dropdown-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #0e143d;
    color: #ffc300;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.me-sub-dropdown-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.me-sub-dropdown-avatar-initials {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.me-sub-dropdown-info {
    display: flex;
    flex-direction: column;
}

.me-sub-dropdown-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #0e143d;
    line-height: 1.3;
}

.me-sub-dropdown-zhome {
    font-size: 12px;
    color: #2196f3;
    text-decoration: none;
    margin-top: 2px;
}

.me-sub-dropdown-zhome:hover {
    text-decoration: underline;
}

.me-sub-dropdown-email {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 2px;
    word-break: break-all;
}

.me-sub-dropdown-actions {
    padding: 10px 18px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.me-sub-account-link {
    font-size: 13px;
    font-weight: 500;
    color: #2196f3;
    text-decoration: none;
}

.me-sub-account-link:hover {
    text-decoration: underline;
}

.me-sub-logout-btn {
    display: inline-block;
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #d32f2f;
    border: 1px solid #d32f2f;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.me-sub-logout-btn:hover {
    background: #d32f2f;
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .me-sub-dropdown {
        right: -10px;
        min-width: 200px;
    }
}

/* ========== ONE-CLICK SUBSCRIBE BUTTON (Newsletter) ========== */

/* .me-sub-one-click-wrap {
    text-align: center;
    padding: 10px 0;
}

.me-sub-one-click-btn {
    background: #ffc300;
    color: #0e143d;
    border: none;
    border-radius: 5px;
    padding: 14px 48px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.5px;
} */

/* .me-sub-one-click-btn:hover {
    background: #404040;
    color: #fff;
    transform: scale(1.03);
}

.me-sub-one-click-btn:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
} */

/* ========== TOAST NOTIFICATION ========== */

.me-sub-toast {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2e7d32;
    color: #fff;
    padding: 16px 48px 16px 24px;
    font-size: 15px;
    font-weight: 600;
    z-index: 99999;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    letter-spacing: 0.3px;
}

.me-sub-toast--visible {
    opacity: 1;
    transform: translateY(0);
}

.me-sub-toast-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    opacity: 0.8;
}

.me-sub-toast-close:hover {
    opacity: 1;
}

.popup-content .me-sub-one-click-wrap{
    padding: 0 0 30px 0;
}

/* ============================================================================
   MOBILE STYLES - BELOW 450px
   ============================================================================ */
@media only screen and (max-width: 450px) {
    .article-actions {
        padding: 0;
        border-top: none;
        border-bottom: none;
    }
    .single-related-section{
        border-top: none;
    }
}

/* ============================================================================
   ARTICLE PAGE — FOLLOW-UP TWEAKS
   ============================================================================ */

/* TTS widget: keep the "Listen to the article…" label on a single line.
   It otherwise wraps in narrow columns (cols-9 on tablets, scrolled-widget
   fixed bar) and pushes half the text out of view. clamp() scales the
   font-size down so the line shrinks to fit instead of being clipped. */
.tts-widget p {
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    font-size: clamp(0.62rem, 1.6vw, 0.8rem) !important;
}


/* Bottom author card: constrain to 90% width and centre it. */
.author-of-the-post-box {
    width: 100%;
    margin: 20px auto;
}

/* Vertically centre the author name/designation next to the photo. */
.author-of-the-post-box .row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

/* Keep the photo + name/designation side-by-side below 768px too —
   without this, the legacy float-grid column widths can collapse to
   100% and the two columns stack instead of staying in a row. */
@media (max-width: 768px) {
    .author-of-the-post-box .row{
        align-items: self-start;
        gap:20px;
        /* flex: 0 0 auto;
        width: auto; */
    }
    .author-of-the-post-box .row > .cols-3,
    .author-of-the-post-box .row > .cols-md-3,
    .author-of-the-post-box .row > .cols-sd-4 {
        /* width: 25%; */
    }
    .author-of-the-post-box .row > .cols-9,
    .author-of-the-post-box .row > .cols-md-9,
    .author-of-the-post-box .row > .cols-sd-8 {
        /* width: 75%; */
    }
}

/* Gated overlay: undo the legacy `position: absolute; bottom: 0; padding-top: 300px`
   on `.gated-article-box` (style.css ~L3689). That rule was for the old WP
   structure and visually buried the author card + tags + like row below the
   gate. The new structure positions the gate via `.gated-article-gate`. */
.gated-article-box {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto;
    padding: 0;
    background: none;
}

/* ============================================================================
   BACK TO TOP BUTTON
   ============================================================================ */
#backToTop {
    display: none !important;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #163caa;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #094de1;
    box-shadow: 0 4px 16px rgba(9, 77, 225, 0.35);
}

.back-to-top svg {
    pointer-events: none;
}

@media only screen and (max-width: 650px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/*
Theme Name:   Insights Theme
Description:  Custom Drupal theme for ME Insights
Author:       mecdev
Author URL:   https://www.manageengine.com
Version:      1.0
Migrated:     WordPress → Drupal 11
*/


/* Write here your own personal stylesheet */

/* ── Prevent horizontal scroll on mobile ── */
@media (max-width: 768px) {
	html, body {
		overflow-x: hidden !important;
		max-width: 100vw !important;
	}

	body > * {
		max-width: 100% !important;
	}

	.container, .row, [class*="cols-"] {
		box-sizing: border-box !important;
	}
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extralight.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extralight.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extralight.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extralight.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extralight.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 100;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_light.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_light.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_light.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_light.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_light.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 200;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 300;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular_italic.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular_italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular_italic.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular_italic.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_regular_italic.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: italic;
	font-weight: 300;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_medium.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 400;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 500;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold_italic.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold_italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold_italic.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold_italic.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_semibold_italic.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: italic;
	font-weight: 500;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 600;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold_italic.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold_italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold_italic.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold_italic.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_bold_italic.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: italic;
	font-weight: 600;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrabold.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 700;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_black.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_black.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_black.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_black.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_black.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 800;
	text-rendering: optimizeLegibility;
}

@font-face {
	font-family: 'ZohoPuvi';
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrablack.eot');
	/* IE9 Compat Modes */
	src: url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrablack.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrablack.woff2') format('woff2'), /* Modern Browsers */
	url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrablack.woff') format('woff'), url('https://fonts.zohowebstatic.com/zohopuvi/3.5/zoho_puvi_extrablack.ttf') format('truetype');
	/* Safari, Android, iOS */
	font-style: normal;
	font-weight: 900;
	text-rendering: optimizeLegibility;
}
.slick-list,.slick-slider,.slick-track{position:relative;display:block}.slick-slider{box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{top:0;left:0;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-slide,.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-initialized .slick-slide,.slick-slide img{display:block}.slick-arrow.slick-hidden,.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}


html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}

pre {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: 600;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

img {
	border-style: none
}

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

button,
input {
	overflow: visible
}

button,
select {
	text-transform: none
}

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

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

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: 1px dotted ButtonText
}

fieldset {
	padding: .35em .75em .625em
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal
}

progress {
	vertical-align: baseline
}

textarea {
	overflow: auto
}

[type=checkbox],
[type=radio] {
	box-sizing: border-box;
	padding: 0;
	position: relative;
	bottom: 1px;
	display: inline-block;
	margin-right: 2px
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

details {
	display: block
}

summary {
	display: list-item
}

template {
	display: none
}

[hidden] {
	display: none
}

html {
	font-size: 16px
}

button,
input,
optgroup,
select,
textarea {
	color: #111;
	font-weight: 400;
	line-height: 1.8;
	text-rendering: optimizeLegibility
}

.author-description .author-link,
.comment-author .fn,
.comments-title,
.error-404 .page-title,
.main-navigation,
.no-comments,
.not-found .page-title,
.page-description,
.pagination .nav-links,
.post-navigation .post-title,
.site-title,
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 500;
	line-height: 1.2;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}
h1 {
	font-size: 2.25rem
}
p:empty {
    display: none;
}
@media only screen and (min-width:768px) {
	h1 {
		font-size: 2.8125rem
	}
}

.entry-title,
.error-404 .page-title,
.has-larger-font-size,
.not-found .page-title,
h2 {
	font-size: 1.6875em
}

@media only screen and (min-width:768px) {
	.entry-title,
	.error-404 .page-title,
	.has-larger-font-size,
	.not-found .page-title,
	h2 {
		font-size: 2.25em
	}
}
.page-title,
.site-title {
	font-weight: 400
}

.page-description,
.page-links a {
	font-weight: 600
}

.site-description {
	letter-spacing: -.01em
}

.comments-title,
.entry-title,
.error-404 .page-title,
.not-found .page-title,
.post-navigation .post-title,
blockquote {
	hyphens: auto;
	word-break: break-word
}

@media only screen and (min-width:768px) {
	.entry-title {
		hyphens: none
	}
}

p {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #434343;
}

cite,
dfn,
em,
i {
	font-style: italic
}

blockquote cite {
	font-size: .71111em;
	font-style: normal
}

pre {
	font-size: .88889em;
	font-family: "Courier 10 Pitch", Courier, monospace;
	line-height: 1.8;
	overflow: auto
}

code,
kbd,
tt,
var {
	font-size: .88889em;
	font-family: Menlo, monaco, Consolas, Lucida Console, monospace
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help
}

ins,
mark {
	background: #fff9c0;
	text-decoration: none
}

big {
	font-size: 125%
}

a {
	text-decoration: none
}

a:hover {
	text-decoration: none
}

a:focus {
	text-decoration: none
}

html {
	box-sizing: border-box
}

::-moz-selection {
	background-color: #bfdcea
}

::selection {
	background-color: #bfdcea
}

*,
:after,
:before {
	box-sizing: inherit
}

a {
	color: #0073aa
}

a:active,
a:hover {
	color: #005177;
	outline: 0;
	text-decoration: none
}

a:focus {
	outline: thin;
	outline-style: dotted
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin: 1rem 0
}

hr {
	background-color: #767676;
	border: 0;
	height: 1px
}

ol,
ul {
	padding-left: 1rem
}

ul {
	list-style: disc
}

ul ul {
	list-style-type: circle
}

ol {
	list-style: decimal
}

li {
	line-height: 1.8
}

li>ol,
li>ul {
	padding-left: 2rem
}

dt {
	font-weight: 700
}

dd {
	margin: 0 1rem 1rem
}

img {
	height: auto;
	max-width: 100%;
	position: relative
}

input[type=search]::-webkit-search-decoration {
	display: none
}

textarea {
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 100%;
	resize: vertical
}

form p {
	margin: 1rem 0
}
.space-large
{
	height: 50px;
}
.space-medium
{
	height: 30px;
}
.space-small
{
	height: 10px;
}
a {
	color: #111c95
}
a:active,
a:hover {
	color: #005177;
	outline: 0;
	text-decoration: none
}

a:focus {
	outline: thin dotted
}
.text-center
{
	text-align: center;
}
.text-left
{
	text-align: left;
}
.text-right
{
	text-align: right;
}
.text-light
{
	color: #fff!important;
}
.text-dark
{
	color: #000!important;
}
.round-corner
{
	border-radius: 6px;
}
body {
	font-family: 'ZohoPuvi';
	font-weight: 300;
	font-size: 16px;
	background: #fff;
		line-height: 1.6;
	margin: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility
}

:focus {
	outline: 0!important
}
footer {
	position: relative
}

.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
    padding: 0;
}
.container-full
{
	width: 100%;
}
footer {
	background: #292929;
	color: #fff;
		    padding: 0;
}

footer a {
	color: #fff;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}

footer>.container {
	padding: 20px 0
}

#colophon .site-info {
	text-align: center;
	color: #898c90;
	background: #222
}

.footer-para {
	font-size: 15px;
	line-height: 1.5;
	color: #e4e1e1
}

.copyright {
	color: #fff;
	font-size: 14px;
	margin: 20px 0;
}
.copyright a {
    color: #fff;
}
.no-padding-top
{
	padding-top: 0!important;
}
.no-padding-bottom
{
	padding-bottom: 0!important;
}
.rows {
	display: grid;
	grid-template-columns: 32% 32% 32%;
	grid-template-rows: auto;
	grid-column-gap: 2%;
	grid-row-gap: 4%;
	margin: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box
}

.rows-2 {
	grid-template-columns: 49% 49%
}

#contact .widget.widget_custom_html {
	margin: 0
}

section.no-results.not-found {
	min-height: calc(100vh - 200px);
	padding-top: 0;
}

.main-row:after {
	content: "";
	display: table;
	clear: both
}

.main-row {
	margin-left: -10px;
	margin-right: -10px
}



.alm-listing .alm-listing>li:after,
.alm-listing .alm-listing>li:before,
.row:after,
.row:before,
section:after,
section:before,
.container:before,
.container:after, .clearfix:after, .clearfix:before{
	content: "";
	display: table;
	clear: both
}

.row {
	margin-left: -15px;
	margin-right: -15px
}

.cols-10,
.cols-12,
.cols-2,
.cols-3,
.cols-3-extend,
.cols-4,
.cols-5,
.cols-6,
.cols-7,
.cols-8,
.cols-9 {
	float: left;
	padding-left: 15px;
	padding-right: 15px;
	min-height: 1px
}

.cols-12 {
	width: 100%
}

.cols-10 {
	width: 80%
}

.cols-9 {
	width: 75%
}

.cols-8 {
	width: 66.6%
}
.cols-7 {
	width: 58.4%
}
.cols-6 {
	width: 50%
}
.cols-5 {
	width: 41.6%
}
.cols-4 {
	width: 33.3%
}

.cols-3 {
	width: 25%
}
.cols-3-extend {
	width: 20%
}
.cols-2 {
	width: 16.6%
}
.cols-center
{
	    margin: 0 auto;
    float: none;
}
@media only screen and (max-width: 1025px)
{
	.cols-md-12 {
	width: 100%;
}
	.cols-md-10 {
	width: 80%;
}
	.cols-md-9 {
	width: 75%;
}
	.cols-md-8 {
	width: 66.6%;
}
	.cols-md-6 {
	width: 50%;
}
	.cols-md-4 {
	width: 33.3%;
}
	.cols-md-3 {
	width: 25%;
}
	.cols-md-center
	{
		float: none;
		margin: 0 auto;
	}
	.cols-md-hidden
	{
		display: none;
	}
	.mob-only
	{
		display: none;
	}
	.text-md-center
	{
		text-align: center;
	}
}
@media only screen and (max-width: 650px)
{
	.cols-sd-12 {
	width: 100%;
}
	.cols-sd-9 {
	width: 75%;
}
	.cols-sd-8 {
	width: 66.6%;
}
	.cols-sd-6 {
	width: 50%;
}
	.cols-sd-4 {
	width: 33.3%;
}
	.cols-sd-3 {
	width: 25%;
}
	.cols-sd-hidden
	{
		display: none;
	}
}
section {
	padding: 50px 0
}

select#country_state, select#ukcountry_region {
	  margin-top: 25px;
    width: 46%;
    height: 50px;
    padding: 10px 15px;
}
input#searchsubmit {
	display: none
}
.post-no-need {
	display: none!important
}
.newsletter-front > img {
        width: 20%;
    min-width: 150px;
    margin: 0 auto 20px auto;
    display: block;
    padding-right: 30px;
}
.newsletter-back {
    width: 70%;
    margin: 35px auto;
    text-align: center;
}
input#emailNL,
select {
	       border: 1px solid #102472;
    background: #13349e;
    padding: 10px 15px;
    margin: 0 1%;
    height: 50px;
    width: 48%;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 4px;
	    color: #fff;
}
input#emailNL::placeholder
{
	color: #fff;
}
select#zccountry, select#country_state, select#ukcountry_region {
    background: url(../../../../sites/default/files/static/down-arrow.png) #13349e no-repeat;
    background-size: 18px;
    background-position: 95% center;
}
.dwn-priv {
	margin: 25px 0 25px 0;
	font-size: 14px
}
.dwn-priv a
{
	color: #fff;
	text-decoration: underline;
}
.dwn-priv a:hover {
    color: #ffc300;
}
.btn-submits button {
           background: #ffc300;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px 45px;
    font-weight: 500;
    color: #000;
    font-size: 16px;
}
.btn-submits button:hover {
	background: #fff;
}
.loadmore-cat {
	text-align: center;
	margin-top: 40px
}

span#loadMore {
	color: #03093c;
	display: inline-block;
	font-size: 18px;
	cursor: pointer;
	position: relative
}

span#loadMore:after {
	content: "\f103";
	font: normal normal normal 14px/1 FontAwesome;
	position: absolute;
	top: 32px;
	left: 46%;
	transition: all ease .6s
}

@keyframes spin {
	0% {
		transform: rotate(0)
	}
	100% {
		transform: rotate(359deg)
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(359deg)
	}
}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0)
	}
	100% {
		-o-transform: rotate(359deg)
	}
}

span#loadMore.loadicon:after {
	content: "\f021";
	-webkit-animation: spin 2s infinite linear;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear
}

span#loadMore:hover:after {
	top: 38px
}
.alm-listing .readmorelink span {
	margin-left: -2px
}

footer>.container {
	display: none
}

.login-row.panel-row-style {
	background: #fff;
	box-shadow: 0 0 10px rgba(90, 77, 77, .21);
	padding: 50px;
	text-align: center
}

#meGDPRMessage label {
	font-size: 14px;
	cursor: pointer;
	display: block;
}
#meGDPRMessage label a
{
	color: #fff;
	text-decoration: underline;
}
#meGDPRMessage {
	margin-top: 15px;
	margin-bottom: -10px
}

.loadmore-cat {
	display: none
}

ul.post-tags {
	margin-top: 40px;
	margin-bottom: 20px;
	padding-left: 0;
	list-style-type: none
}

.post-tags li {
	display: inline-block;
}
.post-tags li a {
	        color: #000;
    display: inline-block;
    border: 1px solid #000;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
	font-size: 14px;
	background: #fff;
}
.post-tags li a:before {
	content: "#"
}
.post-tags li a:hover {
	    color: #111c95;
    border-color: #111c95;
}
.ajax-load-more-wrap p {
	color: #636364
}
p.in-author {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}
.in-author .date, .in-author .read-time {
	    color: #797979;
    font-style: italic;
    font-size: 0.8em;
}
.ajax-load-more-wrap .entry-meta a.author {
       color: #000;
    font-size: 1em;
    font-weight: 400;
	    line-height: normal;
}
.ajax-load-more-wrap .entry-meta a.author:hover
{
	    color: #111c95;
}
.archive.author .alm-listing .entry-meta {
    display: none;
}
.entry-meta span.date:after {
    content: "|";
	display: inline-block;
	margin: 0px 7px;
}
.entry-meta span.auth-spn {
    display: block;
	font-style: normal;
}
.all-post-section nav.navigation.pagination:after,
.all-post-section nav.navigation.pagination:before,
.author .all-post-section:after,
.author .all-post-section:before,
.author-rows:after,
.author-rows:before {
	content: "";
	display: table;
	clear: both
}

.author-rows {
	text-align: center
}

.author-pics img {
	width: 150px;
    height: 150px;
    border: 5px solid #fff;
    margin: 0 auto 20px auto;
    border-radius: 100%;
    object-fit: cover;
    object-position: top;
    background: #fff;
    display: block;
    float: none;
}
.biography {
	margin-top: 30px;
	text-align: center
}

.author-social li {
	display: inline-block;
	margin-right: 5px
}

h1.author-tit {
	margin: 12px 0 0 0;
	font-size: 30px;
	text-transform: capitalize
}

p.role-info {
	margin-top: 0;
	margin-bottom: 20px
}

.author #all-posts {
	padding: 70px 0
}

.author #all-posts .section-title {
	text-align: center
}

a.author,
span.author-name a {
	text-transform: capitalize
}
a.author:hover,
span.author-name a:hover {
	    color: #111c95;
}
.biography p {
	margin: 10px 0
}

.all-post-section .pagination .nav-links {
	margin: 0;
	display: block;
	text-align: right
}

#success-msg {
	    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 8px;
    background: #4caf50;
    z-index: 99999;
    left: 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
	display: none
}

p.error {
	color: red;
	position: relative;
	margin: 0;
	font-size: 14px;
	display: none
}

p.email-error {
	top: 50px;
	height: 0
}
.search header.page-header {
    padding: 20px 0;
    background: linear-gradient(to bottom, #0f2e95, #2566ed);
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.search-page-section .page-title {
    margin-bottom: 20px;
}
span.nav-next-text, span.nav-prev-text {
    display: none;
}

/* new insight theme style*/

/* end menu*/
/* homepage style */
body.path-frontpage .row {
	margin-left: 0;
	margin-right: 0;
}

.home-page-header {
    padding: 50px 0;
}
.home-banner
{
	height:400px;
    overflow: hidden;
}
.post-type-archive-magazine .home-banner {
    background: url("../../../../sites/default/files/static/magazin-bg1.png"), url("../../../../sites/default/files/static/mag-banner-bg2.png"), linear-gradient(to bottom, #0f2e95, #3071fc);
	background-repeat: no-repeat;
    background-size: contain, contain, cover;
    background-position: 0%, 100%, center;
    padding: 20px 120px 20px 120px;
    border-radius: 8px;
    position: relative;
	height: auto;
}
img.mag-banner {
    width: 55%;
}
.mag-slider
{
	background: #c4e3ff;
	background-size: cover;
	background-position: right;
	padding: 60px 70px 0 70px;
	border-radius: 8px;
	    height: 400px;
	position: relative;
	z-index: 1;
}
.mobslider.mag-slider {
    background: linear-gradient(to right, #2462E7, #103097);
}
.fixed-mag {
    position: absolute;
    bottom: 35px;
    width: 45%;
    right: 70px;
}
.magazines-slider
{
	background: #ffd41d;
}
.magazines-slider .fixed-mag
{
	    width: 32%;
    right: 70px;
    transform: translate(0, -50%);
    top: 50%;
}
.home-slider
{
	background: url(../../../../sites/default/files/static/homebg1.png), url(../../../../sites/default/files/static/homebg2.png), linear-gradient(to bottom, #172C9E, #1D36BC, #203CCE, #223FD5);
	    background-size: 26%, 6%, cover;
    background-repeat: no-repeat;
    background-position: left, right, center;
	       padding: 35px 70px 0 70px;
	border-radius: 8px;
	    height: 400px;
	position: relative;
}
.home-cta {
    display: inline-block;
    background: #003bff;
    color: #fff;
    font-weight: 500;
    padding: 8px 30px;
    border-radius: 5px;
    margin-top: 10px;
}
.magazines-slider .home-cta {
    margin-top: 20px;
}
.home-cta:hover
{
	    background: #000;
	color: #fff;
}
.quiz-home-banner .home-cta
{
	background: linear-gradient(45deg, #0e7afa, #073ed0);
    color: #ffffff !important;
}
.quiz-home-banner .home-cta:hover
{
	background: #073ed0;
}
.mobslider .home-cta {
        background: transparent;
    padding: 0;
    margin: 10px;
}
.mobslider .fixed-mag {
        right: 0;
    top: 0;
    width: 55%;
}
img.emag-bt-ellipse {
       right: 0;
    position: absolute;
    z-index: -1;
    opacity: 1;
    width: 45%;
    transform: translate(0, -50%);
    top: 50%;
    left: 55%;
}
.slick-dots li {
    list-style: none;
	    display: inline-block;
    margin: 0 5px;
	    line-height: normal;
}
ul.slick-dots {
    position: absolute;
    bottom: 10px;
    transform: translate(-50%, 0);
    left: 50%;
    margin: 0;
    padding: 0;
}
.slick-dots button {
    text-indent: -99999px;
    width: 12px;
    height: 12px;
    line-height: normal;
    border-radius: 100%;
    border: none;
    padding: 0;
    box-shadow: 0 0 10px #000000b3;
	    background: #fff;
	cursor: pointer;
}
.slick-dots li.slick-active button {
    background: #ffb70a;
}
.tag-banner
{
	background: url("../../../../sites/default/files/static/tag-banner.png"), linear-gradient(to bottom, #0f2e95, #2566ed);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	padding: 25px 100px 15px 100px;
	border-radius: 8px;

}
.quiz-home-banner
{
	background: url(../../../../sites/default/files/static/insights-banner.jpg);
		    background-size: cover;
		    background-position: right;
	z-index: 9;
}
.tag-banner.banner-wo-image
{
	background: url("../../../../sites/default/files/static/tag-banner.png"), linear-gradient(to bottom, #0f2e95, #2566ed);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
img.banner-img {
       width: 65%;
    display: block;
    margin: 0 auto;
}
.tag-banner img.banner-img {
	margin: 0 auto;
}
h1.page-tit {
        font-size: 2.7em;
    color: #fff;
    position: relative;
    margin-top: 0;
}
.home-slider h1.page-tit {
    margin-top: 80px;
}
.quiz-home-banner.home-slider h1.page-tit
{
	margin-top: 40px;
	color: #000;
}
.quiz-home-banner.home-slider .page-descr
	{
		color: #000;
	}
.post-type-archive-magazine h1.page-tit
{
	margin-top: 8%;
}
.tag-banner h1.page-tit
{
	    margin-top: 30px;
}
.banner-wo-image h1.page-tit {
    margin: 0;
    text-align: center;
    padding: 60px 0;
}
.magazines-slider h1.page-tit
{
	color: #000;
}
.page-descr {
    color: #fff;
    font-size: 1.125em;
    line-height: 1.4;
}
.magazines-slider .page-descr
{
	color: #000;
}
.page-descr p
{
	color: #fff;
}
.page-title {
	    font-size: 1.8em;
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 50px;
}
.boxed-content .page-title,.grey-box-2 .page-title{
    color: white;
}
/* feature section */
 #spotlight {
    padding: 0;
}
.p-heading a {
    color: #000;
}
.p-heading h3 a {
    color: #1e499a;
    font-weight: 300;
}
.p-heading a:hover {
    color: #111c95;
}
.p-heading h3 {
    margin-top: 0;
	margin-bottom: 0;
	font-size: 1em;
}
#half-content .p-heading h3
{
	margin-top: 12px;
	margin-bottom: 10px;
}
.p-heading h2 {
    font-size: 2em;
    font-weight: 600;
	 margin: 8px 0 0 0;
}
p.descr {
    margin: 0;
}
p.published-date {
    color: #bababa;
    font-style: italic;
}
.descr:after
{
content: "...";
margin-left: -2px;
}
.author-dp, .slick-author img.avatar, .insights-author img.avatar, .auth-spn img.avatar, .alm-listing .entry-meta img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
	    position: relative;
    bottom: 1px;
}
.single-post-author span {
    display: block;
    line-height: 1.1;
    font-size: 1.125em;
}
span.author-name {
    margin-bottom: 6px;
}
.author-in {
    display: inline-block;
    vertical-align: middle;
}
.slick-author {
    margin-top: 15px;
}
.author-name a {
        color: #000;
    font-size: 1em;
    font-weight: 400;
	    text-transform: capitalize;
}
.slick-author p {
    margin: 0;
	    position: relative;
}
.imgwide .imgdiv img {
    height: 275px;
    width: 100%;
    object-fit: cover;
	    border-radius: 8px;
	    object-position: center;
}
#content-wide {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e3e1e1;
}
#half-content {
    padding-bottom: 0px;
}
#half-content .imgdiv img {
    width: 100%;
    height: 180px;
    object-fit: cover;
	border-radius: 6px;
}
#half-content .p-heading h2 {
        font-size: 1.1em;
    line-height: 1.4;
	    min-height: 82px;
}
#half-content .single-post-author span {
    font-size: 0.875em;
}
#spotlight .container {
    border-bottom: 1px solid #e3e1e1;
}
#spotlight .cols-9 {
    border-right: 1px solid #e3e1e1;
}
/*tech in a min */
#tech-sec
{
	padding-bottom: 0;
}
#tech-sec .container
{
	padding-bottom: 60px;
	    border-bottom: 1px solid #e3e1e1;
}
.home-tech
{
	display: block;
	color: #000;
}
.home-tech:hover
{
	color: #111c95;
}
.home-tech:hover h3
{
	color: #111c95;
}
.home-tech img {
    /* height: 420px; */
    object-fit: cover;
    object-position: center;
    width: 100%;
}
/* sidebar */
.home-search input#s {
    width: 90%;
    padding: 5px 15px;
    font-size: 1em;
    border: 1px solid #e3e1e1;
    border-radius: 25px;
    background: url(../../../../sites/default/files/static/search.png) no-repeat #fff;
    background-size: 20px;
    background-position: 95% center;
}
.home-search input#s:focus {
	border: 1px solid #111c95;
}
h3.widget-title {
    font-size: 1.3em;
    font-weight: 500;
    margin-top: 40px;
}
a.tag-cloud-link {
    color: #494949;
    display: inline-block;
    border: 1px solid #e3e1e1;
    padding: 3px 20px;
    border-radius: 25px;
    margin: 0 10px 10px 0;
}
a.tag-cloud-link:hover
{
	color: #111c95;
	border-color: #111c95;
}
.tag-cloud-link .tag-link-count {
    display: none;
}
.trending-posts {
    list-style: none;
    margin: 0;
    padding: 0;
}
.trending-posts a {
    color: #000;
    display: block;
    margin-bottom: 15px;
	position: relative;
	display: block;
	padding-left: 15px;
}
.trending-posts a:before
{
	content:"";
	width: 4px;
	height: 4px;
	background:#111c95;
	position: absolute;
	top: 7px;
	left: 2px;
}
.trending-posts a:after
{
	content:"";
	width: 8px;
	height: 8px;
	border:1px solid #111c95;
	position: absolute;
	top: 5px;
	left: 0px;
}
.trending-posts a:hover {
	color: #111c95;
}
.trending-posts h3 {
    font-size: 1em;
    font-weight: 500;
    margin-bottom: 0;
}
.trending-posts p {
	font-size: 0.9em;
    margin-top: 1px;
    color: #297fff;
}
.home-trending-post {
    background: #f1f4ff;
    padding: 20px;
    border-top: 5px solid #012b6e;
    margin-top: 30px;
}
.home-trending-post h3.widget-title {
    margin-top: 5px;
}
/* all article section */
.alm-listing:after, .alm-listing:before{
	content: "";
	clear: both;
	display: block;
}
.alm-listing {
    margin-left: -15px;
    margin-right: -15px;
}
.alm-listing li {
    width: 25%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    list-style: none;
    margin-bottom: 50px;
}
.magazines-lists .alm-listing li
{
	width: 25%;
	    margin-bottom: 0;
}
.magazines-lists .alm-listing li > div {
    padding: 16px;
    border-radius: 7px;
    box-shadow: 0 0 10px #0000001c;
}
.post-type-archive-magazine .magazines-lists .alm-listing li > div {
    box-shadow: none;
    border-radius: 0;
	    background: #f2f2f2;
}
.magazines-lists .entry-meta img
{
	display: none;
}
.tab-section .alm-listing li
	{
		width: 33.3%;
	}
.archive.author .tab-section .alm-listing li
{
	width: 25%;
}
a.allprd-cat {
    display: block;
    color: rgb(30, 73, 154);
    font-weight: 300;
    font-size: 1em;
    margin-top: 23px;
}
.thumblink {
    display: block;
	    margin-bottom: 10px;
	position: relative;
	    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	    border-radius: 6px;
    overflow: hidden;
}
.magazines-lists .thumblink
{
	 box-shadow: none;
}
p.magazine-date
{
	display: none;
}
.magazines-lists p.magazine-date
{
	display: block;
	    margin: 0;
	    font-size: 15px;
}
.thumblink img {
    display: block;
    height: 190px;
    object-fit: cover;
	border-radius: 6px;
	object-position: left;
}
.post-type-archive-magazine .thumblink img, .post-type-archive-magazine .thumblink {
    border-radius: 0;
}
#tab5 .thumblink img
{
	object-position: right;
}
.magazines-lists .thumblink img {
    margin: 0;
	height: 396px;
}
#ajax-load-more
{
	position: relative;
}
.tab-title
{
	display: none;
}
#tab-wrapper {
    padding: 0;
    list-style: none;
	margin: -10px 0 40px 0
}
#tab-wrapper li
{
	display: inline-block;
	padding: 15px;
}
#tab-wrapper li:first-child
{
	padding-left: 0;
}
#tab-wrapper li a {
    font-size: 1.1em;
    color: #616161;
	font-weight: 500;
	position: relative;
	display: block;
}
#tab-wrapper li.active a, #tab-wrapper li:hover a {
	color: #000;
}
#tab-wrapper li:after {
	content: "";
	width: 0;
	height: 3px;
	display: block;
	position: relative;
	bottom: 0;
	background: #1f7aff;
	transition: width ease 0.2s;
	margin: 0 auto;
}
#tab-wrapper li.active:after, #tab-wrapper li:hover:after {
	width: 100%;
}
#mag-section {
    background: #212121;
	padding: 100px 0;
}
.alm-listing[data-taxonomy-terms="podcasts"] a.thumblink:after {
    content: "";
    display: block;
    width: 100%;
    height: 18%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../../sites/default/files/static/insight-podcast.png) #525252 no-repeat;
    background-size: 92%;
    background-position: center;
}
.alm-listing[data-taxonomy-terms="videocasts"] a.thumblink:after, .alm-listing[data-taxonomy-terms="thinkingtech"] a.thumblink:after {
    content: "";
    display: block;
    width: 100%;
    height: 18%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../../sites/default/files/static/insight-videocast.png) #525252 no-repeat;
    background-size: 92%;
    background-position: center;
}
.entry-meta {
    margin-top: 15px;
}
.alm-listing h3 {
    line-height: 1.3;
    font-size: 18px;
    font-weight: 600;
    min-height: 120px;
    margin: 8px 0px;
}
.magazines-lists .alm-listing h3
{
	    min-height: 60px;
}
.magazines-lists p.in-author {
    display: none;
}
.alm-listing h3 a {
        color: #1F1F1F;
    display: block;
    font-size: 1.2rem;
    line-height: 1.4;
}
a.readmore {
    display: block;
    color: #579bff;
    font-weight: 500;
    font-size: 1em;
}
a.readmore:hover {
	    color: #111c95;
}
.alm-listing h3 a:hover
{
	    color: #111c95;
}
body .alm-btn-wrap .alm-load-more-btn {
        background: #ffc300;
    border-radius: 33px;
    font-weight: 500;
    padding: 8px 35px;
    height: auto;
    color: #000;
    font-size: 1.05em;
    cursor: pointer;
}
body .alm-btn-wrap .alm-load-more-btn:hover {
        background: #404040;
    color: #fff;
}
body .alm-btn-wrap .alm-load-more-btn.done {
    cursor: default;
    opacity: .15;
    background-color: #000000;
	color: #fff;
    outline: 0!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
/* not found page */


/* newsletter section */
.newsletter-sec {
       padding: 70px 70px;
    background: transparent linear-gradient(
91deg
 , rgb(0 88 85 / 92%) 0%, rgb(1 39 38 / 76%) 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    position: relative;
}

/* archive page start */
.magazine-fot {
    background: #0728a8 url(../../../../sites/default/files/static/emag-banner.png) no-repeat;
	    padding: 10px 0px;
	    position: sticky;
    bottom: 0;
    z-index: 1000;
	display: none;

}
.mag-para {
	    text-align: center;
    color: #fff;
	    font-weight: 600;
    font-size: 1.1em;
    line-height: normal;
}
.read-more {
	    padding: 10px 40px;
    background: #ffc403;
    display: inline-block;
    margin: 6px 0px;
    font-weight: 600;
    color: #000;
	transition: .2s;
}
.close-icon-magz {
position: absolute;
    right: 1%;
    bottom: 35%;
    width: 30px;
    border-radius: 100%;
    filter: brightness(0) invert(1);
}
.close-icon-magz:hover {
	cursor: pointer;
}
.read-more:hover {
	    background: #fff;
}
#podcast-acord li
{
	cursor: pointer;
}
#podcast-acord.nonpointer li
{
	cursor: inherit;
	pointer-events: none;
}
.maga-grid
	{
		display: none;
	}
	.year-dropdown
	{
		float: right;
position: relative;
	}
	.dropdown-title {
    margin: 0;
}
	.dropdown-title span {
    cursor: pointer;
    position: relative;
		    display: inline-block;
		padding-right: 25px;
}
	.dropdown-title span:after {
    content: "";
    border: solid black;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    position: absolute;
    top: 7px;
    right: 0;
    transition: all ease 0.2s;
    transform: rotate(45deg);
}
	.activedropdown .dropdown-title span:after
	{
		top: 10px;
		    transform: rotate(222deg);
	}
	.year-dropdown {
    float: right;
    position: relative;
    margin-right: 35px;
}
	.dropdown-list {
        margin: 0;
    list-style: none;
    position: absolute;
    background: #fff;
    box-shadow: 0 0 10px #00000038;
    border-radius: 6px;
    width: 250px;
    right: -25px;
    top: 35px;
    overflow: hidden;
    padding: 15px 0;
    z-index: 9;
		    display: none;
}
	.dropdown-list li span {
    display: block;
    padding: 8px 18px;
		cursor: pointer;
}
	.dropdown-list li.active-dropdown span, .dropdown-list li span:hover
	{
		    color: #0f2e95;
	}
@media only screen and (max-height: 950px)
{
	img.emag-bt-ellipse {
    right: 100px;
	}
}
/* single post css */
@media only screen and (max-width: 1500px)
{
	.magazines-lists .thumblink img
	{
		    height: 328px;
	}
	/* .home-tech img
	{
		height: 340px;
	} */
}
@media only screen and (max-width: 1200px)
{
	.container, .single #primary .container {
    max-width: 90%;
}
	.archive.author .tab-section .alm-listing li, .magazines-lists .alm-listing li
{
	width: 33.3%;
}
}
@media only screen and (max-width: 992px)
{
	.left-slick, .right-slick {
    width: 100%;
}
	.left-slick img {
    height: 220px!important;
}
	.alm-listing li, .magazines-lists .alm-listing li {
    width: 50%;
}
	#podcast-acord ul {
    width: 100%;
    margin: 0;
}
	.videocasts-player .podcast-in-wrap-1, .videocasts-player .podcast-in-wrap-2 {
    width: 100%;
}
	.videocasts-player .podcast-in-wrap-1 iframe
	{
		height: 390px;
	}
	.main-menu-more {
    display: none;
}
	h2.single-post-title {
    font-size: 28px;
}
	input#emailNL, select
	{
		width: 45%;
	}
	.tag-banner h1.page-tit {
    margin-top: 10px;
}
	.banner-wo-image h1.page-tit
	{
		    margin: 0;
    padding: 20px 0;
	}
	img.banner-img {
        width:45% !important;
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 31%;
}
	.tag-banner img.banner-img
	{
		        width: 100%;
        display: block;
		position: static;
		margin: 30px auto 0 auto;
	}
	.home-slider, .mag-slider
	{
		height: 350px;
		border-radius: 0;
	}
	.slick-current {
    z-index: 99;
    overflow: hidden;
}
	img.emag-bt-ellipse {
   right: 0;
}
	.post-type-archive-magazine h1.page-tit
	{
		margin-top: 1vh
	}
	.post-type-archive-magazine .home-banner {
    padding: 50px 60px 50px 60px;
}
	img.banner-img
	{
		width: 45%;
	}
	.home-slider h1.page-tit {
    margin-top: 0;
}
	.home-slider .cols-6
	{
		width: 100%;
	}
	.mag-slider
	{
		background: url(../../../../sites/default/files/static/homepage-q3-banner.jpg);
   background-size: cover!important;
	}
}
@media only screen and (max-width: 650px)
{

	.alm-listing li, .magazines-lists .alm-listing li, .archive.author .tab-section .alm-listing li {
    width: 100%;
}
	#menu-nav-menu li {
    margin: 0 5px;
}
	#menu-nav-menu li a
	{
		font-size: 0.875em;
	}
	.page-descr br
	{
		display: none;
	}
	.alm-listing h3 {
    height: auto!important;
    min-height: auto;
}
	#content-wide h2 {
    font-size: 20px;
}
	#half-content h2 {
    font-size: 1.25em;
}
#half-content{
    padding: 16px;
}
	.slick-next, .slick-prev
	{
		    top: 44%;
	}
	.bottom-stripe p {
    line-height: normal;
    margin-bottom: 12px;
}
	.bottom-stripe
	{
		    background-position: 0;
	}
	.thinkingtech-player #podcasts-player iframe.video-podcasts {
    width: 100%;
    height: 300px;
}
	.magazines-lists .alm-listing h3
	{
		min-height: auto;
	}
	.tag-banner img.banner-img
	{
		width: 80% !important;
	}
	.post-type-archive-magazine .home-banner {
        padding: 30px;
    }
	img.mag-banner {
    margin-top: 50px;
}
	.home-slider.quiz-home-banner {
    background-size: cover;
}
}
/* table */
article table, article th, article td {
    border: 1px solid #022826;
    border-collapse: collapse;
}
article th, article td {
    padding: 7px;
}
article table tr:nth-child(even) {
        background-color: #f0f8f7;
}
article table tr:nth-child(odd) {
    background-color: #fff;
}
article table thead tr {
    background: #022826!important;
    color: #fff;
}
article table thead tr:first-child td
{
	border: 1px solid #fff;
}
article table thead tr:first-child td:first-child
{
	border-left: 1px solid #022826;
}
article table thead tr:first-child td:last-child
{
	border-right: 1px solid #022826;
}
table b, table strong
{
	font-weight: bold;
}
#success-msg h3 {
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 0;
}
#success-msg p {
        color: #fff;
}
#success-msg p a{
    color: #fff;
	text-decoration: underline;
}

 /* new style */
.head-container
{
	max-width: 1400px;
}
.site-branding {
    height: 72px;
}
.site-logo {
	-moz-transition: all ease-in-out .5s;
	-webkit-transition: all ease-in-out .5s;
	-o-transition: all ease-in-out .5s;
	transition: all ease-in-out .5s;
}
.site-logo img {
    width: 195px;
}
.custom-logo-link, .logo-brand {
    display: inline-block;
       line-height: normal;
	    vertical-align: middle;
	font-size: 1.5em;
	font-weight: 400;
	color: #231f20!important;
}
.logo-brand:before
{
	content: "|";
	    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    vertical-align: text-top;
}
#top-header {
    width: 100%;
    background: #fff;
	    padding: 15px 0;
	 position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
	    box-shadow: 0 0 10px #00000059;
	transition: 0.8s all ease;
    -webkit-transition: 0.8s all ease;
}
/* WordPress: .admin-bar → Drupal: .toolbar-horizontal / .toolbar-vertical */
.toolbar-horizontal #top-header,
.toolbar-vertical #top-header
{
	top: 32px;
}
.fix #top-header {

}
/* WordPress: .screen-reader-text → Drupal: .visually-hidden */
label.visually-hidden {
    display: none;
}
#search-section:after, #search-section:before, #search-section form:after, #search-section form:after {
    content: "";
    clear: both;
    display: table;
}
#subscribe-section {
   display: inline-block;
}
#search-section {
    margin-right: 15px;
    position: relative;
    margin-top: 7px;
	display: inline-block;
}
#search-section #searchform input#s {
        box-sizing: border-box;
    font-size: .875em;
    line-height: 1.8;
    width: 34px;
    height: 34px;
    transition: all ease .3s;
    -webkit-transition: all ease .3s;
    border: none;
    position: relative;
    background: transparent;
    position: absolute;
    top: -22px;
    right: 0;
	    z-index: 999;
}
.search-section form {
    display: inline-block;
    width: 34px;
    position: relative;
    right: -32px;
}
.search-section img {
    display: inline-block;
    width: 20px;
    vertical-align: middle;
	    position: relative;
    bottom: 1px;
}
#search-section.activeform #searchform input#s {
         width: 400px;
    background: linear-gradient(to right, #fff, #fff, #fff, transparent);
    border: 2px solid #8f8f8f;
    border-radius: 14px;
    padding-left: 10px;
}
#search-section #searchform input#s::placeholder
{
	opacity: 0!important;
}
#subscribe-section a, .media-cta a,.media-cta span {
	        background: #ffc300;
    display: inline-block;
    border-radius: 5px;
    padding: 10px 23px 10px 23px;
    font-weight: 500;
    color: #0e143d;
    font-size: 16px;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 2px;
}

#subscribe-section a:hover, .media-cta a:hover,.media-cta span:hover {
	background: #404040;
	color: #fff;
}
/* menu */
#menu-nav-menu {
    padding: 0;
    margin: 7px 0 0 0;
}
#menu-nav-menu button {
    display: none;
}
#site-navigation {
   position: relative;
}
#menu-nav-menu li {
    list-style: none;
    display: inline-block;
    margin: 0 10px;
    position: relative;
}
#menu-nav-menu > li {
    height: 32px;
}
#menu-nav-menu li a {
    font-weight: 400;
    font-size: 0.937em;
    color: #000;
	display: block;
	    padding-bottom: 5px;
}
#menu-nav-menu > li > a {
    padding-bottom: 22px;
}
.main-navigation .main-menu>li.menu-item-has-children>a:after {
    content: "";
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    position: relative;
    top: 4px;
    margin-left: 10px;
}
.main-navigation .main-menu>li.menu-item-has-children:hover>a:after
{
	border-color:  #094de1;
}
#menu-nav-menu li:hover a {
    color: #094de1;
}
.sub-menu {
    position: absolute;
    text-align: left;
    width: 270px;
        background: #fff;
    padding: 0;
	z-index: 9999;
	display: none;
	padding: 20px 0;
	    box-shadow: 0px 5px 10px rgb(0 0 0 / 35%);
}
#menu-nav-menu li:hover ul.sub-menu {
    display: block;
}
#menu-nav-menu .sub-menu li {
    display: block;
    line-height: 2;
    margin: 0;
}
#menu-nav-menu .sub-menu li a {
    color: #000;
    font-size: 0.875em;
	padding: 10px 30px;
}
#menu-nav-menu .sub-menu li a:hover {
	color: #fff;
	background:#0f2f96;
}

@media only screen and (max-width: 1025px)
{
	#menu-nav-menu > li
	{
		height: auto;
	}
	div#MEmobile {
    position: fixed;
    top: 26px;
	right: 18px;
    cursor: pointer;
    transform: translate3d(0,0,0);
    transition: transform .7s;
    z-index: 9999999;
    width: 30px;
    height: 30px;
    margin: 0;
		display: block;
}
	/* WordPress: .admin-bar → Drupal: .toolbar-horizontal / .toolbar-vertical */
	.toolbar-horizontal div#MEmobile,
	.toolbar-vertical div#MEmobile
	{
		top: 70px;
    right: 24px;
	}
	#MEmobile span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #2b2b2b;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
	#MEmobile span:nth-child(1) {
    top: 0;
}
	#MEmobile span:nth-child(2) {
    top: 8px;
}
	#MEmobile span:nth-child(3) {
    top: 16px;
}
	#MEmobile.active-hamb span:nth-child(1) {
    top: 8px;
    -webkit-transform: rotate(
135deg
);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(
135deg
);
}
 #MEmobile.active-hamb span:nth-child(2) {
    opacity: 0;
    right: -60px;
}
	#MEmobile.active-hamb span:nth-child(3) {
    top: 8px;
    -webkit-transform: rotate(
-135deg
);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(
-135deg
);
}
	.menu-nav-menu-container {
    display: none;
}
	#menu-nav-menu li {
    display: block;
    text-align: left;
    margin-bottom: 10px;
}
	#menu-nav-menu li a {
    display: block;
    padding: 5px 0;
		color: #fff!important;
}
	.main-navigation .main-menu>li.menu-item-has-children>a:after
	{
		border-color: #fff!important;
		transition: all 0.4s ease;
	}
	.menu-nav-menu-container {
    position: absolute;
    background: #163caa;
    top: 56px;
    right: -12px;
    width: 100%;
    border: 4px solid #094de1;
}
	.sub-menu {
    position: static;
    background: transparent;
    padding: 0;
		    border: none;
		box-shadow: none;
}
	#menu-nav-menu li:hover ul.sub-menu {
    display: none;
}
	.main-navigation .main-menu>li.menu-item-has-children>a.act-menu:after
	{
		border-color: #fff;
    transform: rotate(224deg);
    position: relative;
    top: 2px;
	}
	.tag-container {
    padding: 40px 0;
}

}
@media only screen and (max-width: 650px)
{

	.menu-nav-menu-container
	{
		    top: 18px;
	}
}
/* single post style */
.header-banner {
    position: relative;
}
.breadcrumb {
    padding: 0;
    margin: 40px 0 30px 0;
	font-weight: 400;
}
.breadcrumb span.page-description {
    font-weight: 400;
}
.breadcrumb li {
    list-style-type: none;
    display: inline-block;
    font-size: 0.9em;
}
section.page-header {
    padding: 0;
	position: relative;
	    margin-top: 20px;
}
.post-feature-img img {
    width: 100%;
    height: 400px;
    margin: 0 auto;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.post-author {
    float: left;
    clear: none;
    margin: 0;
    padding-left: 15px;
    width: calc(100% - 60px);
    line-height: 1.4;
	font-size: 1.1em!important;
    font-weight: normal;
}
.post-author-det .post-author span
{
	color: #000;
	display: block;
}
body.darktheme .post-author-det .post-author span,body.darktheme .home-trending-plain .widget-title,body.darktheme .home-most-read .widget-title,body.darktheme .articles-home-section__title,body.darktheme .breadcrumb-wrapper .breadcrumb__item:last-child .breadcrumb__link
{
	color: #fff !important;
}
.header-post .post-author span
{
	display: block;
	color: #fff;
}
body.darktheme a,.home-article-discover-label {
    color: #0c1ff9 !important;
}
body.darktheme .single-post-container a {
    color: #467AFB !important;
}
.post-author-name a
{
	font-weight: 600;
	color: #fff;
}
.header-post-podcast .post-author-name a, .header-post-videocast .post-author-name a, .header-post-thinkingtech .post-author-name a
{
	color: #000;
}
body.darktheme .header-post-podcast .post-author-name a, body.darktheme .header-post-videocast .post-author-name a, body.darktheme .header-post-thinkingtech .post-author-name a, body.darktheme .post-author-name a
{
	color: #fff !important;
}
.header-post {
    color: #fff;
    background: #163caa;
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 5px;
    padding: 35px;
}
/* JS (node-articles.js) adds these classes when the article title is long.
   On wide viewports the box widens; on tablets (≤900px) it switches to the
   same full-width stacked layout as mobile so it never overflows the image. */
@media (min-width: 901px) {
    .header-post.header-post--long  { width: 60%; }
    .header-post.header-post--xlong { width: 70%; }
}
@media (max-width: 900px) and (min-width: 651px) {
    /* Stack image above the header-post so the flex row doesn't collapse
       the image to 0 width when header-post switches to position: relative. */
    .header-banner.header-banner--long-title {
        flex-direction: column;
    }
    .header-post.header-post--long,
    .header-post.header-post--xlong {
        width: 100%;
        position: relative;
        right: 0;
        padding: 25px;
    }
}
.header-post:before {
    content: "";
    background: #094de1;
    position: absolute;
    display: block;
    width: 100%;
    height: 5px;
    top: -5px;
    left: 0;
}
.header-post:after {
    content: "";
    background: linear-gradient(to bottom, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    height: 100%;
    width: 5px;
    top: -5px;
    right: -5px;
}
.header-post h3 {
    margin: 0;
}
.post-author-det {
    margin-top: 30px;
}
.header-post-podcast .post-author-det, .header-post-videocast .post-author-det, .header-post-thinkingtech .post-author-det
{
	    margin-bottom: 20px;
}
.header-post-podcast > p,
.header-post-videocast > p{
	font-size: 24px;
    font-weight: 500;
}
.post-author-det img.author-dp {
        width: 50px;
    height: auto;
    border-radius: 50%;
    float: left;
    display: block;
	margin-top: 0px;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
.post-author-det img.avatar {
    width: 50px;
    height: auto;
    border-radius: 50%;
    float: left;
    display: block;
    border-bottom-right-radius: 6px;
    border-top-right-radius: 6px;
}
.header-post a.single-page-tit {
    color: #fff;
    font-weight: 500;
    font-size: 1.1em;
}
.header-post a.single-page-tit:hover
{
	color: #ffc300;
}
.single-post-title {
    font-size: 2.2em;
    line-height: 1.2;
}
#primary {
    padding: 0;
}
.content-area#primary
{
	padding-top: 20px;
}
.single-post-container #main {
    padding-left: 100px;
}

.single-videocast-container #main, .single-podcast-container #main, .single-thinkingtech-container #main {
    padding-right: 80px;
}
.single-post-container #main p, .content-area p, .content-area ul li {
    line-height: 1.7;
    color: #000;
}
.single-post-container #main p.pub-date, .content-area p.pub-date  {
        margin-top: 0;
    color: #848383;
	font-size: 1em;
    font-style: italic;
	    color: #434343;
}
.single-post-container {
    width: 90%;
    margin: 0 auto;
}
#ez-toc-container {
    border: none;
    padding: 0;
}
#ez-toc-container .ez-toc-list {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
    padding-right: 5px;
}
#ez-toc-container .ez-toc-title {
    margin-bottom: 25px;
    display: block!important;
}
.ez-toc-title-container {
    display: table;
    width: 100%;
}
#ez-toc-container .ez-toc-list li
{
	display: block;
	position: relative;
	    margin-bottom: 12px;
	color: #838383!important;
	padding-left: 10px;
	    font-weight: 300;
	cursor: pointer;
	transition: color 0.2s ease;
}
#ez-toc-container .ez-toc-list li:hover,  #ez-toc-container .ez-toc-list li.active-tab{
    color: #000!important;
    text-decoration: none!important;
}
#ez-toc-container .ez-toc-list li:hover:before, #ez-toc-container .ez-toc-list li.active-tab:before
{
	content: "";
	display: block;
	position: absolute;
	height: 100%;
	width: 5px;
	left: 0;
	background: #094de1;

}
.mob-only
{
	display: block;
}
.sticky-sidebar
{
	position: sticky;
	top: 100px;
	max-height: calc(100vh - 150px);
	overflow-y: auto;
	padding-right: 10px;
}
.author-of-the-post-box {
    width: 100%;
    margin: 20px auto;
}
.tag-author-box {
    margin: 100px 0 0;
    width: 100%;
}
.media-author-box.author-of-the-post-box {
	width: 100%;
}
#author-page .author-of-the-post-box {
    width: 100%;
}
.tag-author-box p {
    color: #fff;
}
.tag-author-box a.profile-link
{
	color: #fff;
}
.tag-author-box a.profile-link:hover
{
	color: #fff;
	text-decoration: underline;
}
.tag-author-box .au-li {
    filter: brightness(5);
}
/* single author section  */
.auth-photo
{
	position: relative;
}
.auth-photo img {
    width: 100%;
}
.author-bg
{
	width: 100%;
	height: 100%;
	left: -7px;
	top: -6px;
	position:absolute;
	background: #163caa;
}
.author-bg:before {
    content: "";
    background: #163caa;
    position: absolute;
    display: block;
    width: 5px;
    height: 100%;
    top: -5px;
    left: -5px;
}
.author-bg:after {
    content: "";
    background: linear-gradient(to right, #094de1, #094de1, transparent);
    position: absolute;
    display: block;
    height: 5px;
    width: 100%;
    top: -5px;
    right: 0;
}
.author-pic {
    background: #fff;
    position: relative;
}
.auth-name {
    font-size: 1.5em;
    margin: 0;
}
.single-post .auth-name {
    margin-top: 30px;
}
.auth-details {
    margin: 0;
}
.author-social {
    margin-bottom: 0;
    margin-top: 5px;
    padding: 0;
}
.au-li {
    display: inline-block;
    background: url(../../../../sites/default/files/static/linkedin.png) no-repeat;
    text-indent: -99px;
    width: 35px;
    height: 35px;
    background-size: 60%;
    background-position: center;
    border: 1px solid #0e76a8;
    border-radius: 100%;
	    filter: grayscale(100%) brightness(0.5);
}
.au-li:hover
{
	    filter: none;
}
a.profile-link {
    display: inline-block;
    color: #000;
    font-weight: 500;
    margin-top: 10px;
}
a.profile-link:hover {
	color: #153caa;
}
span.arrow {
    display: inline-block;
    width: 35px;
    height: 35px;
    vertical-align: middle;
    background: url(../../../../sites/default/files/static/arrow-right.png) no-repeat #153caa;
    background-size: 50%;
    background-position: center;
    border-radius: 100%;
    margin-right: 10px;
}
.full-arrow
{
	 width: 55px;
    height: 55px;
	margin: 0 auto;
	display: block;
}
.same-category-posts
{
	margin-right: -10px;
	margin-left: -10px;
	width: 100%;
}
.cat-posts {
    width: 33.3%;
    float: left;
	padding-left: 10px;
	padding-right: 10px;
}
.cat-posts img {
    display: block;
    height: 190px;
    object-fit: cover;
}
.same-category-details h2 {
    font-size: 18px;
	margin-top: 13px;
	    min-height: 65px;
}
.same-category-details h2 a {
    color: #000;
}
.same-category-details h2 a:hover {
    color: #E69701;
}
.more-arrow {
       display: block;
    padding: 90px 45px;
    border-left: 1px solid #7f7b7b;
}
.more-arrow span {
    display: block;
    margin: 10px 0;
    font-size: 1.4em;
    font-weight: 500;
    color: #000;
}
.more-arrow span.full-arrow {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}
.more-arrow:hover span {
	    color: #153caa;
}
/* newsletter section */
#newsletter-section {
        background: url(../../../../sites/default/files/static/subscribe-bg.png),linear-gradient(45deg, #2d52c8, #1b3398);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
    position: relative;
}
.newsletter-footer-box {
        color: #fff;
    padding: 40px 100px;
    position: relative;
	overflow: hidden;
	z-index: 9;
}
.videocastscr .newsletter-back {
    width: 90%;
	    margin-bottom: 0;
}
.newsletter-footer-box.videocastscr
{
	  background: radial-gradient(#3168d9,#111217);
background-size: cover;
background-position: center;
}
.newsltr-opn
{
    display: none;
    position: absolute;
    width: 30px;
    height: 30px;
    color: #14203a;
    background-color: #fff;
    top: 10px;
    right: 10px;
    border-radius: 100%;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
	line-height: 1.9;
}
.newsltr-opn:hover
{
	background: #c5c5c5;
}
.videocastscr .newsltr-opn
{
	display: block;
}
.newsletter-front h2 {
    font-size: 2em;
    font-weight: 500;
    line-height: 1.2;
	margin-top: 0;
}
.videocastscr.newsletter-footer-box {
    position: fixed;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 700px;
    height: auto;
    border-radius: 5px;
    padding: 60px;
	z-index: 999999;
}
.videocastscr .newsletter-front h2 {
    font-size: 1.6em!important;
    padding: 0;
	    margin-top: 0;
}
.videocastscr input#emailNL, .videocastscr select
{
	width: 45%;
}
.videocastscr select#country_state, .videocastscr select#ukcountry_region
{
	    margin-left: 48%;
}
.overlay-newsletter
{
	    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255 255 255 / 59%);
    z-index: 99999;
    display: none;
}
/* homepage newsletter section */
.imgdivs
{
	width: 47%;
	padding-right: 6%;
	float: left;
}
#large-magazine .imgdivs
{
	width: 40%;
	    margin-right: 8%;
	padding: 0;
}
.mag-heading
{
	width: 50%;
	float: left;

}
#large-magazine .mag-heading
{
	width: 52%;
	border-right: 1px solid #646464;
}
#med-magazine .imgdivs {
    width: 25%;
    padding-right: 6%;
}
#med-magazine h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.25em;
}
#med-magazine .mag-heading {
    width: 69%;
}
.mag-heading a{
    color: #fff;
}
.mag-heading:hover h2 a
{
	color: #ffd602;
}
.mag-heading p.descr
{
	color: #e1dada;
}
#large-magazine .mag-heading p.descr
{
	padding-right: 40px;
}
#med-magazine p.descr {
    line-height: 1.5;
}
#med-magazine a.descr {
    display: block;
	line-height: 1.5;
}
#med-magazine .magazine-sec {
    margin-bottom: 22px;
}
.mag-wide .mag-heading h2 {
    margin-top: 0;
    font-size: 1.875em;
	    padding-bottom: 15px;
	    position: relative;
}
.mag-wide .mag-heading h2:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #646464;
    display: block;
    bottom: 0px;
    position: absolute;
    left: 0;
}
a.mag-read {
    color: #ffd602;
    font-weight: 500;
    font-size: 1.125em;
    display: inline-block;
    margin-top: 15px;
}
a.mag-read:hover {
	color: #fff;
}
.dis-cta {
   display: block;
    text-align: center;
    color: #000;
    font-size: 1.25em;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}
.dis-cta.tech-cta {
    transform: none;
    position: static;
    padding-top: 50%;
}
a.dis-cta:hover
{
	    color: #153caa;
}
.dis-cta b{
	font-weight: 500;
	display: inline-block;
	margin-top: 3px;
}
.dis-cta span {
    display: block;
    width: 80px;
    height: 80px;
    background: #1e499a;
    margin: 0 auto;
    padding: 20px;
    border-radius: 100%;
}
.media-box .dis-cta
{
	font-size: 1.125em;
}
.media-box .dis-cta span
{
	width: 65px;
    height: 65px;
	padding: 17px;
}
/* box */
#media-section
{
	padding-top: 100px;
}
.insight-box {
    margin-bottom: 40px;
}
.insight-box:last-child {
    height: 357px;
    border-left: 1px solid #e3e1e1;
	position: relative;
}
.insight-box h3, .media-box h3
{
	font-size: 1em;
	    margin-bottom: 0;
}
.insight-box h3 a, .media-box h3 a
{
        font-weight: 300;
    color: #1e499a;
    display: block;
    font-size: 0.9em;
}
.insight-box h2, .media-box h2
{
	       margin: 10px 0 0 0;
    line-height: 1.3;
    font-size: 1.2em;
    font-weight: 600;
    min-height: 135px;
}
.insight-box h2 a, .media-box h2 a
{
        color: #1F1F1F;
	display: block;
}
.insight-box h2 a:hover, .media-box h2 a:hover
{
            color: #111c95;
}
.insight-box p {
    margin: 0;
	    text-transform: capitalize;
}

.insight-box p a
{
	font-weight: 400;
}
p.insights-date{
    color: #797979;
    font-style: italic;
	font-size: 0.8em;
}
.media-boxes
{
	margin-left: -10px;
	margin-right: -10px;
}
.media-box
{
	padding-left: 10px;
	padding-right: 10px;
	float: left;
	width: 25%
}
.media-box:last-child
{
	position: relative;
	height: 319px;
	border-left: 1px solid #c6c6c6;
}
.media-box:nth-child(1), .media-box:nth-child(2), .media-box:nth-child(3)
{
	width: 33.3%;
	margin-bottom: 40px;
}
.media-box:nth-child(1) .thumblink img, .media-box:nth-child(2) .thumblink img, .media-box:nth-child(3) .thumblink img
{
	height: 250px;
}
.media-box.podcasts a.thumblink:after {
    content: "";
    display: block;
    width: 100%;
    height: 18%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../../sites/default/files/static/insight-podcast.png) #525252 no-repeat;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-size: 92%;
    background-position: center;
}
.media-box.thinkingtech a.thumblink:after, .media-box.videocasts a.thumblink:after {
    content: "";
    display: block;
    width: 100%;
    height: 18%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../../../sites/default/files/static/insight-videocast.png) #525252 no-repeat;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    background-size: 92%;
    background-position: center;
}
.page-header-podcast, .page-header-videocast, .page-header-thinkingtech {
    padding: 20px 0;
}
.sticky-sidebar.media-highlights {
    border-left: 1px solid #cacaca;
    height: auto;
    max-height: none !important;
    overflow: visible !important;
}
.media-highlights h3.widget-title {
    margin-top: 0;
    color: #fff;
    margin-bottom: 10px;
}
.media-highlights .fixed-sidebar {
    background: #000103;
    color: #fff;
    padding: 25px;
    border-top: 5px solid #1b61ff;
}
.media-highlights ul {
    padding-left: 0;
    list-style: none;
}
.media-highlights ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 55px;
	color: #fff;
    font-size: 1em;
}
.media-highlights ul li strong {
    display: inline-block;
    color: #1b61ff;
    position: absolute;
    left: 0px;
}
#disclaimer {
    background: #f0f5ff;
    font-size: 0.9em;
}
body.darktheme #disclaimer {
    background: black;
}
article h3 {
    font-size: 1.8em;
}
article h2 {
    font-size: 2em;
}
#player p {
    margin: 0;
}
.videocast-in-wrap-1 {
    position: relative;
}
.videocast-in-wrap-1 iframe {
    width: 100%;
    height: calc(100vh - 250px);
}
.videocast-signup
{
	    position: absolute;
	cursor: pointer;
	    width: 100%;
	 border-radius: 10px;
    overflow: hidden;
    left: 0;
}
/* WordPress: .wp-post-image → Drupal: plain img */
.videocast-signup img {
    width: 100%;
    height: calc(100vh - 250px);
	    object-fit: cover;
	    margin: 0 auto;
    display: block;
}
img.video-play-btn {
        position: absolute;
    width: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.search-page-section#primary
{
	padding-top: 0;
}
.no-results .page-content p {
    font-size: 18px;
    font-weight: 400;
}
input.search-submit {
    background: #ffc300;
    border: 2px solid #ffc300;
    border-bottom-right-radius: 15px;
    border-top-right-radius: 15px;
    padding: 2px 11px;
}
input.search-field {
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    border-color: #000;
    padding: 2px 5px;
}
.ajax-posts__filter, .category-list li a, .category-list li span
{
	color: #333;
    padding: 5px;
    display: block;
	cursor: pointer;
}
.ajax-posts__filter:hover, .category-list li a:hover, .category-list li span:hover {
    color: #163caa;
}
.ajax-posts__filter:before, .category-list li a:before, .category-list li span:before {
    content: '';
    display: inline-block;
    background: #fff;
    border: 1px solid #4c4c4c;
    border-radius: 3px;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    position: relative;
    top: 2px;
	border-radius: 50%;
}
/* about us */
.boxed-content p:last-child {
    margin-bottom: 0;
}
.grey-box {
    background: #212121;
    color: #fff;
    padding: 60px;
	    border-radius: 6px;
}
.boxed-content
{
	padding-left: 40px
}
.boxed-content .page-title {
    margin-bottom: 0;
}
.boxed-content p, .grey-box-2 p
{
	color: #fff;
}
.grey-box-2 > p {
    min-height: 78px;
}
.grey-box-2 {
    background: #101010;
    color: #fff;
    border-radius: 4px;
    padding: 52px;
}
.grey-box-2 .page-title {
    margin-bottom: 0;
}
.cta {
       display: inline-block;
    padding: 10px 19px;
    background: #ffc304;
    font-weight: 500;
    color: #000 !important;
    text-transform: uppercase;
    border-radius: 2px;
    font-size: 1rem;
	cursor: pointer;
}
.tag-cta {
    margin-top: 12px;
}
.cta:hover {
	background: #fff;
}
ul.social-lists {
    padding: 0;
    list-style: none;
	    margin-bottom: 10px;
}
.social-lists li {
    display: inline-block;
    line-height: normal;
	margin-bottom: 0;
}
.social-lists li a {
    display: inline-block;
	    text-indent: -99999px;
       height: 30px;
    width: 30px;
    border: 1px solid #fff;
    padding: 8px;
    margin: 0 6px;
    border-radius: 100%;
	    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    orphans: unset !important;
}
li.li a
{
	background: url(../../../../sites/default/files/static/ft-linkedin.png) no-repeat 0 0;
    background-size: 50%;
    background-position: 50% 46%;
}
li.li a:hover{background-color: #0e76a8;}
li.tw a
{
	    background: url(../../../../sites/default/files/static/ft-tw.png) no-repeat 0 3px;
    background-size: 45%;
    background-position: 50% 52%;
}
li.tw a:hover{background-color: #000;}
li.fb a
{
	background: url(../../../../sites/default/files/static/ft-fb.png) no-repeat 0 0;
    background-size: 42% !important;
    background-position: center;
}
li.fb a:hover{background-color: #4267b2;}
li.in a
{
	    background: url(../../../../sites/default/files/static/ft-insta.png) no-repeat 0 0;
    background-size: 45%;
    background-position: center;
}
li.in a:hover{background: url(../../../../sites/default/files/static/ft-insta.png) no-repeat 0 0, linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) no-repeat;
    background-size: 45%, 100% !important;
    background-position: center;}
li.yt a
{
	background: url(../../../../sites/default/files/static/ft-yt.png) no-repeat 0 4px;
    background-size: 60%;
    background-position: center;
}
li.yt a:hover{    background-color: red;}
a.team-box {
    display: block;
    color: #000;
	overflow: hidden;
}
.team-box img {
	    transition: all ease 0.6s;
    width: 100%;
    display: block;
    height: 256px;
    object-fit: cover;
    object-position: top;
}
.img-box
{
	 border-radius: 7px;
	overflow: hidden;
}
.team-box:hover img {
	transform: scale(1.1);
}
.team-box h3 {
    margin-bottom: 0;
    font-size: 1.4em;
}
.team-box h3:hover
{
text-decoration: underline;
}
.team-box p {
    margin-top: 3px;
    font-size: 0.9em;
	min-height: 90px;
}
body #meGDPRMessage .checkmarkgdpr {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    bottom: 2px;
}
body #meGDPRMessage .checkmarkgdpr.enableCheckgdpr:before {
    width: 5px;
    height: 10px;
    top: 2px;
    left: 6px;
}
body[data-cls=loading] button.alm-load-more-btn.more {
    opacity: 0;
}
.error-404
{
	min-height: 60vh;
}
.single-post .magazine-fot {
    display: none !important;
}
/* tts widget */
.tts-wrap {
    min-height: 74px;
}
.tts-widget > * {
    display: block;
}
	.tts-widget p {
    margin: 0;
		    padding-left: 20px;
		    padding-right: 20px;
		    font-size: clamp(0.6rem, 1.6vw, 0.8rem) !important;
		    white-space: nowrap;
		    overflow: visible;
		    text-overflow: clip;
}
	.tts-widget audio {
        width: 100%;
    max-width: 100%;
}
	.tts-widget {
    margin-bottom: 20px;
    background: #f2f3f4;
    padding: 0px 20px;
    color: #fff;
    border-radius: 30px;
}
	.tts-widget.inactive {
    pointer-events: none;
    opacity: 0.5;
}
.tts-widget.scrolled-widget {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    margin-bottom: 0;
    border-radius: 0;
	    text-align: center;
	    box-shadow: 0 0 10px #00000026;
	z-index: 9999;
}
body.darktheme .tts-widget {
    background: black !important;
}
/* gated article */
	.group-articles.gated-group {
    position: relative;
}
	.gated-article-box {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 50px 0 100px 0;
    background: linear-gradient(to top, #ffffff, #ffffff, transparent);
}
body.darktheme .gated-article-box {
    background: linear-gradient(to top, #101010, #101010, transparent) !important;
}
	.gated-in {
    width: 90%;
    margin: 0 auto;
    padding: 35px 95px;
     background: url(../../../../sites/default/files/static/bglock-3.png), url(../../../../sites/default/files/static/bglock-3.png) #E3EEFF;
		background-repeat: no-repeat;
		    background-size: contain;
    background-position: -219px -232px, 552px 267px;
    position: relative;
		    overflow: hidden;
}
body.darktheme .gated-in, body.darktheme .single-post-container #main .gated-in p {
    color: #000 !important;
}
	.gated-in h3 {
    font-size: 1.8rem;
}
	.gated-in:before, .gated-in:after {
    content: "";
    width: 100px;
    height: 100px;
    position: absolute;
		pointer-events: none;
}
	.gated-in:before
	{
		background: url(../../../../sites/default/files/static/bg-lock1.png) no-repeat;
		    background-size: 90%;
    top: 3px;
    right: -52px;
    width: 150px;
    height: 150px;
	}
	.gated-in:after
	{
		background: url(../../../../sites/default/files/static/pglock-2.png) no-repeat;
		background-size: 90%;
		     bottom: -8px;
    left: 0;
	}
	.gated-in p {
    font-size: 15px !important;
}
	.gated-article-box span:hover
	{
		background: #163caa;
		color: #fff;
	}
	.gated-in input.txtfield, .gated-in select, .gated-in select#zccountry, .gated-in select#country_state, .gated-in select#ukcountry_region {
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    background: #fff;
    color: #000;
    padding: 8px 15px;
    height: auto;
	width: 48%;
}
	.gated-in select, .gated-in select#zccountry, .gated-in select#country_state, .gated-in select#ukcountry_region
	{
		background: url(../../../../sites/default/files/static/down-arrow-dark.png) #fff no-repeat;
    background-size: 18px;
    background-position: 95% center;
	}
	.gated-in .dwn-priv a {
    color: #000;
}
	.gated-in #meGDPRMessage label a
	{
		color: #000;
	}
	p.email-error1 {
    top: 50px;
    height: 0;
		color: red!important;
		font-size: 0.9rem!important;
}
.cover-popup {
    position: fixed;
    width: 260px;
    height: auto;
    bottom: 50px;
    z-index: 9999;
    right: 50px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 25px 17px #0000002e;
    opacity: 0;
	pointer-events: none;
}
	.cover-popup a {
    display: block;
    line-height: normal;
}
	.cover-popup a img {
    display: block;
}
	.popup-close {
        display: inline-block;
    position: absolute;
    z-index: 9;
    cursor: pointer;
    background: #ffc304;
    width: 35px;
    height: 35px;
    line-height: 32px;
    text-align: center;
    border-radius: 100%;
    font-size: 22px;
    font-weight: bold;
    top: -10px;
    right: -10px;
}
.popup-close:hover
{
	background: #e0aa00;
}
.popup-heading {
    display: block;
    color: #383838;
    font-weight: 500;
    font-size: 16px;
    margin-top: 12px;
}
	.show--bounce-in {
    animation-name: bounceIn;
    animation-duration: 1s;
    animation-fill-mode: both;
		pointer-events: inherit;
}
	.show--bounce-out {
    animation-name: bounceOut;
    animation-duration: 1s;
    animation-fill-mode: both;
}
	@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
	@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(.97, .97, .97);
  }
  40% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  60% {
    transform: scale3d(.9, .9, .9);
  }
  80% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;

    transform: scale3d(.3, .3, .3);
  }
}
.slick-slide .mob-banner-vis {
    display: none;
}
.app-promt {
    background: #FFB800;
    border-radius: 11px;
    padding: 50px 50px 0px;
}
.centerimg {
    text-align: center;
    margin: auto;
}
.app-promt .home-cta{
    padding: 0;
    background: transparent;
        margin-right: 20px;
}
.app-promt .mob-banner-vis {
    display: block;
    width: 70%;
    margin: auto;
}
.app-promt .page-title {
    margin-top: 50px;
    margin-bottom: 20px;
	line-height: 1.3;
	font-weight: 600;
}
.app-promt p {
    color: #000;
}
.mobvis {
    display: none;
}
.webvis {
    display: block;
}
.tag-container p {
    color: #fff;
}
.tag-container h1, .tag-container h2, .tag-container h3,
.tag-container h4, .tag-container h5, .tag-container h6 {
    color: #fff;
}
.tag-container p a, .tag-container h4 a, .tag-container h2 a{
    color: #fff;
	text-decoration: underline;
}
.tag-container .toc ul li a {
    color: #d6d6d6;
}
body.darktheme {
    background: #101010 !important;
    color: #fff !important;
}
body.darktheme #content {
    background: #101010 !important;
}
body.darktheme .single-post-container #main p.pub-date, .content-area p.pub-date {
    color: #9e9e9e !important;
}
body.darktheme .single-post-container #main p, body.darktheme .content-area p, body.darktheme .content-area ul li, body.darktheme p, body.darktheme .alm-listing h3 a
{
	 color: #fff !important;
}
body.darktheme .same-category-details h2 a, body.darktheme .wpulike-heart .count-box {
    color: #efefef !important;
}
body.darktheme .au-li {
    filter: none !important;
}
body.darktheme .wp_ulike_btn {
    filter: grayscale(1) invert(1) !important;
}
body.darktheme .wp_ulike_btn.wp_ulike_put_image:after {
    -webkit-filter: grayscale(1) invert(1) !important;
    filter: grayscale(1) invert(1) !important;
}
body.darktheme a.profile-link {
    color: #163caa !important;
}
body.darktheme a.allprd-cat
{
	color: #ffd602 !important;
}
body.darktheme #block-insights-theme-content {
    background: #101010 !important;
}
body.darktheme .page-title {
    color: #fff !important;
}
body.darktheme .single-post-title,body.darktheme .site-main h3,body.darktheme body.darktheme.field__item h3 {
    color: #fff !important;
}
body.darktheme .breadcrumb-wrapper .breadcrumb__item:last-child {
    color: #fff !important;
}
body.darktheme .breadcrumb-wrapper {
    background: #101010 !important;
}
/* Exclude header and slider from dark theme */
body.darktheme .header {
    background: #fff !important;
    color: #000 !important;
}
body.darktheme .header a {
    color: inherit !important;
}
/* body.darktheme .main-slider {
    background: #fff !important;
} */
/* body.darktheme .slick-slide {
    background: #fff !important;
} */
/* body.darktheme .home-banner,
body.darktheme [class*="banner"] {
    background: #fff !important;
    color: #000 !important;
} */
.ez-toc-debug-messages {
    display: none;
}
article.post p a {
    text-decoration: underline;
}
.slick-slide .emag-responsive
{
	display: none;
}
@media only screen and (min-width: 1600px)
{
	img.emag-bt-ellipse
	{
		left: 50%;
	}
}
@media only screen and (min-width: 1500px)
{
	#large-magazine .imgdivs {
    width: 38%;
}
	.insight-box h2, .media-box h2
	{
		min-height: 115px;
	}
	.tts-widget audio
	{
		    width: 525px;
	}
}
@media only screen and (max-width: 1500px)
{
	.container
	{
		    max-width: 1200px;
	}
	a.tag-cloud-link
	{
		font-size: 13px;
	}
	.magazine-fot {
	    background-position: -10px;

	}
	.tts-widget audio {
    max-width: 58%;
}
	.thumblink img
	{
		    height: 165px;
	}
}
@media only screen and (max-width: 1460px)
{
  .fixed-mag {
    position: absolute;
    bottom: 20%;
    width: 40%;
    right: 30px;
}
    .mobslider .fixed-mag {
    right: -17%;
    top: 0;
    width: 64%;
}
}
@media only screen and (max-width: 1400px)
{
	.media-box:nth-child(1) .thumblink img, .media-box:nth-child(2) .thumblink img, .media-box:nth-child(3) .thumblink img
{
	height: 300px;
}

}
@media only screen and (max-width: 1250px)
{
	.mag-para {
		    padding-left: 180px;
	}
	.container, .tag-container .container
	{
		    max-width: 95%;
	}
	.magazine-fot {
		background-size: cover;
	}
	.read-more {
		    padding: 10px 20px;
        white-space: nowrap;
	}
    .mobslider .fixed-mag {
        right: -30%;
                width: 74%;
    }
	.fixed-mag {
		width: 33%;
	}
}
@media only screen and (max-width: 1024px)
{
    .home-slider, .mag-slider, .home-banner {
        height: 320px;
    }
    .home-slider, .mag-slider {
        padding: 35px 50px 0 50px;
    }
    .fixed-mag {
        width: 50%;
        right: 50px;
    }
    .mobslider h1.page-tit br {
        display: none;
    }
    .mobslider .fixed-mag {
                right: -33%;
        width: 80%;
    }
	body
	{
		font-size: 14px;
	}
	#spotlight .cols-9, #spotlight .container
	{
		border: none;
	}
	#large-magazine .imgdivs {
    float: none;
    margin: 0 auto;
}
	#large-magazine .mag-heading {
    width: 100%;
    border: none;
}
	.mag-wide .mag-heading h2:after
	{
		display: none;
	}
	#large-magazine {
    border-right: 1px solid #646464;
}
	.home-page-header {
    padding: 25px 0;
}
	.rel-arrow {
    display: none;
}
	.single-post-container #main {
    padding-left: 0;
}
	.tts-widget audio
	{
		    max-width: 58%;
	}
        .mobvis {
    display: block;
            margin-top: 50px;
}
.webvis {
    display: none;
}
    .app-promt .page-title {
        margin-top: 0;
    }
	.slick-slide .emag-responsive
	{
		display: block;
		height: 85%;
	}
	.slick-slide .emag-dt
	{
		left: 62%;
	}
}
@media only screen and (max-width: 992px)
{
	.slick-slide .emag-responsive
	{
		height: 66%;
	}
	.insight-box {
    width: 33.3%;
}
	#large-magazine {
    width: 100%;
}
	#med-magazine {
    margin-top: 40px;
}
	.media-box:nth-child(1) .thumblink img, .media-box:nth-child(2) .thumblink img, .media-box:nth-child(3) .thumblink img {
    height: 155px;
}
	.thumblink img {
    height: 125px;
}
	.media-box:last-child {
    height: 235px;
}
	.newsletter-footer-box
	{
		padding: 10px 25px;
	}
	.tab-section .alm-listing li
	{
		width: 50%;
	}
	.newsletter-back {
    width: 90%;
}
	select#country_state, select#ukcountry_region {
    width: 96%;
}
	.magazine-fot {
		    background-position: -80px 0px;
		        padding-right: 60px;
	}
	.mag-para {
		    padding-left: 120px;
	}
    .mobslider .fixed-mag {
                right: -44%;
    }
	.dis-cta.tech-cta {
    padding: 0;
}
	    .slick-slide .emag-dt {
        left: 70%;
        width: 32%;
        top: 65%;
    }
}
@media only screen and (max-width: 820px)
{
    .slick-slide .fixed-mag {
        display: none;
    }
}
@media only screen and (max-width: 650px)
{
	#tech-sec h3 {
    min-height: 100px;
}
#tech-sec .row,.home-articles-grid,.mag-heading{
    padding: 16px;
}
    .slick-slide .mob-banner-vis {
    display: block !important;
    width: 70%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
	.author-of-the-post
	{
		    padding-top: 25px;
	}
	.mag-para {
		text-align: left;
		        padding-left: 30px;
		font-size: 1em;
	}
	.magazine-fot {
		 background: #0728a8;
		        padding-right: 0px;
	}
	.close-icon-magz {
		        left: 8px;
	}
	h1.page-tit
	{
		    font-size: 2.2em;
	}
	#half-content .p-heading h2 {
    min-height: auto;
}
	h1.page-tit br
	{
		display: none;
	}
	.home-banner {
    height: 550px;
}
.home-slider, .mag-slider {
    padding: 30px 30px 0 30px;
		    background-position: 88% bottom;
    background-size: 140%;
    background-repeat: no-repeat;
		height: 550px;
}
	.slick-slide .emag-responsive {
    display: block;
     height: 280px;
        opacity: 1;
		        right: 30px;
}
	.dis-cta span, .media-box .dis-cta span {
    width: 50px;
    height: 50px;
	    padding: 14px;
}
	.breadcrumb {
    margin: 15px 0 10px 0;
}
	.tag-banner
	{
		    padding: 30px;
	}
	img.banner-img {
        width: 80%;
		        margin: 0 auto;
        left: 0;
        right: 0;
}
	.page-title {
    margin-bottom: 25px;
    font-size: 1.8em;
}
	.container, .tag-container .container {
    max-width: 90%;
}
	.imgwide .imgdiv img {
    height: 180px;
}
	#half-content .post.articles {
    margin-bottom: 30px;
}
	.tab-section {
    position: relative;
}
	.tab-head {
    position: sticky;
    top: 70px;
	    z-index: 99;
}
	.tab-title {
		cursor: pointer;
    display: block;
    font-weight: 500;
    font-size: 1.2em;
    background: linear-gradient(to bottom, #0f2e95, #2566ed);
    color: #fff;
    padding: 12px 20px;
		    margin-bottom: 30px;
		position: relative;
}
	.tab-title:after {
		    content: "";
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    top: 50%;
    margin-left: 10px;
    transition: all 0.4s ease;
    right: 6%;
	}
	.tab-title.active-title:after
	{
		transform: rotate(222deg) translate(-50%, -50%);
	 -webkit-transform: rotate(222deg) translate(-50%, -50%);
    top: 38%;
	}
	.tab-wrapper {
    background: #fff;
    position: absolute;
    z-index: 999;
    width: 100%;
    top: 60px;
    box-shadow: 2px 2px 10px #00000030;
		display: none;
}
	#tab-wrapper li {
		    display: block;
        padding: 5px!important;
    margin: 5px 10px;
}
	.insight-box {
    width: 100%;
}
	.insight-box:last-child, .media-box:last-child {
    height: auto;
    border: none;
}
	.dis-cta {
    transform: none;
    position: static;
}
	.media-box {
    width: 100%!important;
		        margin-bottom: 40px;
}
	.insight-box, .tab-section .alm-listing li, .magazines-lists .alm-listing li {
    width: 100%;
}
	.imgwide .imgdiv {
    margin-top: 20px;
}
	.thumblink img {
    height: 125px!important;
}
	.magazines-lists .thumblink img
	{
		height: 227px!important;
	}
	.insight-box h2, .media-box h2
	{
		min-height: auto;
	}
	.author-dp, .slick-author img.avatar, .insights-author img.avatar, .auth-spn img.avatar, .alm-listing .entry-meta img {
    display: none;
}
	#large-magazine .imgdivs {
    margin: 0 auto 15px auto;
    width: 100% !important;
    float: none !important;
}
	#large-magazine .mag-heading {
    width: 100% !important;
    float: none !important;
    border: none !important;
}
	.mag-wide.clearfix {
    width: 100% !important;
}
	#tab-wrapper li {
    padding: 0;
    margin: 5px 9px;
}
	.media-box.thinkingtech a.thumblink:after, .media-box.videocasts a.thumblink:after
	{
		    background-size: 45%;
	}
	.newsletter-front h2
	{
		font-size: 2em;
	}
	input#emailNL {
    width: 100%;
    margin-bottom: 20px;
}
	select
	{
		 width: 100%;
	}
	/* filter page */
	.menu-lists ul {
    display: none;
		width: 90%;
    position: absolute;
    background: #fff;
    left: 0;
    left: 5%;
    margin-top: 0;
    top: 72px;
    box-shadow: 1px 1px 10px #0000002e;
}
	.sticky-sidebar {
        z-index: 9;
	    background: #fff;
	    max-height: calc(100vh - 150px);
	    overflow-y: auto;
	    padding-right: 10px;
}
	.menu-lists {
    width: 50%;
    float: left;
}
	.menu-lists h3 {
    background: linear-gradient(to bottom, #0f2e95, #2566ed);
    padding: 15px;
    color: #fff;
		position: relative;
		    cursor: pointer;
}
	.menu-lists:last-child h3:before {
    content: "";
    width: 1px;
    height: 56%;
    background: #fff;
    display: block;
    position: absolute;
    left: -1px;
    top: 22%;
}
	.menu-lists h3:after
	{
		    content: "";
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    transform: rotate(45deg) translate(-50%, -50%);
    -webkit-transform: rotate(45deg) translate(-50%, -50%);
    position: absolute;
    top: 50%;
    margin-left: 10px;
    transition: all 0.4s ease;
    right: 12%;
	}
	.menu-lists h3.activear:after {
    transform: rotate(222deg) translate(-50%, -50%);
	 -webkit-transform: rotate(222deg) translate(-50%, -50%);
    top: 38%;
}
	.single-post-container {
    width: 100%;
}
	.auth-photo {
    margin: 0 auto 15px auto;
}
	.author-of-the-post-box
	{
		width: 100%;
	}
	span.arrow {
    width: 20px;
    height: 20px;
}
	.post-tags li a {
    font-size: 13px;
    padding: 2px 15px;
}
	.single-post-title {
    font-size: 1.8em;
}
	.same-category-details h2
	{
		min-height: auto;
	}
	.single-videocast-container #main, .single-podcast-container #main, .single-thinkingtech-container #main
	{
		padding-right: 0;
	}
	.cat-posts
	{
		width: 100%;
		        margin-bottom: 50px;
	}
	.header-post
	{
		    width: 100%;
    position: relative;
	    padding: 25px 25px;
		    right: 2px;
	}
	.post-feature-img img {
    width: 100%;
    height: 170px;
}
	ul.alm-listing li:first-child:before {
    transform: scale(0.6);
}
	.videocastscr.newsletter-footer-box {
    width: 90%;
}
	.videocastscr input#emailNL, .videocastscr select {
    width: 100%;
}
	.videocast-in-wrap-1 iframe {
    height: 240px;
}
	/* WordPress: .wp-post-image → Drupal: plain img */
	.videocast-signup img {
    height: 240px;
}
	img.video-play-btn {
    width: 40px;
}
	.videocasts-single#primary {
    padding-top: 0px;
}
	.grey-box, .grey-box-2 {
    padding: 40px 25px;
}
	.grey-box-2 {
    margin-bottom: 20px;
}
	.boxed-content {
    padding: 0;
    margin-top: 20px;
}
	.team-box img {
    height: 140px;
}
	.newsletter-back {
    width: 100%;
}
	.insight-boxes .insights-author {
    margin-top: 15px;
}
	.newsltr-opn
	{
		    font-size: 1.2em;
	}
	.gated-in
		{
			    background-position: -159px -194px, 159px 257px;
			padding: 26px;
		}
		.gated-in:before, .gated-in:after
		{
			display: none;
		}
		.gated-in input.txtfield, .gated-in select, .gated-in select#zccountry, .gated-in select#country_state, .gated-in select#ukcountry_region
		{
			width: 100%;
			        margin: 5px 0;
		}
	.tts-widget {
    text-align: center;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
	.tts-widget p {
    padding: 0;
    margin-bottom: 10px;
    order: -1;
}
	.tts-widget audio {
    max-width: 94%;
    margin-top: 10px;
}
	.cover-popup
	{
		width: 170px;
		        bottom: 20px;
        right: 20px;
	}
	.popup-heading
	{
		display: none;
	}
    .slick-slide .fixed-mag {
        display: block;
        width: 80%;
        left: 0;
        right: 0;
        bottom: 10%;
        margin: auto;
        text-align: center;
		transform: none;
    }
    .slick-slide.mobslider .fixed-mag  {
        display: none !important;
    }
	#mobilepromo-section {
    padding-top: 0;
}
.single-related-section {
    padding-bottom: 0;
}
	.single-post .auth-name {
    margin-top: 15px;
}
	.slick-slide .emag-dt {
    width: 80%;
    left: 10%;
    top: inherit;
    bottom: 0;
    transform: none;
}
}
@media only screen and (max-width: 450px)
{
	 .read-more {
        padding: 10px;
		         margin-top: 20px;
		         font-size: .9em;
    }
    .slick-slide .home-cta {
        margin: 5px;
    }
    .slick-slide .home-cta img{
        width: 100px;
        height: auto;
    }
    .slick-slide .mob-banner-vis {
        width: 90%;
    }
    .container,
    .me-container {
        padding: 0 !important;
    }
    .single-post-container .row {
        flex-direction: row !important;
        gap: 0px !important;
    }

}
.zsiq_floatmain {
    display: none !important;
}
.post-type-archive-magazine #mobilepromo-section {
    padding: 0 0 100px 0;
}
	.mobilepromo-section {
    background: #FFB800;
    color: #000;
    padding-bottom: 0;
    margin-top: 60px;
    padding-top: 40px;
    border-radius: 20px;
    padding: 50px 50px 0px;
	}
	.mobilepromo-section .mobimg {
    text-align: center;
    margin-bottom: 0;
    margin-top: -100px;
	}
	.pr {
		position: relative;
	}
	.mobilepromo-section p {
		color: #000;
		font-size: 1.3em;
	}
	.mobilepromo-section h2 {
		font-weight: 600;
		padding: 0;
	}
	.mobilepromo-section .text-center {
		    text-align: center;
    margin: auto;
		margin-top: 10px;
    display: inline-block;
	}
	.mobilepromo-section .web-banner-vis{
		display: block !important;
	}
	.mobilepromo-section .mob-banner-vis {
		display: none !important;
	}
	.mobilepromo-section a {
		display: block;
		margin-top: 15px;
	}
	.mobilepromo-section a:first-child {
		margin-top: 30px;
	}
	.mobilepromo-section h2, .mobilepromo-section p {
		padding-left: 15px;
	}
.stribe-ai-banner {
    background: #FFE15E;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999999;
    padding: 10px;
    text-align: center;
	transition: 0.8s all ease;
    -webkit-transition: 0.8s all ease;
    transform: translateY(-46px);
    -webkit-transform: translateY(-46px);
	opacity:0;
}
.msg-bar .stribe-ai-banner
{
	    opacity: 1;
    transform: translateY(0);
    -webkit-transform: translateY(0);
}
.msg-bar #top-header
{
	top: 43px;
}
span.close {
    position: absolute;
    cursor: pointer;
    padding: 5px;
    font-weight: 400;
    transform: translate(0, -50%);
    top: 50%;
    right: 25px;
    display: block;
	    font-size: 14px;
}
.stribe-arrow {
    font-size: 19px;
    position: absolute;
    color: #FF0019;
    transition: all ease 0.7s;
    margin-left: 7px;
    transform: translate(0, -50%);
    top: 50%;
}
.stribe-arrow img {
    width: 21px;
}
.stribe-ai-banner a {
	display: inline-block;
    font-weight: 500;
    color: #001F74;
}
.stribe-ai-banner a:hover .stribe-arrow
{
	margin-left: 15px;
}
.stribe-ai-banner a:hover
{
	color: #000;
}
@media only screen and (max-width: 1350px)
{
	.imgwide .imgdiv img {
    height: 275px;
    margin-top: 30px;
}
}
	@media print, screen and (max-width: 1200px) {
		.mobilepromo-section .mobimg {
			margin-top: auto;
		}
		.magazines-lists .thumblink img {
        height: 365px;
    }
	}
	@media print, screen and (max-width: 1025px) {
		.mobilepromo-section h2, .mobilepromo-section p {
		   padding: 0px;
		 }
         .dis-cta.tech-cta{
    padding-top: 10%;
}
	.mobilepromo-section .web-banner-vis{
		display: none !important;
	}
		.mobilepromo-section .mob-banner-vis {
			display: block !important;
        margin-top: 20px;
		}
		.mobilepromo-section .mob-banner-vis  img {
			margin: auto;
			width: 60%;
			text-align: center;
			        margin-bottom: -10px;
		}
		.mobilepromo-section br {
			display: none;
		}
		.mobilepromo-section {
			overflow: hidden;
		}
	}
@media print, screen and (max-width: 460px) {
		.mobilepromo-section .mob-banner-vis img {
			width: 80%;
		}
	span.close {
    right: 8px;
}
	body.msg-bar {
    margin-top: 64px!important;
}
	.msg-bar #top-header {
    top: 64px;
}
	}

/* Drupal (Olivero) wrapper override for podcast node pages */
.path-node.node--type-podcasts .layout-container,
.path-node.node--type-podcasts .layout-content,
.path-node.node--type-podcasts .main-content {
  max-width: 100% !important;
  width: 100% !important;
}

.path-node.node--type-podcasts .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.path-node.node--type-podcasts .single-podcast-container .row {
  display: flex;
  align-items: flex-start;
}

.path-node.node--type-podcasts .cols-8 { width: 66.666%; }
.path-node.node--type-podcasts .cols-4 { width: 33.333%; }

@media (max-width: 992px) {
  .path-node.node--type-podcasts .single-podcast-container .row { display: block; }
  .path-node.node--type-podcasts .cols-8,
  .path-node.node--type-podcasts .cols-4 { width: 100%; }
}
.single-podcast-container .row{
	margin-left: 0;
    margin-right: 0;
}
/* ═══ DARK THEME ════════════════════════════════════════════════ */
html.dark-theme-enabled {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #444444;
}

html.dark-theme-enabled body,
html.dark-theme-enabled main {
  background-color: var(--bg-primary, #1a1a1a);
  color: var(--text-primary, #ffffff);
}

html.dark-theme-enabled a {
  color: #66b3ff;
}

html.dark-theme-enabled a:visited {
  color: #9999ff;
}

html.dark-theme-enabled .header,
html.dark-theme-enabled header {
  background-color: var(--bg-secondary, #2a2a2a);
  border-bottom: 1px solid var(--border-color, #444444);
}

html.dark-theme-enabled footer {
  background-color: var(--bg-secondary, #2a2a2a);
  color: var(--text-primary, #ffffff);
}


/* Dark theme short video section h3 link color */
body.darktheme .row.shortvid .home-tech h3 {
  color: #163caa;
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Main form and form item styles.
 */

::placeholder {
  color: var(--color--gray-60);
}

/**
 * General form item.
 */

.form-item {
  margin-block: var(--sp1);
}

.form-item__label--multiple-value-form {
  margin-block: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/**
 * When a table row or a container-inline has a single form item, prevent it
 * from adding unnecessary extra spacing.
 * If it has multiple form items, allow spacing between them, overriding core.
 */

tr .form-item,
.container-inline .form-item {
  margin-block: var(--sp0-5);
}

/**
 * Form element label.
 */

.form-item__label {
  display: block;
  margin-block: var(--sp0-5);
  font-size: var(--font-size-s);
  font-weight: bold;
  line-height: var(--line-height-s);
}

.container-inline .form-item__label {
  margin-inline-end: 1em;
}

.form-item__label--multiple-value-form {
  margin-block: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.form-item__label[for] {
  cursor: pointer;
}

.form-item__label.option {
  display: inline;
  font-weight: normal;
}

/* Label states. */

.form-item__label.is-disabled {
  cursor: default;
  color: var(--color--gray-70);
}

/* Form required star icon */

.form-item__label.form-required::after,
.fieldset__label.form-required::after,
.required-mark::after {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-inline: 0.3em;
  content: "";
  vertical-align: text-top;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url("data:image/svg+xml,%3Csvg height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 7.562 1.114-3.438c2.565.906 4.43 1.688 5.59 2.35-.306-2.921-.467-4.93-.484-6.027h3.511c-.05 1.597-.234 3.6-.558 6.003 1.664-.838 3.566-1.613 5.714-2.325l1.113 3.437c-2.05.678-4.06 1.131-6.028 1.356.984.856 2.372 2.381 4.166 4.575l-2.906 2.059c-.935-1.274-2.041-3.009-3.316-5.206-1.194 2.275-2.244 4.013-3.147 5.206l-2.856-2.059c1.872-2.307 3.211-3.832 4.017-4.575-2.081-.402-4.058-.856-5.93-1.356' fill='%232494DB'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 0.5rem 0.5rem;

  @media screen and (-ms-high-contrast: active) {
    background-image: url("data:image/svg+xml,%3Csvg height='16' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m0 7.562 1.114-3.438c2.565.906 4.43 1.688 5.59 2.35-.306-2.921-.467-4.93-.484-6.027h3.511c-.05 1.597-.234 3.6-.558 6.003 1.664-.838 3.566-1.613 5.714-2.325l1.113 3.437c-2.05.678-4.06 1.131-6.028 1.356.984.856 2.372 2.381 4.166 4.575l-2.906 2.059c-.935-1.274-2.041-3.009-3.316-5.206-1.194 2.275-2.244 4.013-3.147 5.206l-2.856-2.059c1.872-2.307 3.211-3.832 4.017-4.575-2.081-.402-4.058-.856-5.93-1.356' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  }
}

/**
 * Form item description.
 */

.form-item__description {
  margin-block: var(--sp0-5);
  max-width: 60ch;
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}

.field-multiple-table + .form-item__description {
  margin-block-start: 0;
}

/**
 * Error message (Inline form errors).
 */

.form-item--error-message {
  margin-block: var(--sp0-5);
  padding-inline-start: var(--sp1-5);
  color: var(--color--red);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23E33F1E' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left top; /* LTR */
  background-size: var(--sp1) var(--sp1);
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);

  @media screen and (-ms-high-contrast: active) {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M9 0C4.03125 0 0 4.03125 0 9C0 13.9688 4.03125 18 9 18C13.9687 18 18 13.9688 18 9C18 4.03125 13.9687 0 9 0ZM10.5 14.6133C10.5 14.8242 10.3359 15 10.1367 15H7.88672C7.67578 15 7.5 14.8242 7.5 14.6133V12.3867C7.5 12.1758 7.67578 12 7.88672 12H10.1367C10.3359 12 10.5 12.1758 10.5 12.3867V14.6133ZM10.4766 10.582C10.4648 10.7461 10.2891 10.875 10.0781 10.875H7.91016C7.6875 10.875 7.51172 10.7461 7.51172 10.582L7.3125 3.30469C7.3125 3.22266 7.34766 3.14063 7.42969 3.09375C7.5 3.03516 7.60547 3 7.71094 3H10.2891C10.3945 3 10.5 3.03516 10.5703 3.09375C10.6523 3.14063 10.6875 3.22266 10.6875 3.30469L10.4766 10.582Z'/%3E%3C/svg%3E");
  }
}

[dir="rtl"] .form-item--error-message {
  background-position: right top;
}

/**
 * Form actions.
 */

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-block: var(--sp0-5);
}

.form-actions .button {
  margin-block: 0;
}

.form-actions .action-link {
  margin-block: var(--sp0-5);
}

.form-actions > .form-wrapper {
  margin-inline-end: var(--sp1);
}

.form-actions .ajax-progress--throbber {
  align-self: center;
}

/**
 * Custom label placement for editor filter format select.
 */

.form-item--editor-format {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
}

.form-item--editor-format .form-item__label,
.form-item--editor-format .form-item__prefix,
.form-item--editor-format .form-item__suffix,
.form-item--editor-format .form-element--editor-format {
  min-width: 1px;
}

.form-item--editor-format .form-item__label,
.form-item--editor-format .form-item__prefix,
.form-item--editor-format .form-item__suffix {
  margin-inline-end: var(--sp0-5);
}

.form-item--editor-format .form-item__description,
.form-item--editor-format .form-item--error-message {
  flex: 0 1 100%;
  min-width: 1px;
}

/**
 * Inline forms.
 */

.form--inline {
  & > * {
    display: inline-block;
    margin-top: var(--sp0-5);
    margin-bottom: 0;
    vertical-align: top; /* Ensure proper alignment if description is present. */
  }

  & .form-item__label {
    margin: 0;
  }

  & .form-actions {
    margin-top: var(--sp1-5);
  }
}

.layout-builder-form {
  & .form-actions {
    align-items: center;
  }
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Checkbox and radio input elements.
 */

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: var(--sp1-5);
  height: var(--sp1-5);
  margin: 0;
  vertical-align: middle;
  border: 1px solid var(--color--gray-60);
  border-radius: 0.1875rem;
  background-color: var(--color--white);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: var(--sp1) var(--sp1);
  appearance: none;

  &:focus {
    border: solid 2px var(--color--primary-50);
    outline: solid 2px var(--color--primary-50);

    @supports (outline-style: double) {
      border-width: 1px;
      outline-width: 6px;
      outline-style: double;
      outline-offset: -1px;
    }
  }

  &:hover {
    border-color: var(--color--primary-60);
  }

  &[disabled] {
    background-color: var(--color--gray-100);

    &:hover {
      border-color: var(--color--gray-60);
    }

    &:checked {
      border-width: 1px;
    }
  }

  &:checked {
    border-width: 2px;
  }

  &.error {
    border: solid 2px var(--color--red);

    &:focus {
      outline-color: var(--color--red);
      outline-offset: -2px;
    }
  }

  & + label {
    display: inline-block;
    padding-inline-start: var(--sp0-5);
  }
}

input[type="checkbox"] {
  &:checked {
    background-image: url("data:image/svg+xml,%3Csvg width='17px' height='13px' viewBox='0 0 17 13' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M14.8232,0.176777 C14.9209,0.0791457 15.0791,0.0791455 15.1768,0.176777 L16.9445,1.94454 C17.0422,2.04217 17.0422,2.20047 16.9445,2.2981 L6.23744,13.0052 C6.13981,13.1028 5.98151,13.1028 5.88388,13.0052 L0.176777,7.2981 C0.0791456,7.20047 0.0791456,7.04218 0.176777,6.94454 L1.94454,5.17678 C2.04217,5.07915 2.20047,5.07915 2.2981,5.17678 L5.88388,8.76256 C5.98151,8.86019 6.13981,8.86019 6.23744,8.76256 L14.8232,0.176777 Z' id='Path' fill='%232494DB' fill-rule='nonzero'%3E%3C/path%3E%3C/svg%3E");
  }
}

input[type="radio"] {
  border-radius: 50%;

  &:checked {
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.5' cy='8.5' r='8.5' fill='%232494DB'/%3E%3C/svg%3E%0A");
    background-size: 1.0625rem;
  }

  &:focus {
    border-width: 2px;
    border-color: var(--color--primary-50);
    outline-color: transparent;
    box-shadow:
      0 0 0 2px white,
      0 0 0 4px var(--color--primary-50);
  }

  &.error:focus {
    outline-color: transparent;
    box-shadow:
      0 0 0 2px white,
      0 0 0 4px var(--color--red);
  }
}

.form-type-boolean {
  margin-block: var(--sp1);
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Select input elements.
 */

:root {
  --form-element-select-icon: url("data:image/svg+xml,%3csvg width='18' height='11' viewBox='0 0 18 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M18 1.49699C18 1.35271 17.9279 1.19038 17.8196 1.08216L16.9178 0.18036C16.8096 0.0721439 16.6473 0 16.503 0C16.3587 0 16.1964 0.0721439 16.0882 0.18036L9 7.26854L1.91182 0.18036C1.80361 0.0721439 1.64128 0 1.49699 0C1.33467 0 1.19038 0.0721439 1.08216 0.18036L0.180361 1.08216C0.0721442 1.19038 0 1.35271 0 1.49699C0 1.64128 0.0721442 1.80361 0.180361 1.91182L8.58517 10.3166C8.69339 10.4248 8.85571 10.497 9 10.497C9.14429 10.497 9.30661 10.4248 9.41483 10.3166L17.8196 1.91182C17.9279 1.80361 18 1.64128 18 1.49699Z' fill='%235D7585'/%3e%3c/svg%3e");
}

select {
  max-width: 100%;
  height: var(--sp3);
  padding-block: 0;
  padding-inline-start: var(--sp);
  padding-inline-end: var(--sp3);
  color: var(--color-text-neutral-loud);
  border: 1px solid var(--color--gray-60);
  border-radius: var(--border-radius);
  background-color: var(--color--white);
  background-image: var(--form-element-select-icon);
  background-repeat: no-repeat;
  background-position: right var(--sp) center; /* LTR */
  font-family: inherit;
  font-size: inherit;
  appearance: none;

  &:focus {
    border: solid 2px var(--color--primary-50);
    outline: solid 2px var(--color--primary-50);

    @supports (outline-style: double) {
      border-width: 1px;
      outline-width: 6px;
      outline-style: double;
      outline-offset: -1px;
    }
  }

  &[disabled] {
    color: var(--color--gray-60);
    background-color: var(--color--gray-100);
  }

  &.error {
    border: solid 2px var(--color--red);

    &:focus {
      outline-color: var(--color--red);
    }
  }

  &[multiple] {
    height: auto;
    padding: var(--sp0-5);
    background-image: none;
    line-height: 1; /* Needed by non-Chromium based MS Edge browsers. */

    & option {
      padding: var(--sp0-5);
    }
  }

  &.form-element--small {
    height: var(--sp2-5);
  }

  /* Necessary to show chevron in forced colors mode in modern browsers. */
  @media (forced-colors: active) {
    padding-inline-end: var(--sp);
    background-image: none;
    appearance: auto; /* Default <select> appearance value for modern browsers. */

    /* Lets browser set <select> appearance to whatever the browser's default is. */
    @supports (appearance: revert) {
      appearance: revert;
    }
  }
}

[dir="rtl"] select {
  background-position: left var(--sp) center;
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Textarea.
 */

textarea {
  display: block;
  width: 100%;
  min-height: var(--sp8);
  padding: var(--sp);
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Messages.
 */

:root {
  --messages-icon-size: 2rem;
}

.messages-list {
  margin-block: var(--sp1);
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  list-style: none;
}

.messages {
  min-height: calc(var(--messages-icon-size) + 2 * var(--sp1));
  padding-block: var(--sp1);
  padding-inline-start: var(--sp1-5);
  padding-inline-end: var(--sp1-5);
  color: var(--color--white);
  outline: solid 1px transparent;
  background-color: var(--color--gray-5);

  & * {
    color: inherit;
  }

  /* Additional specificity to override contrib modules. */
  &.messages-list__item {
    background-image: none;
  }
}

.messages__list {
  margin-block: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  list-style: none;
}

.messages:not(.hidden) ~ .messages {
  margin-block-start: var(--sp1);
}

.messages__item + .messages__item {
  margin-block-start: var(--sp0-5);
}

.messages__container {
  display: flex;
}

.messages__header {
  flex-shrink: 0;
  margin-inline-end: var(--sp1);

  &.no-icon {
    margin-inline-end: 0;
  }
}

.messages__content {
  overflow: auto; /* Ensure large code blocks can be scrolled to. */
  flex: 1;
  padding-block-start: 0.1875rem;
}

.messages__button {
  flex-shrink: 0;
  margin-inline-start: var(--sp1);
  padding-block-start: 0.1875rem;
}

.messages__close {
  position: relative;
  width: 1.5625rem;
  height: 1.5625rem;
  padding-block: 0;
  padding-inline-start: 0;
  padding-inline-end: 0;
  cursor: pointer;
  vertical-align: top;
  border: 0;
  background: none;
  appearance: none;

  &::before,
  &::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 2.0625rem;
    height: 0;
    content: "";
    border-top: solid 2px var(--color--gray-60);
  }

  &::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  &::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  &:hover {
    &::before,
    &::after {
      border-color: var(--color--white);
    }
  }

  &:focus {
    outline: 2px solid var(--color--primary-60);
    outline-offset: 2px;
  }
}

.messages__icon svg {
  vertical-align: top;
}

.messages--error .messages__icon svg {
  fill: var(--color--red);
}

.messages--warning .messages__icon svg {
  fill: var(--color--gold);
}

.messages--status .messages__icon svg {
  fill: var(--color--green);
}

.messages--info .messages__icon svg {
  fill: var(--color--primary-60);
}

.messages a {
  color: var(--color--white);
}

.messages pre {
  margin: 0;
}

.js-form-managed-file .messages {
  margin-block-end: var(--sp1);
  border-inline-start: solid 0.375rem var(--color--red);
}

/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Styling for the Filter module.
 */

/**
 * Filter information under field.
 */

.text-full > .form-item {
  margin-block-end: 0;
}

.form-element--editor-format {
  vertical-align: top;
}

.filter-wrapper {
  margin-block: var(--sp1) var(--sp0-5);
}

.filter-wrapper .form-item {
  margin: 0;
}

.filter-help {
  float: right; /* LTR */
  padding-block: var(--sp0-5);
  font-size: var(--font-size-xxs);

  /**
   * Chromium and Webkit do not yet support flow relative logical properties,
   * such as float: inline-end. However, PostCSS Logical does not compile this
   * value, so we accommodate by not using these.
   *
   * @see https://caniuse.com/mdn-css_properties_clear_flow_relative_values
   * @see https://github.com/csstools/postcss-plugins/issues/632
   */
  &:dir(rtl) {
    float: left;
  }
}

/**
 * Compose tips.
 *
 * Wraps filter tips on page '/filter/tips[/name]'.
 */

.compose-tips__item {
  margin-block: var(--sp1-5);
}

/**
 * Filter guidelines.
 */

.filter-guidelines__item {
  margin-block-start: var(--sp1);
  font-size: var(--font-size-s);
  line-height: var(--line-height-s);
}

.filter-guidelines p {
  margin-block: var(--sp0-25) 0;
}

/**
 * Filter tips.
 *
 * Long is used on '/filter/tips[/name]', short is used for the filter tips
 * below a text format input.
 */

.filter-tips--long {
  margin-block-end: var(--sp1-5);
}

.filter-tips__item,
.filter-tips--long p {
  margin-block: var(--sp0-75);
}

.filter-tips__item--short {
  margin-block: var(--sp0-25) 0;
}

/* ── ME Insights — Toast Notifications ──────────────────────── */

:root {
  /* AI Summary feedback colors - defaults to theme colors */
  --me-ai-feedback-success-color: #1b5e20;
  --me-ai-feedback-error-color: #b71c1c;
}

.me-messages-list {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.me-toast {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 20px 16px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #16a34a;
  font-size: 0.875rem;
  color: #111827;
  line-height: 1.55;
  pointer-events: auto;
  animation: me-toast-in 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.me-toast--status  { border-left-color: #16a34a; }
.me-toast--error   { border-left-color: #dc2626; }
.me-toast--warning { border-left-color: #d97706; }
.me-toast--info    { border-left-color: #2563eb; }

/* ── Icon bubble ─────────────────────────────────────────────── */
.me-toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

.me-toast--status  .me-toast__icon { background: #16a34a; }
.me-toast--error   .me-toast__icon { background: #dc2626; }
.me-toast--warning .me-toast__icon { background: #d97706; }
.me-toast--info    .me-toast__icon { background: #2563eb; }

/* ── Message body ────────────────────────────────────────────── */
.me-toast__content {
  flex: 1;
  min-width: 0;
  font-weight: 300;
}

.me-toast__list {
  margin: 0;
  padding-left: 16px;
}

/* ── Close button ────────────────────────────────────────────── */
.me-toast__close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.15s ease;
}

.me-toast__close:hover {
  color: #1a1a2e;
}

/* ── Progress bar ────────────────────────────────────────────── */
.me-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f3f4f6;
}

.me-toast__progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  animation: me-toast-countdown 5s linear forwards;
}

.me-toast--status  .me-toast__progress::after { background: #16a34a; }
.me-toast--error   .me-toast__progress::after { background: #dc2626; }
.me-toast--warning .me-toast__progress::after { background: #d97706; }
.me-toast--info    .me-toast__progress::after { background: #2563eb; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes me-toast-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes me-toast-countdown {
  from { width: 100%; }
  to   { width: 0%; }
}

.me-toast.is-dismissing {
  animation: me-toast-out 0.32s ease forwards;
}

@keyframes me-toast-out {
  from { opacity: 1; transform: translateX(0); max-height: 200px; margin-bottom: 0; }
  to   { opacity: 0; transform: translateX(24px); max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: -10px; }
}

/* === flash-message.css === */
/* ── ME Insights — Toast Notifications ──────────────────────── */

:root {
  /* AI Summary feedback colors - defaults to theme colors */
  --me-ai-feedback-success-color: #1b5e20;
  --me-ai-feedback-error-color: #b71c1c;
}

.me-messages-list {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 40px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.me-toast {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.11), 0 0 0 1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px 20px 16px;
  position: relative;
  overflow: hidden;
  border-left: 4px solid #16a34a;
  font-size: 0.875rem;
  color: #111827;
  line-height: 1.55;
  pointer-events: auto;
  animation: me-toast-in 0.32s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.me-toast--status  { border-left-color: #16a34a; }
.me-toast--error   { border-left-color: #dc2626; }
.me-toast--warning { border-left-color: #d97706; }
.me-toast--info    { border-left-color: #2563eb; }

/* ── Icon bubble ─────────────────────────────────────────────── */
.me-toast__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
}

.me-toast--status  .me-toast__icon { background: #16a34a; }
.me-toast--error   .me-toast__icon { background: #dc2626; }
.me-toast--warning .me-toast__icon { background: #d97706; }
.me-toast--info    .me-toast__icon { background: #2563eb; }

/* ── Message body ────────────────────────────────────────────── */
.me-toast__content {
  flex: 1;
  min-width: 0;
  font-weight: 300;
}

.me-toast__list {
  margin: 0;
  padding-left: 16px;
}

/* ── Close button ────────────────────────────────────────────── */
.me-toast__close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
  transition: color 0.15s ease;
}

.me-toast__close:hover {
  color: #1a1a2e;
}

/* ── Progress bar ────────────────────────────────────────────── */
.me-toast__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #f3f4f6;
}

.me-toast__progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  animation: me-toast-countdown 5s linear forwards;
}

.me-toast--status  .me-toast__progress::after { background: #16a34a; }
.me-toast--error   .me-toast__progress::after { background: #dc2626; }
.me-toast--warning .me-toast__progress::after { background: #d97706; }
.me-toast--info    .me-toast__progress::after { background: #2563eb; }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes me-toast-in {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes me-toast-countdown {
  from { width: 100%; }
  to   { width: 0%; }
}

.me-toast.is-dismissing {
  animation: me-toast-out 0.32s ease forwards;
}

@keyframes me-toast-out {
  from { opacity: 1; transform: translateX(0); max-height: 200px; margin-bottom: 0; }
  to   { opacity: 0; transform: translateX(24px); max-height: 0; padding-top: 0; padding-bottom: 0; margin-bottom: -10px; }
}

/* === top-banner.css === */
/* ============================================================
   Top Announcement Banner — #FFE15E, slide-down on init
   ============================================================ */

#me-top-banner {
  background: #FFE15E;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999999;
  /* Start off-screen, NO transition yet (added by JS to prevent flash) */
  transform: translateY(-100%);
  opacity: 0;
  transition: none;
  will-change: transform, opacity;
  -webkit-will-change: transform, opacity;
}

/* JS adds .me-banner--ready BEFORE .me-banner--visible — enables transition */
#me-top-banner.me-banner--ready {
  transition: transform 0.8s ease, opacity 0.8s ease;
  -webkit-transition: transform 0.8s ease, opacity 0.8s ease;
}

/* Visible state */
#me-top-banner.me-banner--visible {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  opacity: 1;
}

/* Closing state */
#me-top-banner.me-banner--hidden {
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  opacity: 0;
}

/* ── Wrapper — relative context for absolute close btn ────── */
.me-top-banner__wrap {
  position: relative;
  width: 100%;
}

/* ── Inner row ──────────────────────────────────────────────── */
.me-top-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 52px;
  min-height: 44px;
  text-align: center;
  /* Allow the message to shrink and truncate */
  overflow: hidden;
  min-width: 0;
}

/* ── Message ────────────────────────────────────────────────── */
.me-top-banner__message {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  letter-spacing: 0.005em;
  /* Desktop: single line + ellipsis */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

/* ── Read more link (text + arrow) ─────────────────────────── */
.me-top-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  flex-shrink: 1;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  min-width: 0;
}

.me-top-banner__link:hover .me-top-banner__message {
  text-decoration: underline;
}

.me-top-banner__link-text {
  line-height: 1.2;
}

.me-top-banner__arrow {
  width: 22px;
  height: auto;
  display: block;
  filter: brightness(0) saturate(100%)
          invert(18%) sepia(85%) saturate(4500%)
          hue-rotate(340deg) brightness(0.92);
  transition: transform 0.25s ease;
}

.me-top-banner__link:hover .me-top-banner__arrow {
  transform: translateX(5px);
}

/* ── Close — flush to absolute right ───────────────────────── */
.me-top-banner__close {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #1a1a2e;
  padding: 0;
  transition: background 0.15s;
}

.me-top-banner__close:hover {
  background: rgba(0, 0, 0, 0.09);
}

.me-top-banner__close:focus-visible {
  outline: 2px solid #1a1a2e;
  outline-offset: -2px;
}

.me-top-banner__close svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ── Body padding shifts ALL content down with the banner ───── */
/* Both body padding-top and banner transform animate at 0.8s ease
   so content + banner move into place in perfect sync */
body.topmessagebar {
  padding-top: var(--me-banner-height, 0px);
  transition: padding-top 0.8s ease;
}

/* Sticky header: remain in document flow below the fixed banner when present.
     This reserves the header's height for main content instead of overlaying it. */
body.topmessagebar .header {
    position: sticky;
    top: 0;
  transition: top 0.8s ease;
}

/* When banner closes: both revert in sync */
body:not(.topmessagebar) {
  padding-top: 0;
  transition: padding-top 0.8s ease;
}

body:not(.topmessagebar) .header {
  top: 0;
  transition: top 0.8s ease;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .me-top-banner__inner {
    padding: 8px 44px 8px 16px;
    align-items: center;
  }

  /* Mobile: single line with ellipsis to keep banner height fixed */
  .me-top-banner__message {
    font-size: 0.8125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .me-top-banner__arrow {
    flex-shrink: 0;
    width: 18px;
  }
}

@media (max-width: 480px) {
  .me-top-banner__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
}

select.zccountry {
  height: 50px;
}

/* Magazine gated-content popup: loadUKRegion()/loadUSState() (js/insights.js)
   insert a 2nd <select> (#ukcountry_region / #country_state) right after the
   country select. Each field in #subscription-popup lives in its own
   fixed-height (48px) .form-control box, so the injected select was
   overflowing the box and overlapping the checkbox/consent text below it.
   Reserve room for it here and stack it as its own row instead. */
/* ukcountry_region / country_state: absolute-positioned below the country box
   (used by the original getIPdetails.js loadUKRegion/loadUSState injection path).
   mag_ukcountry_region / mag_country_state live in their own #mag-region-wrap
   .form-control block and use normal block flow — no absolute positioning needed. */
#subscription-popup .form-control:has(> select#ukcountry_region),
#subscription-popup .form-control:has(> select#country_state) {
  padding-bottom: 58px;
}

#subscription-popup .form-control select#ukcountry_region,
#subscription-popup .form-control select#country_state {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  margin-top: 10px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #c9c6c6;
  border-radius: 4px;
}

/* Container width fix (below 1400px): this file has several older, unscoped
   ".container { width: 100%; max-width: 1400px; }" declarations further up
   that come AFTER the 1400px media-query fix in source order, so they win
   the cascade tie and silently reset the width back to 100% (no side gutter).
   Placed at the very end of the file + !important so it always wins. */
@media only screen and (max-width: 1400px) {
  .container,
  .tag-container .container {
    width: 90% !important;
    max-width: none !important;
  }
}
