@charset "utf-8";
/*
Theme Name: The Alex Marlow Show
Author: Salem Media Group
Author URI: https://salemmedia.com
Description: WordPress theme for the The Alex Marlow Show Website.
Version: 2.0.1
Text Domain: alexmarlow
*/

@import url('assets/css/normalize.min.css');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --site-font-family: 'Source Sans 3', Arial, Helvetica, sans-serif;
    --site-text-color: #444444;
    --body-background-color: #ffffff;
    --section-heading-color: #ed4805;
    --section-heading-font-size: clamp(1.25rem, 0.536vw + 0.982rem, 1.625rem);
    --main-nav-color: #ffffff;
    /*--main-nav-color-hover: #fbdd63;*/
    --sub-nav-background-color: #000;
    --page-heading-color: #ed4805;
    --article-title-color: #000000;
    --article-title-color-hover: #000;
    --article-title-font-size: clamp(1.125rem, 0.447vw + 0.838rem, 1.375rem);
    --article-title-weight: 600;
    --article-title-line-height: 1.2;
    --article-info-color: #999999;
    --archive-article-font-size: clamp(1.375rem, 3.5vw, 1.75rem);
    --link-color: #ed4805;
    --text-decoration-thickness: 1px;
    --text-underline-offset: 0.15em;
    --box-border-color:#cccccc;
    --image-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
    --text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    --filter-shadow: drop-shadow(1px 1px 1px rgba(0,0,0,0.4));
    --transition-all: all 0.2s ease;
    --marlow-orange: #ed4805;
    --marlow-orange-hover: #fe5f0e;
    --snc-blue:#1a3dae;
    --snc-blue-hover:#1c48d8;
    --button-bg-color:#ed4805;
    --button-bg-color-hover:#fe5f0e;
    --podcast-btn-color:#b91e1b;
    --podcast-btn-color-hover:#eb0f0b;
    --listen-live-btn-color:#1ba100;
    --listen-live-btn-color-hover:#25c704;
    --newsletter-btn-color:#000;
    --newsletter-btn-color-hover:#2a2a2a;
}

html{scroll-behavior: smooth;}

body{
font-size:16px;
font-size: 1rem;
line-height: normal;
color:var(--site-text-color);
font-family: var(--site-font-family);
background:var(--body-background-color);
height: 100%;
min-height: 100%;
}

input, textarea, select, button{
font-family: var(--site-font-family);
}

img:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{outline:2px solid #000; outline-offset: 2px;}
img:focus:not(:focus-visible),
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible){outline:none;}

/*================================================
	Header
==================================================*/
.header{
background: #f95c0a;
position: relative;
}
.header::before {
content: '';
width: 30%;
height: 100%;
position: absolute;
top: 0;
right: 0;
background: radial-gradient(farthest-side at right top, rgba(232, 65, 0, 1) 0%, rgba(249, 91, 10, 1) 100%);
display: block;
}

/*
.header::after {
content: '';
width: 30%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: radial-gradient(farthest-side at left top, rgba(22, 26, 53, 1) 0%, rgba(18, 16, 16, 1) 100%);
display: block;
}
*/

.masthead{
display: flex;
width: 100%;
justify-content: space-between;
height: 175px;
position: relative;
}
.masthead::before{
content:'';
width:100%;
height:100%;
display: block;
position: absolute;
top:0;
left: -66px;
background-image: url("assets/images/header-bg.jpg");
background-position: left center;
background-repeat: no-repeat;
z-index:1;
opacity: 0.8;
}


@media (max-width: 1100px) {
    .masthead{
    height: 80px;
    }
    .masthead::before{
    background-size: 340px;
    }
}
@media (max-width: 750px) {
    .masthead{
    height: 60px;
    }
    .masthead::before{
    background-size: 240px;
    }
}

/* Logo ================================================*/
.header_logo_wrap{
position: relative;
width: 420px;
align-self: stretch;
z-index: 10;
overflow: hidden;
}
.header_logo_wrap .pic{
display: block;
height: 168px;
width: auto;
position: absolute;
bottom: 0;
left: 182px;
}
.header_logo_wrap .logo{
position: absolute;
left: 0;
bottom: 12px;
height: 150px;
width: auto;
display: block;
}
.header_logo_wrap .blogo {
position: absolute;
z-index: 5;
bottom: 6px;
left: 170px;
}

@media (max-width: 1100px) {
    .header_logo_wrap .pic{
    height: 75px;
    left: 87px;
    }
    .header_logo_wrap .logo{
    height: 70px;
    left: 0;
    bottom: 4px;
    width: auto;
    }
    .header_logo_wrap .blogo {
    display: none;
    }
}
@media (max-width: 750px) {
    .header_logo_wrap {
    width: 212px;
    }
    .header_logo_wrap .pic{
    height: 56px;
    left: 71px;
    }
    .header_logo_wrap .logo{
    height: 55px;
    left: 0px;
    bottom: 2px;
    }
}

/*================================================
    Navigation
================================================*/
.header_nav_wrap{
display: flex;
flex-direction: column;
padding-top: 20px;
row-gap: 35px;
align-self: stretch;
z-index: 11;
min-width: 140px;
}

@media (max-width: 750px) {
    .header_nav_wrap {
    padding-top: 10px;
    }
}

/* Secondary Nav ================================================*/
.header_secondary_nav{
display: flex;
align-items: center;
justify-content: flex-end;
}

/* Social */
.header_secondary_nav .follow_btns_wrap{
display: flex;
align-items: center;
justify-content: flex-end;
column-gap: 10px;
}
.follow_btn{
display: flex;
align-items: center;
justify-content: center;
width:32px;
height: 32px;
border-radius: 3px;
color:var(--main-nav-color);
text-decoration: none;
}
.follow_btn svg{
display: block;
height:20px;
width:auto;
}
.follow_btn:hover,
.follow_btn:focus{
color:#000;
}


/* Nav Links */
.secondary_nav{
display: flex;
list-style: none;
align-items: center;
justify-content: flex-end;
column-gap: 20px;
margin-left:20px;
}
.secondary_nav > li{}
.secondary_nav > li > a{
font-size:18px;
line-height: normal;
text-decoration: none;
color:var(--main-nav-color);
}
.secondary_nav > li > a:hover,
.secondary_nav > li > a:focus{
color:#000;
}

@media (max-width: 1100px) {
    .header_secondary_nav{
    display: none;
    }
}


/* Header Nav ================================================*/
.header_nav_container{
display: flex;
align-items: center;
justify-content: flex-end;
column-gap: 20px;
}

@media (max-width: 1100px) {
    .header_nav_container{
    column-gap: 12px;
    }
}

/* Main Nav ================================================*/
.main_nav_wrap{}
.main_nav{
display: flex;
list-style: none;
align-items: center;
justify-content: flex-end;
column-gap: 20px;
}
.main_nav > li{
position:relative;
}

.main_nav > li > a{
display: flex;
justify-content: center;
align-items: center;
column-gap: 5px;
font-size:20px;
line-height: normal;
padding:10px 15px;
text-decoration: none;
color:var(--main-nav-color);
font-weight: 600;
text-shadow: var(--text-shadow);
transition: var(--transition-all);
border-radius: 3px;
}
.main_nav > li > a:hover,
.main_nav > li > a:focus{
background:#000;
}
.main_nav > li.menu-item-has-children > a::after{
content: '';
width: 8px;
height: 8px;
display: block;
border-left: 2px solid;
border-bottom: 2px solid;
border-color: var(--mainNavColor);
transform: rotate(-0.125turn);
position: relative;
top: -1px;
border-radius: 0 0 0 1px;
}
.main_nav > li:hover > a{

}
.main_nav > li.menu-item-has-children:hover > a::after{
border-color: var(--main-nav-color-hover);
top: 3px;
transform: rotate(0.375turn);
}

/* Search Button */
.nav_search_btn{
border:none;
background: none;
padding:10px 15px;
display: inline-block;
display: flex;
justify-content: center;
align-items: center;
color:var(--main-nav-color);
cursor: pointer;
transition: var(--transition-all);
border-radius: 3px;
}
.nav_search_btn svg{
height:21px;
width:auto;
display: block;
filter: var(--filter-shadow);
}
.nav_search_btn:hover,
.nav_search_btn:focus{
background: #000;
}

@media (max-width: 1100px) {
    .main_nav_wrap{
    display: none;
    }
    .nav_search_btn{
    padding:5px;
    }
    .nav_search_btn svg{
    filter:none;
    }
}

/* Sub Nav */
.main_sub_nav{
width:250px;
box-shadow:0 5px 10px rgba(0,0,0,0.15);
position: absolute;
top:100%;
left:0;
border-radius: 5px;
list-style: none;
visibility:hidden;
z-index: -1;
background: var(--sub-nav-background-color);
padding:5px 0;
}
.main_sub_nav > li{}
.main_sub_nav > li > a{
color:var(--main-nav-color);
text-decoration: none;
font-size:1em;
font-weight: 500;
padding:0.5em 1em;
display: block;
}
.main_sub_nav > li > a:hover{
color:var(--main-nav-color-hover);
text-decoration: underline;
}

