/* change gap in site branding */
body .site-brand .is-layout-flex {
	gap: 0;
}

/* underline current menu item in the main navigation */
header .current-menu-item,
.blog header .wp-block-navigation-item a[href*="https://nearlycoherent.com/episodes/"]{
	text-decoration: underline;
}

/* align listen now links on front page */
.home #more-episodes + .entry-content .wp-block-post .wp-block-post-excerpt {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}


/* hide podcast player artwork on mobile devices */
@media screen and (max-width: 769px) {
	.castos-player .player__main {
		grid-template-columns: auto;
	}
	
	.castos-player .playback .playback__controls {
		display: none;
	}
	
	.player__artwork {
		display: none;
	}
	
	.castos-player .play-progress {
		margin-left: 0;
	}
}

/* make podcast player controls opaque */
.castos-player .player:hover .playback__controls button, 
.castos-player .player:hover .playback__timers, 
.castos-player .player:hover .player-panels-nav button,
.castos-player .playback__controls button,
.castos-player .playback__timers {
	opacity: 0.85;
}

/* change play pause control button color */
.castos-player .play-progress .play-pause-controls .play-btn {
	background: var(--wp--preset--color--custom-e-d-orange) no-repeat 14px 11px;
}

/* change playback bar color */
.castos-player .progress__filled {
	background-color: var(--wp--preset--color--custom-e-d-orange);
}

/* hide podcast meta that isn't being hidden for some reason? */
.podcast_meta {
	display: none;
}

.wp-block-post-excerpt__more-link {
	font-family: NCPod Font;
}

/* search icon color */
.gridicon.gridicons-search {
	fill: var(--wp--preset--color--custom-nc-pod-white);
}

.header__search-btn.jetpack-search-filter__link {
	line-height: normal;
}

/* change navigation row layout for mobile */
@media screen and (max-width: 560px) {
	.wp-container-6 {
		width: 100%;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
}