/* Move logo next to title | DIFM */
 
@media screen and (min-width: 560px){
	.site-header {
  grid-template-areas: 
  "site-logo site-title main-navigation"
	"site-logo site-description social-navigation";
   grid-template-columns: 100px 1fr 2fr;
    }
  .site-header .site-title,   
  .site-header .main-navigation {
   		align-self: end;
    }
   .site-header .site-logo {
   		margin-bottom: 0;
    }
}

/* Set Footer width | DIFM KEF */
/*@media only screen and (min-width: 1024px){
.widget-area .widget {
    width: calc(48% - 21.328px);
}
}
*/

/* Gray Footer | DIFM KEF */
@media only screen and (min-width: 1280px) {
body:not(.fse-enabled) #colophon {
    width: 100%;
    max-width: 100%;
    padding:20px;
    background-color:#DFDFDF;
}
}

/*hide sharing buttons on Newsletter page posts-DIFM-SE*/
.sharedaddy.sd-sharing-enabled{
	display: none; 
}

/* add transparent baclground on youtube subscribe button */
.page-id-6172 div center {
    background: black;
    padding: 20px;
    border-radius: 5%;
    width: 16%;
    opacity: 70%;
}

/* Header Full width | DIFM KEF */
@media only screen and (min-width: 1280px) {
body:not(.fse-enabled) #masthead {
    width: 100%;
    max-width: 100%;
    padding-left:40px;
    padding-right:40px;
}
}

/* Slideshow Full Width block: make the images full width as well | DIFM*/
.wp-block-jetpack-slideshow.alignfull .wp-block-jetpack-slideshow_image {
  width: 100vw;
  max-width: unset;
  object-fit: cover;
}

/*Italicize site decritpion-DIFM-SE*/
p.site-description{
  font-style: italic;
}

/* Hide categories from blog page */
.cat-links a {
	display: none;
}

/* Hide featured image on individual posts */
.single .wp-post-image {
display: none;
}

/* Hide Previous/Next posts */
.nav-links {
	display: none;
}

/* Article pullquote style */
blockquote.stylePost {
max-width: 600px;
text-align: center;
margin: 20px;
padding: 20px;
font-family: Arial,Helvetica Neue,Helvetica,sans-serif;
font-size: 20px;
color: #25408f;
border-left: 4px solid #428bca;
border-top-left-radius: 30px;
border-bottom-left-radius: 30px;
border-right: 4px solid #428bca;
border-top-right-radius: 30px;
border-bottom-right-radius: 30px;
}



/*Podcast excerpt style */

blockquote.stylePodcast {
	text-align: center;
  font: italic 16px Ariel;
	padding: 20px;
	background-color: rgba(150, 218, 234, 0.3);
	margin: 20px;
  border-top: 1px solid #25408f;
  border-bottom: 1px solid #25408f;
  background-image: url(https://gradientflow.com/wp-content/uploads/2021/07/open-quote4.png);
  background-position: 3% 3%;
  background-repeat: no-repeat;
  text-indent: 23px;
  }
  blockquote.stylePodcast span {
     display: block;
     background-image: url(https://gradientflow.com/wp-content/uploads/2021/07/closed-quote4.png);
		padding: 20px;
		background-repeat: no-repeat;
    background-position: bottom right;
   }


/*HR style */

hr {
      background-color: #dfdfdf;
			border: 0;
      height: 1px;
      width: 100%;
   }

/* Remove like button / hc-33878274 (DSC) */
.jetpack-likes-widget-loaded {
    display: none !important
}