.main_sub_nav::before {
background: var(--sub-nav-background-color);
content: '';
z-index: 3;
position: absolute;
width: 14px;
height: 14px;
transform: rotate(0.125turn);
top: -7px;
left: 2em;
}

.main_nav > li.menu-item-has-children:hover .main_sub_nav{
visibility: visible;
z-index:5;
}

/* more tab */
.main_nav > li:last-child .main_sub_nav{
left:auto;
right:0;
}
.main_nav > li:last-child .main_sub_nav::before {
left: auto;
right:2em;
}


/* Mobile Nav ================================================*/
/*  Menu Btn */
button.mobile_nav_menu_btn{
display: none;
cursor: pointer;
position: relative;
height: 40px;
line-height: 40px;
border: 0;
font-size: 1.125em;
color: #333;
font-weight: 500;
background: none;
width: 40px;
}

button.mobile_nav_menu_btn .menu_icon:before,
button.mobile_nav_menu_btn:after,
button.mobile_nav_menu_btn:before{
content: '';
display: block;
height: 2px;
position: absolute;
top: 20px;
left: 8px;
margin-top: -1px;
transition: var(--transition-all);
width: 24px;
background: var(--main-nav-color);
}
button.mobile_nav_menu_btn:before{
transform: translateY(-6px);
}
button.mobile_nav_menu_btn:after{
transform: translateY(6px);
}

button.mobile_nav_menu_btn.on{
}
button.mobile_nav_menu_btn.on:before {
transform: rotate(-45deg) translate(0, 0);
}
button.mobile_nav_menu_btn.on:after {
transform: rotate(45deg) translate(0, 0);
}
button.mobile_nav_menu_btn.on .menu_icon:before{opacity: 0;}

@media (max-width: 1100px){
	button.mobile_nav_menu_btn{
	display: inline-block;
	}
}
@media (max-width: 750px){
	button.mobile_nav_menu_btn .menu_icon:before,
	button.mobile_nav_menu_btn:after,
	button.mobile_nav_menu_btn:before{

	}
}


/*  Mobile Nav menu */
.mobile_nav_wrap{
display:none;
position: absolute;
width: 100%;
top: 100%;
left: 0;
z-index: 100;
}
.mobile_nav_container{
display:none;
background: var(--sub-nav-background-color);
}
.mobile_nav{
display:flex;
width: 100%;
flex-wrap: wrap;
}
.mobile_nav > *{
flex: 1 1 33.33%;
display: block;
border-right: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile_nav > li{}
.mobile_nav > li > a{
display: block;
color: #fff;
font-size: 16px;
padding: 12px 0;
text-decoration: none;
font-weight:400;
text-align: center;
}

.mobile_nav > li.menu-item-has-children > a::before{
content: '';
width: 0;
height: 0;
display: inline-block;
top: 20px;
right: 30px;
position: absolute;
z-index: 2;
transition: var(--transition-all);
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 7px solid #fff;
}
.mobile_nav > li.menu-item-has-children.off > a::before{
}
.mobile_nav > li.menu-item-has-children.on > a::before{
transform: rotate(180deg);
}
.mobile_nav > li:hover{
cursor:pointer;
}

@media (max-width: 1100px){
	.mobile_nav_wrap{
	display:block;
	}
}
@media (max-width: 750px){
    .mobile_nav > *{
    flex: 1 1 50%;
    }
	.mobile_nav > li > a{
    padding: 9px 0;
    font-size: 14px;
	}
}
@media (max-width: 500px){
    .mobile_nav{
    flex-direction:column;
    }
    .mobile_nav > li{
    border-right:none;
    }
}

/*  Mobile follow btns */
.mobile_nav_follow_btns_wrap {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding: 8px 0;
display: flex;
justify-content: center;
align-items: center;
column-gap: 60px;
}
.mobile_nav_follow_btns_wrap .follow_btn svg {
height: 16px;
}
@media (max-width: 750px){
    .mobile_nav_follow_btns_wrap {
    column-gap: 30px;
    }
}


/*================================================
	Listen, watch, subscribe btns
==================================================*/
.show_action_btns_wrap{
background: #dbdbdb;
padding: 1em 0;
z-index: 5;
position: relative;
width: 100%;
}
.show_action_btns_wrap.sticky{
position: fixed;
bottom: 0;
z-index: 300;
box-shadow: 0 -2px 5px rgb(0 0 0 / 15%);
width: 100%;
padding: 1em;
background: #fff;
}

.show_action_btns_container{
display: flex;
justify-content: center;
column-gap:1em;
}
.show_action_btn{
display: flex;
justify-content: center;
padding: 0 1.25em;
font-size: 1.25em;
font-weight: 500;
color: #fff;
background: #000;
text-decoration: none;
border-radius: 4px;
align-items: center;
text-shadow: var(--text-shadow);
height: 46px;
}
.show_action_btn img{
display: block;
width: auto;
}
.show_action_btn-listen{
background: var(--listen-live-btn-color);
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.show_action_btn-listen img{
height:16px;
margin-right:7px;
filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}
.show_action_btn-listen:hover,
.show_action_btn-listen:focus{
background: var(--listen-live-btn-color-hover);
}
.show_action_btn-watch{
background: var(--snc-blue);
}
.show_action_btn-watch:hover,
.show_action_btn-watch:focus{
background: var(--snc-blue-hover)
}
.show_action_btn-watch img{
height: 24px;
margin-left: 8px;
filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.show_action_btn-podcast{
background: var(--podcast-btn-color);
}
.show_action_btn-podcast img{
height:18px;
margin-right: 3px;
filter:drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.show_action_btn-podcast:hover,
.show_action_btn-podcast:focus{
background: var(--podcast-btn-color-hover);
}
.show_action_btn-newsletter{
background: var(--newsletter-btn-color);
}
.show_action_btn-newsletter img{
height:18px;
margin-right: 6px;
filter:invert(1) drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
.show_action_btn-newsletter:hover{
background: var(--newsletter-btn-color-hover);
}

@media (max-width: 1100px) {
	.show_action_btns_wrap{
	position: fixed;
    bottom: 0;
    z-index: 300;
    padding: 10px;
    background: #ffffff;
    font-size: 87.5%;
    box-shadow: 0 -2px 5px rgb(0 0 0 / 15%);
	}
	.show_action_btns_container{
	flex-wrap: wrap;
    column-gap:2%;
    row-gap:10px;
	}
    .show_action_btn{
	padding: 0 1.5em;
	height: 46px;
    width: 49%;
	}
}
@media (max-width: 750px){
	.show_action_btns_wrap{
	font-size: 75%;
	}
	.show_action_btn{
	height: 40px;
    padding: 0;
	}
    .show_action_btn-listen img{
    height:14px;
    }
    .show_action_btn-watch img{
    height: 20px;
    margin-left:6px;
    }
    .show_action_btn-podcast img{
    height:16px;
    }
    .show_action_btn-newsletter img{
    height:16px;
    }
}
@media (max-width: 480px){
    .show_action_btns_container{
    row-gap:7px;
	}
}


/*================================================
	Universal
==================================================*/
.site_width{
width:100%;
padding:0 30px;
max-width: 1590px;
margin:0 auto;
}

.main {
position: relative;
margin-top:20px;
padding-bottom: 4em;
}

@media (max-width: 1150px) {
    .site_width{
    padding:0 20px;
    }
    .main {
    font-size: 87.5%;
    }
}
@media (max-width: 750px) {
    .site_width{
    padding: 0px 15px;
    }
}


/* Sections =============================================*/
.section_heading {
color: var(--section-heading-color);
font-weight: 800;
font-size: var(--section-heading-font-size);
text-transform: uppercase;
margin-bottom: 1rem;
}
@media (max-width: 1000px) {
    .section_heading {
    text-align: center;
    }
}

.section_content {
position: relative;
min-width: 0;
}

/* Section Btn */
.section_btn{
width:100%;
max-width:300px;
height: 50px;
background: var(--button-bg-color);
color:#fff;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
font-size: 1em;
text-shadow: var(--text-shadow);
border-radius: 10px;
column-gap: 7px;
margin: 0 auto;
transition: var(--transition-all);
cursor: pointer;
border:none;
}
.section_btn span{
display: block;
width:8px;
height:8px;
border-right:2px solid currentColor;
border-top:2px solid currentColor;
transform: rotate(45deg);
text-shadow: var(--text-shadow);
}
.section_btn:hover,
.section_btn:focus{
background: var(--button-bg-color-hover);
}
@media (max-width: 1150px) {
    .section_btn {
    max-width: 250px;
    height: 40px;
    }
    .section_btn span {
    width: 6px;
    height: 6px;
    }
}


/* Read More Btn */
.read_more_btn {
background: var(--button-bg-color);
border: none;
color: #fff;
display: inline-flex;
justify-content: center;
align-items: center;
text-decoration: none;
font-size: 0.875em;
text-shadow: var(--text-shadow);
border-radius: 5px;
column-gap: 6px;
transition: var(--transition-all);
cursor: pointer;
text-decoration: none;
padding: 4px 1em;
}
.read_more_btn span{
display: block;
width:6px;
height:6px;
border-right:2px solid currentColor;
border-top:2px solid currentColor;
transform: rotate(45deg);
text-shadow: var(--text-shadow);
}
.read_more_btn:hover,
.read_more_btn:focus{
background: var(--button-bg-color-hover);
}


/* Article Box =============================================*/
.article_box > a{
text-decoration: none;
}
.article_box_image_wrap {
display: block;
text-decoration: none;
position: relative;
overflow: hidden;
aspect-ratio: 16 / 9;
border-radius: 5px;
background: #333;
}
.article_box_image{
display: block;
transition: transform 0.35s;
position: absolute;
object-fit: cover;
top: 0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 100%;
height: 100%;
transform: scale3d(1.01, 1.01, 1);
}
.article_box_title{
display: block;
color:var(--article-title-color);
line-height: var(--article-title-line-height);
font-weight: var(--article-title-weight);
font-size: var(--article-title-font-size);
text-align: left;
}
.article_box_info{
font-size:12px;
line-height: 1.2;
color:var(--article-info-color);
margin-top: 5px;
text-transform: uppercase
}
.article_box_excerpt{
margin-top:3px;
color:var(--site-text-color);
}
.article_box_excerpt p{
font-size:1.125em;
line-height: 1.4;
margin-bottom:1.125em;
word-break: break-word;
}
.article_box_excerpt p:last-child{
margin:0;
}
.article_box_excerpt a{
color:var(--link-color);
text-decoration: none;
}
.article_box_excerpt a:hover,
.article_box_excerpt a:focus{
text-decoration: underline;
text-decoration-thickness: var(--text-decoration-thickness);
text-underline-offset: var(--text-underline-offset);
}

.article_box > a:hover .article_box_image{
transform: scale3d(1.04, 1.04, 1);
}
.article_box > a:hover .article_box_title{
color:var(--article-title-color-hover);
text-decoration: underline;
text-decoration-thickness: var(--text-decoration-thickness);
text-underline-offset: var(--text-underline-offset);
}

.article_box-stacked a{
display: flex;
flex-direction: column;
row-gap: 0.5em;
}

.article_box_content .read_more_btn{
margin-top:1em;
}

/* Article List =============================================*/
.article_list_wrap{
display: flex;
flex-direction: column;
row-gap:30px;
}

.article_list_wrap .article_box-has_image > a {
display: grid;
grid-template-columns: 120px 1fr;
gap: 0 14px;
}

@media (max-width: 1100px) {
    .article_list_wrap{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: min-content 1fr;
    gap: 30px 20px;
    }
}
@media (max-width: 750px) {
    .article_list_wrap{
    grid-template-columns: 1fr;
    }
}

/* Icons ========================================*/
/* Play Icon */
.play_icon{
position: relative;
display: flex;
width: 20px;
height: 20px;
border: 1px solid #000;
border-radius: 50%;
justify-content: center;
align-items: center;
}
.play_icon::before {
content: "";
display: block;
width: 0;
height: 10px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 7px solid;
position: relative;
left: 1px;
} 

/* Right Chevron */
.chev_right {
position: relative;
display: flex;
width: 20px;
height: 20px;
border-radius: 100px;
justify-content: center;
align-items: center;
}
.chev_right::after {
content: "";
display: block;
width: 7px;
height: 7px;
border-bottom: 2px solid;
border-right: 2px solid;
transform: rotate(-45deg);
left: -1px;
position: relative;
} 
@media (max-width: 750px) {
    .chev_right {
    width: 16px;
    }
    .chev_right::after{
    width: 6px;
    height: 6px;
    }
}
/* Double Right Chevron */
.chev_dbl_right {
position: relative;
display: block;
width: 20px;
height: 20px;
}
.chev_dbl_right::after,
.chev_dbl_right::before {
content: "";
display: block;
position: absolute;
width: 7px;
height: 7px;
border-right: 2px solid;
border-top: 2px solid;
transform: rotate(45deg);
top: 7px;
right: 6px
}
.chev_dbl_right::after {
right: 12px
} 
/* Left Chevron */
.chev_left {
position: relative;
display: flex;
width: 20px;
height: 20px;
border: 2px solid transparent;
border-radius: 100px;
justify-content: center;
align-items: center;
}
.chev_left::after {
content: "";
display: block;
width: 7px;
height: 7px;
border-bottom: 2px solid;
border-left: 2px solid;
transform: rotate(45deg);
right: -1px;
position: relative;
} 
/* Double Left Chevron */
.chev_dbl_left {
position: relative;
display: block;
width: 20px;
height: 20px;
}
.chev_dbl_left::after,
.chev_dbl_left::before {
content: "";
display: block;
position: absolute;
width: 7px;
height: 7px;
border-left: 2px solid;
border-bottom: 2px solid;
transform: rotate(45deg);
top: 7px;
right: 6px
}
.chev_dbl_left::after {
left: 12px
} 


/*================================================
	Home Page
==================================================*/
.home_content_wrap{
display: flex;
position: relative;
flex-wrap: wrap;
column-gap: 30px;
}
@media (max-width: 1000px) {
    .home_content_wrap > div{
    padding-bottom: 30px;
    }
}


/* SNC Live Player ================================================*/
.snc_player_wrap{
display: grid;
grid-template-columns: 1fr 1fr 1fr;
width: 100%;
gap: 0 30px;
}
.home_content_wrap .snc_player_wrap{
padding:0;
}
.snc_player_container {
max-width: 800px;
margin: 0 auto;
width: 100%;
grid-column: span 2;
}
.snc_player_wrap #snc_player{
position: relative;
}
.snc_player_wrap #snc_player:has(div){
margin-bottom:30px;
}
.snc_player_wrap #snc_player:has(div)::after {
content: 'Watch Live: Mon-Fri 6-8 PM ET';
display: block;
width: 100%;
color: #fff;
text-align: center;
font-size: 1.5em;
padding: 5px;
font-weight: 600;
border-radius: 5px 5px 0 0;
}
@media (max-width: 1000px) {
    .snc_player_wrap{
    display: block;
    }
}


/* Featured content ================================================*/
.home_content_featured_grid{
width: 100%;
padding-bottom: 40px;
display: grid;
grid-template-columns: 1fr 300px;
gap: 30px 30px;
}
.home_featured_section{}
.featured_content_grid {
grid-column: span 2;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
gap: 30px 30px;
position: relative;
text-decoration: none;
width: 100%;
grid-template-rows: min-content 1fr;
}

.home_aside{
display: flex;
flex-wrap: wrap;
row-gap:40px;
flex-direction: column;
}
.home_aside .ad_wrap-300x250_1{
position: sticky;
top:20px;
}

/* Featured Box */
.article_box-featured > a{
display: block;
position: relative;
text-decoration: none;
width: 100%;
}
.article_box-featured .article_box_image_wrap{}
.article_box-featured .article_box_content{
margin-top: 10px;
}

/* Main */
.article_box-featured_main{
grid-column: span 5;
grid-row: span 2;
}
.article_box-featured_main .article_box_title{
font-size: clamp(1.5rem, 2.25vw + 0.375rem, 2.625rem);
}
.article_box-featured_main .article_box_excerpt{
margin-top:10px;
}

/* More */
.article_box-featured_more {
grid-column: span 2;
}


@media (max-width: 1100px) {
    .home_content_featured_grid {
    grid-template-columns: 1fr;
    }
    .featured_content_grid {
    gap: 30px 20px;
    }
    .home_aside{
    flex-direction: row;
    }
    .home_aside > div{
    width:50%;
    }
}
@media (max-width: 750px) {
    .featured_content_grid{
    display: flex;
    flex-direction: column;
    }
    .article_box-featured_main .article_box_excerpt{
    display: none;
    }
    .article_box-featured_more > a{
    display: grid;
    grid-template-columns: 120px 1fr;
    gap:0 10px
    }
    .home_aside > div{
    width:100%;
    }
}

/* Home Columns ================================================*/
.home_content_columns_wrap{
display: grid;
grid-template-columns: 1fr 1fr 300px;
gap: 30px 30px;
}
.home_content_column{
display: flex;
flex-direction: column;
row-gap: 40px;
}
.home_content_column-col_1{order:2;}
.home_content_column-col_2{order:1;}
.home_content_column-col_3{order:3;}

.home_section{
padding:1rem 0;
}

.home_section .section_btn{
margin-top:24px;
}

@media (max-width: 1100px) {
    .home_content_columns_wrap{
    grid-template-columns: 1fr;
    }
    .home_content_column{
    width: 100%;
    }
    .home_content_column-col_1{order:1;}
    .home_content_column-col_2{order:3;}
    .home_content_column-col_3{order:2;}
}
@media (max-width: 600px) {
    .home_content_column{
    row-gap: 30px;
    }
}


/*================================================
	Home Page - Podcast
==================================================*/
.article_box-podcast{
display: grid;
grid-template-columns: 70px 1fr;
gap: 0 14px;
}
/* Thumbnail / Play Icon */
.article_box_podcast_thumb_wrap{
position: relative;
}
.article_box_podcast_thumb{
position: relative;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
border-radius: 5px;
}
.article_box_podcast_thumb::before {
content: '';
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: var(--marlow-orange); /*#1a518e;*/
transition: var(--transition-all);
opacity: 0;
display: block;
}
.article_box_podcast_thumb .play_icon{
display: flex;
width: 50px;
height: 50px;
border: 2px solid;
border-radius: 50%;
justify-content: center;
align-items: center;
position: absolute;
z-index: 2;
transition: var(--transition-all);
color: #fff;
border-color: #fff;
opacity: 0;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.article_box_podcast_thumb .play_icon::before {
content: "";
display: block;
width: 0;
height: 22px;
border-top: 11px solid transparent;
border-bottom: 11px solid transparent;
border-left: 18px solid #fff;
position: relative;
left: 4px;
}
.article_box_podcast_thumb img{
max-width: 100%;
height: auto;
display: block;
transition: var(--transition-all);
}
.article_box_podcast_thumb:hover::before,
.article_box_podcast_thumb:focus::before{
opacity: 1;
}
.article_box_podcast_thumb:hover .play_icon,
.article_box_podcast_thumb:focus .play_icon{
opacity: 1;
}
.article_box_podcast_thumb:hover img,
.article_box_podcast_thumb:focus img{
opacity: 0;
}

.article_box-podcast .article_box_title a{
color:var(--article-title-color);
text-decoration: none;
}
.article_box-podcast .article_box_title a:hover,
.article_box-podcast .article_box_title a:focus{
color:var(--article-title-color-hover);
text-decoration: underline;
text-decoration-thickness: var(--text-decoration-thickness);
text-underline-offset: var(--text-underline-offset);
}

@media (max-width: 560px) {
    .article_box-podcast{
    grid-template-columns: 50px 1fr;
    }
}


/*======================================================
    Pages / Archive Page
========================================================*/
.page{}
.page_template{}

/* Grids */
.content_grid_wrap{
display: grid;
position: relative;
gap:30px 30px;
grid-template-rows: auto;
grid-auto-flow: row;
}

/* Page Heading =======================================*/
.page_header_wrap{
padding:1em 0 2em 0;
}
.page_header{
font-weight: 900;
text-align: left;
color: var(--page-heading-color);
display: block;
font-size: clamp(1.5rem, 4vw, 2.5rem);
text-transform: uppercase;
}
.page_header span {
color: #ccc;
font-size: clamp(1.25rem, 4vw, 2rem);
display: block;
}
@media (max-width: 750px) {
    .page_header_wrap{
    padding:1.5em 0;
    }
    .page_header{
    text-align: center;
    }
}

/* Page Content  =======================================*/
.page_wrap{}

/* Archives ========================================== */
.page_wrap-archive{}
.content_grid_wrap-archive{}


/* General Archives (no excerpt) with sidebar */
.page_wrap-general .content_grid_wrap-archive{
grid-template-columns: 1fr 300px;
}

.archive_list_wrap{
display: flex;
flex-direction: column;
row-gap:4em;
}

.content_grid_wrap-archive .article_box .article_box_image_wrap:hover img,
.content_grid_wrap-archive .article_box .article_box_image_wrap:focus img{
transform: scale3d(1.04, 1.04, 1);
}
.content_grid_wrap-archive .article_box .article_box_title{
font-size: var(--archive-article-font-size);
color:var(--article-title-color);
}
.content_grid_wrap-archive .article_box .article_box_title a{
color:var(--article-title-color);
text-decoration: none;
}
.content_grid_wrap-archive .article_box .article_box_title a:hover,
.content_grid_wrap-archive .article_box .article_box_title a:focus{
color:var(--article-title-color-hover);
text-decoration: underline;
text-decoration-thickness: var(--text-decoration-thickness);
text-underline-offset: var(--text-underline-offset);
}

.content_grid_wrap-archive .article_box_info{
padding: 4px 0;
}
.content_grid_wrap-archive .article_box .read_more_link{
margin-top:1em;
text-decoration: underline;
}

.page_wrap-general .site_sidebar{
display: flex;
flex-wrap: wrap;
row-gap:40px;
flex-direction: column;
}

@media (max-width: 1000px) {
    .page_wrap-general .content_grid_wrap-archive{
    grid-template-columns: 1fr;
    }
    .page_wrap-general .site_sidebar{
    flex-direction: row;
    justify-content: center;
    }
    .page_wrap-general .site_sidebar .ad_wrap{
    width:50%;
    }
}
@media (max-width: 900px) {
    .archive_list_wrap {
    row-gap:3em;
    }
}
@media (max-width: 750px) {
    .page_wrap-general .site_sidebar .ad_wrap{
    width:100%;
    }
}

/* Article Archives (image & excerpt) with sidebar ads */
.content_grid_wrap-archive_article{
grid-template-columns: 1fr 300px;
}
.content_grid_wrap-archive_article .article_box{
border-bottom: 1px solid var(--box-border-color);
padding-bottom: 3em;
}
.content_grid_wrap-archive_article:last-of-type .article_box:last-of-type{
border:none;
}
.content_grid_wrap-archive_article .article_box-has_image{
display: grid;
grid-template-columns:  300px 1fr;
gap: 0 20px;
}

@media (max-width: 1150px) {
    .content_grid_wrap-archive_article .article_box-has_image{
    grid-template-columns:  200px 1fr;
    }
}
@media (max-width: 900px) {
    .content_grid_wrap-archive_article .article_box{
    border-bottom: none;
    padding-bottom:0;
    }
    .content_grid_wrap-archive_article{
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--box-border-color);
    padding-bottom: 3em;
    }
}
@media (max-width: 600px) {
    .content_grid_wrap-archive_article .article_box-has_image{
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    }
}


/* Article Archives (stacked image and title only) - 2 and 3 column archives */
.content_grid_wrap-two_col{
grid-template-columns: 1fr 1fr;
}

.content_grid_wrap-three_col{
grid-template-columns: 1fr 1fr 1fr;
}

.content_grid_wrap-two_col .article_box .article_box_title,
.content_grid_wrap-three_col .article_box .article_box_title{
font-size: var(--archive-article-font-size);
}

@media (max-width: 1000px) {
    .content_grid_wrap-three_col{
    grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 750px) {
    .content_grid_wrap-two_col,
    .content_grid_wrap-three_col{
    grid-template-columns: 1fr;
    }
}


/* Videos  ================================*/
.page_wrap-videos{}


/* Podcast ================================*/
.page_wrap-podcast{}
.content_grid_wrap-archive_article .article_box-podcast {
grid-template-columns: 150px 1fr;
gap: 0 20px;
}
.content_grid_wrap-archive_article .play_icon{
transform: scale(2);
}

@media (max-width: 1150px) {
    .content_grid_wrap-archive_article .article_box-podcast {
    grid-template-columns: 100px 1fr;
    }
}
@media (max-width: 750px) {
    .content_grid_wrap-archive_article .article_box-podcast {
    grid-template-columns: 70px 1fr;
    gap: 0 14px;
    }
}
@media (max-width: 560px) {
    .content_grid_wrap-archive_article .article_box-podcast {
    grid-template-columns: 50px 1fr;
    }
}


/* founders circle ================================*/
.founders_circle_wrap{
columns: 20rem auto;
}


/*===================================================
	Archive Pages / Article List Pages - Navigation
=====================================================*/
.page_navigation_wrap {
display: flex;
justify-content: center;
align-items: center;
font-size: 1em;
padding-top: 1em;
flex-wrap: wrap;
text-align: center;
border-top: 2px solid var(--box-border-color);
margin-top: 30px;
}
.page_navigation_wrap .pagenum{
display: inline-block;
padding-right:20px;
}
.page_links_wrap{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
column-gap: 10px;
}
.page_navigation_wrap .current,
.page_navigation_wrap a{
display: inline-flex;
padding: 10px 17px;
text-decoration: none;
width: auto;
color: #fff;
border-radius: 5px;
text-align: center;
justify-content: center;
background: var(--button-bg-color);
border:none;
}
.page_navigation_wrap a:hover{
text-decoration:none;
background: var(--button-bg-color-hover);
}
.page_navigation_wrap .current{
background: #000;
border-color: #000;
}
@media (max-width: 750px) {
    .page_navigation_wrap{
    flex-direction:column-reverse;
    }
    .page_navigation_wrap .pagenum{
	text-align:center;
	padding-right:0;
	width:100%;
	margin-top: 10px;
	}
    .page_links_wrap{
    width:100%;
    }
	.page_navigation_wrap .current,
	.page_navigation_wrap a{
	margin: 0 1% 0 0;
	padding: 10px 0;
	width: 9%;
	} 
}


/*================================================
	Single Article Pages
==================================================*/
.page_wrap.single_article_section{
padding-top:2em;
}

.single_article_wrap {
padding-bottom: 2.5em;
}

/* Header =====================================*/
.single_article_header{
margin-bottom:1.5em;
padding-right: 330px;
}
.single_article_header_title{
font-size: clamp(2rem, 4vw, 2.5rem);
color:#000;
line-height: var(--article-title-line-height);
}
.single_article_header_info{
display: flex;
justify-content: space-between;
padding: 1em;
border-radius: 8px;
align-items: center;
line-height: normal;
border: 1px solid var(--box-border-color);
margin: 1rem 0;
font-size: 0.875em;
color: var(--article-info-color);
}
.single_article_header_info .author{
font-weight:600;
margin-bottom:0.5em;
}
.single_article_header_info .date_cat{}
.single_article_header_info .date_cat > a{
color:var(--articleInfoColor);
text-decoration: none;
}
.single_article_header_info .date_cat > a:hover,
.single_article_header_info .date_cat > a:focus{
text-decoration: underline;
}

/* Sharing Links */
.article_share_links_wrap{
display: flex;
justify-content: flex-end;
align-items: center;
column-gap: 20px;
}
.single_article_body .article_share_links_wrap { /* bottom of transcript articles */
justify-content: flex-start;
}
.share_link{
display: inline-flex;
justify-content: center;
align-items: center;
height: 20px;
width: 20px;
text-decoration: none;
color:#000;
position: relative;
}
.share_link svg{
display: block;
height: 20px;
width: auto;
}
.share_link.share_link-x svg{
height: 18px;
}
.share_link:hover,
.share_link:focus{
color:var(--link-color);
}

/* Copied Link */
.share_link-copy .copied{
display: none;
width: 120px;
color: #fff;
font-size: 14px;
padding: 5px 4px 4px 0;
background: #3bae41;
position: absolute;
top: 30px;
right: -5px;
z-index: 100;
border-radius: 3px;
text-align: center;
line-height: 1;
font-weight: 400;
text-shadow: var(--text-shadow);
}
.share_link-copy .copied::before {
background: inherit;
content: '';
z-index: 3;
position: absolute;
width: 10px;
height: 10px;
transform: rotate(0.125turn);
top: -4px;
right: 10px;
}
.share_link-copy .copied > div {
display: flex;
justify-content: center;
align-items: center;
column-gap: 2px;
position: relative;
z-index: 20;
}
.share_link-copy .copied .check_icon{
top: -2px;
position: relative;
}

@media (max-width: 1100px) {
    .single_article_header{
    padding:0;
    }
}
@media (max-width: 750px) {
    .single_article_section{
    padding-top:1.5em;
    }
}


/* Increase/Decrease font size (mobile only) =====================================*/
.fontsize_wrap {
float:right;
margin-left:20px;
}
.fontsize_container{
display: flex;
justify-content: center;
align-items: center;
font-size: 1em;
flex-direction: column;
background: #333;
padding: 5px;
border-radius: 5px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.6);
row-gap: 5px;
}
.fontsize_label{
font-size: 14px;
}
.fontsize_btn {
font-size: 1.5em;
width: 35px;
height: 35px;
color: #ccc;
border-radius: 3px;
background: #111;
border: none;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
text-shadow: var(--text-shadow);
transition: var(--transition-all);
cursor: pointer;
line-height: 1;
}
.fontsize_btn:hover,
.fontsize_btn:focus{
color: #fff;
}
.fontsize_btn-reset {
background: none;
border:none;
color: #aaa;
}
.fontsize_btn-reset svg {
width: 20px;
height: 20px;
}
@media (min-width: 1151px) {
    .fontsize_wrap {
    display: none;
    }
}
@media (max-width: 750px) {
    .fontsize_btn {
    width: 32px;
    height: 26px;
    }
    .fontsize_btn-reset svg {
    width: 16px;
    height: 16px;
    }
}

/* Content =====================================*/
.single_article_content_wrap{}

.single_article_body{
display: grid;
grid-template-columns: 1fr 300px;
grid-template-rows: auto;
grid-auto-flow: row;
gap:30px 30px;
}

.single_article_body_content{}

/* Video */
.article_video_wrap{
position: relative;
aspect-ratio:16 / 9;
width: 100%;
margin-bottom:1.5rem;
}
.article_video_wrap iframe {
width: 100%;
height: 100%;
}

/* Audio */
.article_audio_wrap{
margin-bottom:1.5rem;
}
.article_audio_wrap iframe{
width: 100%;
height: 180px;
border-radius: 5px;
}

/* Image */
.article_image_wrap{
width:100%;
max-width:950px;
margin: 0 auto 1rem;
}
.article_image{
display: block;
max-width:100%;
height: auto;
border-radius: 5px;
box-shadow: var(--image-shadow);
margin: 0 auto; 
}

.article_text_ad_box{
margin-bottom:1.5em;
text-align: center;
}

.single_article_aside{
display: flex;
flex-direction: column;
row-gap:40px;
}
.single_article_aside .ad_wrap:last-of-type {
position: sticky;
top: 20px;
}

.single_article_footer_info{
display: flex;
justify-content: space-between;
padding: 1em;
border-radius: 8px;
align-items: center;
line-height: normal;
font-size: 0.875em;
color:var(--article-info-color);
border: 1px solid var(--box-border-color);
}

@media (max-width: 900px) {
    .single_article_body{
    display: flex;
    flex-direction: column;
    }
    .single_article_aside{
    flex-direction: row;
    justify-content: space-around;
    }
}
@media (max-width: 750px) {
    .single_article_aside{
    flex-direction: column;
    row-gap:30px;
    }
}



/* Single Book =====================================*/
.single_article_wrap-book{
display: grid;
grid-template-columns: 400px 1fr;
gap:14px 30px;
}
.single_article_book_body{}
.single_article_book_body .section_btn{
margin:2em 0;
}
.single_article_book_img_wrap{
text-align: center;
}
.single_article_book_img_wrap img{
display: inline-block;
width:100%;
height: auto;
}

@media (max-width: 1150px) {
    .single_article_wrap-book{
    grid-template-columns: 200px 1fr;
    }
    .single_article_book_body .section_btn{
    margin:2em auto;
    }
}
@media (max-width: 750px) {
    .single_article_wrap-book{
    grid-template-columns: 1fr;
    }
    .single_article_book_img_wrap img{
    max-width: 200px;
    }
}


/* More Articles =====================================*/
.more_content_wrap{
padding:2.5em 0;
}

.more_content_container_grid{
display: grid;
grid-template-columns: 1fr 300px;
grid-template-rows: auto;
grid-auto-flow: row;
gap:30px 30px;
}

.section_heading-more_content{
margin-bottom: 1.25rem;
}

@media (max-width: 1100px) {
    .more_content_container_grid{
    gap:30px 20px;
    }
}
@media (max-width: 900px) {
    .more_content_container_grid{
    display: flex;
    flex-direction: column;
    row-gap:30px;
    }
}
@media (max-width: 750px) {
    .more_content_heading{
    text-align: center;
    }
}

/* More articles =======================================*/
.more_content_wrap-articles{}

.more_content_grid{
display: grid;
grid-template-rows: auto;
grid-auto-flow: row;
gap:30px 30px;
}
.more_content_grid-three_col{
grid-template-columns: 1fr 1fr 1fr;
}
.more_content_grid-two_col{
grid-template-columns: 1fr 1fr;
}
@media (max-width: 750px) {
    .more_content_grid-two_col{
    grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .more_content_grid-three_col{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    }
}


/* List of titles only */
.more_content-list{
display: flex;
flex-direction:column;
row-gap:30px;
}



/* Content from SNC =======================================*/
.more_content_container_grid-snc{
grid-template-columns: 1fr 300px;
}

/* Single Full Article Post =====================================*/
.article_entry {
font-size: 1.25em;
position: relative;
}

/* Column Article Post */
.single_article_wrap-column .article_entry,
.single_article_wrap-podcast .article_entry{
max-width: 850px;
margin: 0 auto;
}

.article_entry h1,
.article_entry h2,
.article_entry h3,
.article_entry h4,
.article_entry h5,
.article_entry h6{
display:block;
margin-bottom:1em;
line-height:1.3;
padding-top:10px;
}
.article_entry h1{
font-size:clamp(1.5rem, 3.5vw, 2rem);
}
.article_entry h2{
font-size:clamp(1.375rem, 3.5vw, 1.75rem);
}
.article_entry h3{
font-size:clamp(1.25rem, 3.5vw, 1.5rem);
}
.article_entry h4,
.article_entry h5,
.article_entry h6{
font-size:1.125em;
}
.article_entry p,
.article_entry ul,
.article_entry ol,
.article_entry blockquote{
line-height: 1.5;
}
.article_entry p{
padding-bottom:1.5em;
}
.article_entry blockquote{
padding:0 2em;
font-style:italic;
color:#888888;
margin-bottom:1.5em;
}
.article_entry a{
color: var(--link-color);
text-decoration: underline;
}
.article_entry ul{
list-style-type:square;
padding-left:2em;
}
.article_entry ul > li > ul{
list-style-type:circle;
padding-bottom:10px;
padding-top:10px;
}
.article_entry ol{
list-style-type:decimal;
padding-left:2em;
}
.article_entry ol > li > ol{
list-style-type:lower-alpha;
padding-left:2em;
padding-bottom:10px;
padding-top:10px;
}
.article_entry ul li, .entry ol li{
padding-bottom:1.5em;
}
/* Images */
.article_entry img{
margin:0 auto;
display:block;
height:auto;
border-radius: 5px;
}
.article_entry img.aligncenter,
.article_entry img.alignnone{
margin:1em auto;
display:block;
max-width:100%;
height:auto;
}
.article_entry p:first-child > img.aligncenter,
.article_entry p:first-child > img.alignnone{
margin:0 auto 1em;
}
.article_entry img.alignleft{
float:left;
margin-right:30px;
margin-bottom:10px;
margin-top:5px;
display:block;
max-width:40%;
height:auto;
}
.article_entry img.alignright{
float:right;
margin-left:23px;
margin-bottom:10px;
margin-top:5px;
display:block;
max-width:40%;
height:auto;
}
/* Images with captions */
.article_entry div img{
margin:0 auto 1.5em;
display:block;
}
.article_entry div.alignleft{
float:left;
margin-right:20px;
margin-bottom:10px;
margin-top:5px;
max-width:40% !important;
}
.article_entry div.alignright{
float:right;
margin-left:20px;
margin-bottom:10px;
margin-top:5px;
max-width:40% !important;
}
.article_entry div.aligncenter,
.article_entry div.alignnone{
margin:0 auto 1.5em;
}
.article_entry div.alignleft img,
.article_entry div.alignright img{
display:block;
width:100%;
height:auto;
margin-bottom:10px;
}
.article_entry div.aligncenter img,
.article_entry div.alignnone img{
margin:0 auto 10px;
display:block;
width:100%;
max-width:640px;
height:auto;
}
.article_entry .wp-caption-text{
font-size:12px;
color:#727272;
display:block;
width:100%;
max-width:500px;
margin:0 auto;
text-align:center;
line-height:1;
padding-bottom:0;
}

.video_player_wrap {
position: relative;
padding-bottom: 56.25%;
height: 0;
}
.video_player_wrap iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

@media (max-width: 700px) {
	.article_entry img.alignleft,
	.article_entry img.alignright{
	float:none;
	margin:0 auto 1.5em;
	max-width:100%;
	}
	.article_entry div.alignleft,
	.article_entry div.alignright{
	float:none;
	margin:0 auto 1.5em;
	max-width:100% !important;
	}
}



/*================================================
    Watch the Show
==================================================*/
.watch_show_wrap{
max-width:1000px;
margin:0 auto;
padding-top: 2em;
}
.watch_show_heading{
display: flex;
align-items: center;
justify-content: center;
width: 100%;
padding: 14px 0;
font-size: 1.75em;
font-weight: 600;
line-height: 1.3em;
text-transform: uppercase;
background-color: var(--snc-blue);
color: #fff;
}
.watch_show_heading img{
display: inline-block;
height: 32px;
margin-left: 12px;
}
.watch_show_embed_wrap{
width:100%;
position:relative;
}
@media (max-width: 750px) {
    .watch_show_wrap{
    padding-top: 1.5em;
    }
	.watch_show_heading{
	font-size:1.25em;
	}
	.watch_show_heading img{
    height: 18px;
    margin-left: 6px;
	}
}


/*================================================
	Listen Live
==================================================*/
.listen_live_wrap{
margin-bottom: 2em;
}
.listen_live_container {
background: #222;
display: grid;
align-items: center;
border-radius: 10px;
height: 250px;
overflow: hidden;
grid-template-columns: 250px 1fr;
}
.listen_live_img_wrap{}
.listen_live_img {
display: block;
width: 100%;
height: auto;
}
.listen_live_content{
display: flex;
width: 100%;
flex-direction: column;
row-gap: 20px;
padding: 0 30px;
}
.listen_live_title {
font-size: clamp(1.25rem, 3.5vw, 2rem);
color: #fff;
display: block;
line-height: 1.4;
}
.listen_live_player{
border: 1px solid #555;
padding: 0 20px 0 30px;
background: #000;
border-radius: 8px;
}

@media (max-width: 750px){
    .listen_live_container{
    height:200px;
    grid-template-columns: 200px 1fr;
    }
    
}
@media (max-width: 560px){
    .listen_live_container{
    grid-template-columns: 1fr;
    height: auto;
    gap: 20px;
    padding: 20px 0;
    }
    .listen_live_img_wrap{
    width: 200px;
    height: auto;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    }
    .listen_live_content{
    padding: 0 20px;
    }
}

/* Player customizations */
.listen_live_player .td-player-bar,
.listen_live_player .td-player-mini  {
display: flex;
height: 110px;
justify-content: space-between;
}
.listen_live_player .td-player-mini__media-controls button {
font-size: 42px !important;
color: #ffd200 !important;
border: 1px solid #555;
width: 80px;
height: 80px;
border-radius: 40px;
background: #222;
text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
position: relative;
margin-top: 15px !important;;
box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.6);
}
.listen_live_player .fa-play:before {
left: 3px;
position: relative;
}
.listen_live_player .td-player-mini__volume-controls {
margin: 10px 20px 0px !important;
}
.listen_live_player .td-player-mini__volume-controls__volume--up{
font-size: 30px !important;
position: relative !important;
top: 4px !important;
}
.listen_live_player .noUi-handle{
border-radius: 12px !important;
height: 12px !important;
width: 12px !important;
margin-top: -6px !important;
}


/* Full width aside (mainly for Listen Live page) */
.full_width_aside{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
column-gap: 30px;
row-gap: 40px;
margin-top: 2em;
}


/*================================================
	Contact - Page and Forms
==================================================*/
.contact_info_wrap{
display: flex;
justify-content: space-evenly;
margin-bottom: 3em;
}
.contact_info_box{
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
line-height: 1.4;
font-size: 1.25em;
}
.contact_info_box_title {
font-weight: 500;
}
.contact_info_box > a{
color:var(--link-color);
text-decoration: none;
font-weight: 700;
font-size: 1.125em;
}
.contact_info_box_btns{
display: flex;
justify-content: center;
column-gap: 20px;
margin-top: 5px;
}
.contact_info_box_btns .follow_btn{
color:var(--link-color);
}

@media (max-width: 750px) {
    .contact_info_wrap{
    flex-direction: column;
    row-gap: 20px;
    }
}

.contact_description {
font-size: 1.125em;
text-align: center;
font-weight: 600;
margin-bottom: 2em;
}


/* Contact Page Form Wrap (slide down boxes) =============================*/
.form_box_wrap{
font-size: 1.125em;
}
.form_box{padding-bottom:2em; border-bottom:1px solid var(--box-border-color); margin-bottom:2em;}
.form_box_title{font-size:1.5em; font-weight:700; line-height:1.3em; margin-bottom:0.5em; display:block; color:var(--article-title-color); cursor: pointer; text-decoration: none;}
.form_box_title:hover,
.form_box_title:focus{text-decoration:underline; text-decoration-thickness:var(--text-decoration-thickness); text-underline-offset:var(--text-underline-offset);}
.form_box > p{margin-bottom:1.5em; line-height:1.5em; font-size:1.125em;}
.form_box > p:last-of-type{margin:0;}
.contact_form_container{display:none; margin-top:1em;}
.red{color:red;}


/* Contact Forms =============================*/
.contact_form_wrap{}
.contact_field_wrap p{
padding:0;
}
.contact_field_wrap{
margin-bottom:1em;
position:relative;
}
.contact_field_wrap label{
display:block;
padding-bottom:4px;
font-size:1.125em;
font-weight:700;
}
.contact_field_wrap label span{
font-weight:400;
color:#B03F41;
font-size:0.875em;
margin-left:10px;
}
.contact_field_wrap input[type="text"],
.contact_field_wrap input[type="email"],
.contact_field_wrap input[type="tel"],
.contact_field_wrap select,
.contact_field_wrap textarea{
padding: 10px;
font-size: 1.125em;
border: 1px solid #d9d9d9;
background: #eee;
border-radius: 8px;
color: #000;
}
.contact_field_wrap input[type="text"],
.contact_field_wrap input[type="email"],
.contact_field_wrap input[type="tel"],
.contact_field_wrap select{
width:60%;
}
.contact_field_wrap textarea{
width:100%;
height: 100px;
}
.contact_field_wrap .wpcf7-submit{
background: var(--button-bg-color);
color:#fff;
display: inline-flex;
justify-content: center;
align-items: center;
text-decoration: none;
font-size: 1.125em;
text-shadow: var(--text-shadow);
border-radius: 10px;
column-gap: 7px;
transition: var(--transition-all);
cursor: pointer;
padding:10px 1em;
border:none;
}
.contact_field_wrap .wpcf7-submit:hover,
.contact_field_wrap .wpcf7-submit:focus{
background: var(--button-bg-color-hover);
}
.contact_field_wrap .captcha input[type="text"]{
width:100px;
position: relative;
}
/*
.contact_field_wrap .wpcf7-captcha{
margin-left:10px;
outline:1px solid #000;
border:5px solid #fff;
height:40px;
width:auto;
position: relative;
top: 13px;
}
*/
.contact_field_wrap .wpcf7-radio{padding-top:10px; display:block;}
.contact_field_wrap .wpcf7-radio .wpcf7-list-item{display:block; margin-bottom:0.5em; font-size:1em;}
.contact_field_wrap .wpcf7-radio .wpcf7-list-item label span{color:inherit; font-size:inherit; cursor:pointer;}

.contact_field_wrap input[type="text"].wpcf7-not-valid,
.contact_field_wrap input[type="email"].wpcf7-not-valid,
.contact_field_wrap input[type="tel"].wpcf7-not-valid,
.contact_field_wrap textarea.wpcf7-not-valid{
border-color:red;
background-color:#F5D8D8;
}


.form_box .wpcf7 form .wpcf7-response-output{
border-radius: 5px;
padding: 10px 1em;
}


@media (max-width: 750px) {
    .contact_field_wrap input[type="text"],
    .contact_field_wrap input[type="email"],
    .contact_field_wrap input[type="tel"],
    .contact_field_wrap select{
    width:100%;
    }
}


/*================================================
	Search
==================================================*/
/*  Main Search Form - Popup/Overlay =============*/
.search_overlay{
display: none;
height: 100vh;
left: 0;
padding: 4em 40px 40px;
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
}

.search_overlay_bg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.9);
}

.search_container{
width: 100%;
max-width: 900px;
margin: 0 auto;
position: relative;
padding: 2em;
background: #333;
border-radius: 10px;
z-index: 10;
}
.search_container_heading{
font-size: 1.75em;
font-weight: 600;
display: block;
margin-bottom: 1em;
position: relative;
color: #fff;
text-align: center;
line-height: 1.3em;
}

.search_box{
position:relative;
}
.search_form{
padding: 1em;
background-color: #fff;
border-radius: 5px;
display: flex;
justify-content: space-between;
width: 100%;
column-gap: 1em;
align-items: center;
}
.search_form input[type="text"]{
font-size: 1.125em;
padding: 1em 0;
width: 100%;
border: 0;
background: #fff;
font-weight: 400;
color: #000;
border-bottom: 3px solid #ccc;
}
.search_form input[type="text"]:focus{
border-bottom-color:var(--marlow-orange);
outline:none;
}
.search_form .search_btn{
order: 0;
z-index: 10;
cursor: pointer;
font-size: 1em;
color: #fff;
font-weight: 600;
text-transform: uppercase;
background-color: var(--marlow-orange);
border-radius: 3px;
padding: 1em;
text-decoration: none;
display: flex;
justify-content: space-between;
align-items: center;
column-gap: 10px;
border: none;
}
.search_form .search_btn .search_icon{
display: block;
height: 18px;
width: auto;
fill:#fff;
filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.3));
}
.search_form .search_btn:hover,
.search_form .search_btn:focus{
background-color: var(--marlow-orange-hover);
}

.search_close_btn{
display: block;
border: 2px solid transparent;
width: 40px;
height: 40px;
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
z-index: 12;
background: var(--button-bg-color);
box-shadow: 0 0 15px #000;
border-radius: 5px;
border:none;
}
.search_close_btn::after,
.search_close_btn::before {
content: "";
display: block;
position: absolute;
width: 25px;
height: 2px;
background: #fff;
transform: rotate(45deg);
border-radius: 5px;
top: 18px;
left: 7px;
}
.search_close_btn::after {
transform: rotate(-45deg);
}
.search_close_btn:hover,
.search_close_btn:focus{
background: var(--button-bg-color-hover);
}

@media (max-width: 750px){
    .search_overlay{
    font-size:87.5%;
    padding: 4em 15px;
    }
    .search_container {
    padding: 14px;
    }
    .search_form{
    padding: 10px 1em;
    }
    .search_form input[type="text"]{
    padding: 8px 0;
    }
    .search_form .search_btn{
    padding: 10px 1em;
    }
    .search_close_btn{
    width: 30px;
    height: 30px;
    }
    .search_close_btn::after,
    .search_close_btn::before{
    top: 13px;
    left: 6px;
    width: 17px;
    }
}
@media (max-width: 480px){
	.search_form .search_btn .text{
	display:none;
	}
}

/* Live Search WP Results (customizations) */
.searchwp-live-search-results{
max-height: 400px;
}
.searchwp-live-search-results .searchwp-live-search-result{
flex-wrap: nowrap;
}
.searchwp-live-search-result:hover{
background: rgba(30, 30, 30,0.05);
}
.searchwp-live-search-result .searchwp-live-search-result--title a {
text-decoration: none;
}
.search_result_info {
font-size: 12px;
color: var(--article-info-color);
}
.searchwp-live-search-result--info .searchwp-live-search-result--desc{
font-size: 14px;
color:#444;
}
.live_search_result_message {
padding: 6px 12px;
text-align: center;
background: #333;
color: #fff;
display: flex;
justify-content:center;
align-items: center;
}
.live_search_result_message_title{
font-size: 1.125em;
text-transform: uppercase;
font-weight: 500;
}
.live_search_result_message_text{
background: #444;
color: #fff;
padding:10px 0;
text-align: center;
}
.live_search_result_message_text .search_icon {
display: inline-block;
position: relative;
margin:0 2px;
top:2px;
height: 14px;
width: auto;
fill: #fff;
}
@media (max-width: 750px){
    .live_search_result_message {
    justify-content:center;
    flex-direction: column;
    }
    .live_search_result_message_text{
    font-size:14px;
    }
    .searchwp-live-search-results-container .searchwp-live-search-result .searchwp-live-search-result--title a{
    font-size: 16px;
    }
}

/* Search Page */
.content_grid_wrap-search{}

.content_grid_wrap-search .archive_wrap{
display: flex;
row-gap: 40px;
flex-direction: column;
}
.article_box-search {}
.article_box.article_box-search:has(.article_box_image_cell) {
display: grid;
gap: 0 14px;
grid-template-columns: 100px 1fr;
}
.article_box.article_box-search .article_box_image_wrap {
aspect-ratio: 1 / 1;
}
.article_box.article_box-search .article_box_image_wrap img {
display: block;
max-width: 100%;
height: auto;
}

@media (max-width: 750px){
    .article_box.article_box-search:has(.article_box_image_cell) {
    grid-template-columns: 50px 1fr;
    }
}



/*================================================
	Ads
==================================================*/
.ad_wrap {
margin: 0 auto;
text-align: center;
}
.ad_wrap-300x250{}
.ad_wrap-728x90{}

.ad_wrap-header > .ad_container > div{
padding:10px 0;
}
.ad_container > div > a{
display:inline-block;
}

.ad_wrap-below_nav{
margin-top:20px;
}

.ad_container,
.ad_container > div {
margin: 0 auto;
position: relative;
}
.ad_wrap-300x250 .ad_container{
width: 300px;
height: 250px;
}

.ad_wrap-300x250 .ad_container img{
display:block;
}

.site_ad{
margin:0 auto;
max-width:100%;
height:auto;
}
.site_ad_728x90{display:block;}
.site_ad_468x60{display:none;}
.site_ad_320x100{display:none;}
@media (max-width: 760px) {
.site_ad_728x90{display:none;}
.site_ad_468x60{display:block;}
}
@media (max-width: 520px) {
.site_ad_728x90,
.site_ad_468x60{display:none;}
.site_ad_320x100{display:block;}
}


/*================================================
    Promotions
==================================================*/
.promotion_list{
list-style: none;
margin-top: 3em;
min-height: 500px;
}
.promotion_list > li{
margin-bottom: 1.5rem;
font-size:var(--archive-article-font-size);
font-weight: var(--article-title-weight);
line-height: var(--article-title-line-height);
}
.promotion_list > li a{
color:var(--link-color);
text-decoration: none;
}
.promotion_list > li a:hover,
.promotion_list > li a:focus{
text-decoration: underline;
text-decoration-thickness:var(--text-decoration-thickness);
text-underline-offset:var(--text-underline-offset);
}


/*================================================
	Newsletter Signup Ads
==================================================*/
.footer_newsletter_ad_wrap {
padding-bottom: 4em;
}
.footer_newsletter_ad_container {
display: grid;
justify-content: center;
background-color:var(--marlow-orange);
background-image:
url(assets/images/header-marlow.png),
linear-gradient(140deg, rgba(249, 93, 10, 1) 0%, rgba(237, 72, 5, 1) 100%);
background-position: 4px 14px, 0 0;
background-size: 228px, auto;
background-repeat: no-repeat;
padding: 50px 30px 50px 205px;
align-items: center;
max-width: 1080px;
margin: 0 auto;
gap: 20px 40px;
grid-template-columns: 1fr 200px;
border-radius: 10px;
position: relative;
text-decoration: none;
transition:var(--transition-all);
}
.footer_newsletter_ad_container:hover{
transform:scale3d(1.05,1.05,1.05);
}
.footer_newsletter_ad_info{
color: var(--site-text-color);
text-decoration: none;
display: block;
}
.footer_newsletter_ad_info .heading{
color: #fff;
font-size: clamp(1.375rem, 3.5vw, 1.75rem);
line-height: 1.2;
text-transform: uppercase;
margin-bottom: 1rem;
font-weight: 800;
text-shadow: var(--text-shadow);
}
.footer_newsletter_ad_info p{
font-size: 1.125em;
color: #fff;
text-shadow: var(--text-shadow);
}
.footer_newsletter_ad_btn{
height: 50px;
background: #fff;
color: #000;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
font-size: 1.125em;
border-radius: 10px;
column-gap: 7px;
margin: 0 auto;
transition: var(--transition-all);
cursor: pointer;
width: 100%;
font-weight: 700;
box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
text-transform: uppercase;
}
.footer_newsletter_ad_btn span {
display: block;
width: 8px;
height: 8px;
border-right: 2px solid currentColor;
border-top: 2px solid currentColor;
transform: rotate(45deg);
text-shadow: var(--text-shadow);
}

@media (max-width: 1000px){
    .footer_newsletter_ad_container {
    grid-template-columns: 1fr 200px;
    padding: 40px 30px 40px 222px;
    grid-template-columns: 1fr 140px;
    }
}

@media (max-width: 750px){
    .footer_newsletter_ad_wrap {
    padding-bottom: 3em;
    }
    .footer_newsletter_ad_container{
    background-image: linear-gradient(140deg, rgba(167, 31, 43, 1) 0%, rgba(18, 16, 16, 1) 100%);
    background-position: 0 0;
    display: flex;
    flex-direction: column;
    padding: 30px;
    font-size: 87.5%;
    }
    .footer_newsletter_ad_info{
    text-align: center;
    }
    .footer_newsletter_ad_btn{
    max-width: 240px;
    }
}

/* Slide in ===================================*/
.newsletter_ad_slider_wrap{
display: none;
position: fixed;
z-index: 500;
left: -400px;
bottom: 100px;
width:400px;
}
.newsletter_ad_slider{
display: block;
width: 100%;
height: 200px;
background-color:var(--marlow-orange);
background-image: url(assets/images/header-marlow.png),
linear-gradient(140deg, rgba(249, 93, 10, 1) 0%, rgba(237, 72, 5, 1) 100%);
background-position: 241px 18px, 0 0;
background-repeat: no-repeat;
padding: 18px 120px 0 20px;
text-decoration: none;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.6);
background-size: 228px, auto;
}
.newsletter_ad_slider .heading{
color: #fff;
font-weight: 800;
font-size: 1.5em;
margin-bottom: 7px;
line-height: 1.2;
text-transform: uppercase;
text-shadow: var(--text-shadow);
}
.newsletter_ad_slider .text{
color: #fff;
line-height: 1.4em;
font-size: 15px;
margin-bottom: 16px;
text-shadow: var(--text-shadow);
}
.newsletter_ad_slider .btn{
width: 200px;
border-radius: 4px;
height: 36px;
line-height: 36px;
text-align: center;
color: #000;
font-weight: 600;
font-size: 1em;
background-color: #fff;
font-weight: 700;
box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.15);
text-transform: uppercase;
}
.footer_newsletter_ad_btn span {
display: block;
width: 8px;
height: 8px;
border-right: 2px solid currentColor;
border-top: 2px solid currentColor;
transform: rotate(45deg);
text-shadow: var(--text-shadow);
}

/* close button */
.newsletter_ad_slider_close_link{
position: absolute;
top: -12px;
right: -12px;
color: #000;
font-size: 0;
z-index: 10;
display: inline-block;
width: 24px;
height: 24px;
text-align: center;
text-decoration: none;
cursor: pointer;
font-weight: 700;
background: #000;
border-radius: 20px;
border: 2px solid #fff;
}
.newsletter_ad_slider_close_link::before,
.newsletter_ad_slider_close_link::after{
content: '';
display: block;
width: 10px;
height: 2px;
background: #fff;
top: 9px;
left: 5px;
position: absolute;
}
.newsletter_ad_slider_close_link::before{transform: rotate(-45deg);}
.newsletter_ad_slider_close_link::after{transform: rotate(45deg);}


@media (max-width: 1040px){
	.newsletter_ad_slider_wrap{
	bottom:150px;
	}
}
@media (max-width: 700px){
	.newsletter_ad_slider_wrap{
	width:350px;
	left: -350px;
	}
	.newsletter_ad_slider{
    background-position: 180px 18px, 0 0, 0 0;
    padding: 16px 120px 0 18px;
	}
	.newsletter_ad_slider .heading{
	font-size: 1.25em;
	}
	.newsletter_ad_slider .text{
    font-size: 16px;
    margin-bottom: 13px;
    line-height: 1.3;
	}
}


/*================================================
	Footer Follow Buttons
==================================================*/
.footer_ads_wrap {
padding-bottom: 4em;
}
.footer_ads_container{
display: flex;
justify-content: center;
align-items: center;
column-gap: 40px;
row-gap: 40px;
}
.footer_ad_box img {
display: block;
max-width: 100%;
height: auto;
margin: 0 auto;
}
@media (max-width: 500px){
    .footer_ads_container{
    flex-direction: column;
    row-gap: 40px;
    }
}

/*================================================
	Footer Follow Buttons
==================================================*/
.footer_follow_wrap {
background: #dbdbdb;
padding: 2em 0;
}
.footer_follow_container {
display: flex;
justify-content: center;
align-items: center;
column-gap: 60px;
color:#000;
}
.footer_follow_tile {
font-size: clamp(1rem, 0.656vw + 0.713rem, 1.5rem);
}
.footer_follow_container .follow_btn{
color:#000;
}
.footer_follow_container .follow_btn:hover,
.footer_follow_container .follow_btn:focus{
color:#222;
}
.footer_follow_container .follow_btn svg{
height: 26px;
} 

@media (max-width: 1150px){
    .footer_follow_container {
    column-gap: 40px;
    }
    .footer_follow_container .follow_btn svg{
    height: 20px;
    }
}
@media (max-width: 750px){
    .footer_follow_container {
    column-gap: 20px;
    } 
}

/*================================================
	Footer
==================================================*/
.footer{
background: linear-gradient(to bottom, rgba(0,0,0,1) 0%,rgba(44,13,1,1) 100%);
}
.main_footer_wrap{
padding:4em 0;
}

/* Logo ===========================================*/
.footer_logo_wrap{
display: flex;
justify-content: center;
align-items: center;
column-gap: 30px;
}
.footer_logo{
width: 102px;
height: auto;
display: block;
filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.3));
}
.footer_tagline_wrap{
display: flex;
flex-direction: column;
row-gap: 5px;
color:#fff;
text-align: right;
}
.footer_tagline_small{
font-size: 1.125em;
}
.footer_tagline_large{
font-size: 1.5em;
}
.footer_tagline_large span{
font-weight:700;
}

@media (max-width: 1100px) {
    .footer_logo{
    width: 72px;
    }
}
@media (max-width: 700px) {
    .footer {
    font-size: 87.5%;
    }
}


/* Footer Nav ===========================================*/
.footer_nav {
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
row-gap: 1em;
column-gap: 2em;
max-width: 850px;
margin: 3em auto 0;
}
.footer_nav > li {}
.footer_nav > li > a {
color: #fff;
text-decoration: none;
opacity: 0.8;
font-size: 1em;
display: inline-block;
line-height: 1.4em;
text-align: center;
}
.footer_nav > li > a:hover,
.footer_nav > li > a:focus{
text-decoration: underline;
}

@media (max-width: 750px) {
    .footer_nav {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
    }
}


/* Copyright ===========================================*/
.copyright_footer_wrap {
padding: 2em 0 9em 0;
font-size: 0.875em;
text-align: center;
color: #ffffff;
opacity: 0.7;
}
.copyright_footer_wrap p {
margin-bottom: 10px;
line-height: 1.5;
}
.salem_links_nav,
.policy_links_nav {
display: flex;
justify-content: center;
list-style: none;
flex-wrap: wrap;
row-gap: 5px;
column-gap: 10px;
}
.salem_links_nav > li,
.policy_links_nav > li {
text-align: center;
}
.salem_links_nav > li > a,
.policy_links_nav > li > a {
color: #fff;
text-decoration: none;
font-size: 1em;
display: inline-block;
}
.salem_links_nav > li > a:hover,
.salem_links_nav > li > a:focus,
.policy_links_nav > li > a:hover,
.salem_links_nav > li > a:focus{
text-decoration: underline;
}
.salem_links_nav{
margin-bottom:10px;
}

@media (max-width: 750px) {
    .copyright_footer_wrap {
    padding-bottom: 11em;
    }
}


/*================================================
	404
==================================================*/
.four_0_four_heading{
display: block;
text-align: center;
font-size: clamp(1.5rem, 11vw, 6rem);
color: var(--article-title-color);
margin-bottom: 1rem;
}
.four_0_four_text{
text-align: center;
}


/*================================================
	Print
==================================================*/
@media print {
    /*Reset*/
    body{
    margin:0;
    padding:0;
    line-height: 1.4em;
    word-spacing:1px;
    letter-spacing:0.2px;
    font-size: 11pt !important;
    font-family:Arial, Helvetica,"Lucida Grande", serif !important;
    color: #000 !important;
    }
    /*Remove Elements*/
    .header,
    .footer,
    .show_action_btns_wrap,
    .footer_newsletter_ad_wrap,
    .follow_section,
    .newsletter_ad_slider_wrap,
    .search_overlay,
    .article_share_links_wrap,
    .single_article_aside,
    .more_content_wrap,
    .ad_wrap,
    .cipa_wrap,
    .fontsize_wrap,
    .single_article_footer_info,
    .footer_follow_wrap,
    .article_text_ad_box{
    display:none !important;
    }
    /*Styled Elements*/
    .article_image{
    box-shadow:none !important;
    }
    .single_article_header_info{
    border:none !important;
    }
    .single_article_header_title{
    color:#000 !important;
    }
    
    element{
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    border:0 !important;
    }
    posttitle{
    font-size: 14pt !important;
    font-family:Arial, Helvetica,"Lucida Grande", serif !important;
    color: #000 !important;
    }
    ul{
    list-style:none;
    margin:0;
    padding:0 0 10px 0;
    }
}

