/* Editor styles for the PSRC Post Grid block. */

.psrc-post-grid-container {
	-webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	gap: 35px;
	margin-bottom: 0px;
}

.psrc-post-grid-ind {
	flex-grow: 1;
	margin-bottom: 20px;
}

.psrc-post-grid-ind:last-child {
	/*flex-grow: 0; - Disabled on 6/10/25 due to video sizing issue */
	flex: 1 1 auto;
}

.psrc-post-grid-ind.flexcol-auto {
	width: 100%;
}

h3.psrc-post-grid-ind-title {
	line-height: 1.2;
	margin-top: 16px;
}

h3.psrc-post-grid-ind-title a {
	color: #333333;
	font-size: 18px;
	font-weight: normal;
	text-decoration: none;
}

.audio-video .av-block p a[href$=".mp3"] {
  background-color: transparent;
  padding: 0;
  line-height: inherit;
}
.audio-video .av-block p a[href$=".mp3"]:before {
  font-size: 0.9em;
  top: 0;
}

.av-video {
	margin-bottom: 10px;
}

.embed-container {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #b7d2f1;
  width: 100%;
  height: 100%;
  transition: all ease-in 150ms;
}

/* Vimeo Only */
.embed-container.vimeo-thumbnail iframe, .embed-container.vimeo-thumbnail object, .embed-container.vimeo-thumbnail embed {
  position: relative;
  top: auto;
  left: auto;
  border: 1px solid #b7d2f1;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  transition: all ease-in 150ms;
  z-index: 1;
}

.vimeo-container {
	position: relative;
	padding-top:56.25%;
}

.vimeo-container iframe {
	margin: 0;
}


.psrc-post-grid-ind-image {
	display: inline-block;
	position: relative;
	border: 1px solid #b7d2f1;
	line-height: 0%;
	transition: all ease-in 150ms;
	vertical-align: middle;
	width: 100%;
}

.muted-filter img, .muted-filter .w-chrome {
	/*filter: grayscale(.5);*/
	filter: none;
	transition: var(--psrc-transition);
}

.muted-filter img:hover, .muted-filter img:focus, .muted-filter .w-chrome:hover, .muted-filter .w-chrome:focus {
	/*filter: none;*/
	filter: grayscale(.5);
}

.embed-mask {
	background-image: url("psrc-blue-overlay.png");
	height: 100%;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: all ease-in 150ms;
	z-index: 1;
}


.embed-container:hover .embed-mask, .psrc-post-grid-ind-image:hover .embed-mask, .embed-container.active .embed-mask, .embed-mask:hover, .embed-mask:focus, .embed-mask:active {
	display: none;
	left: -9999em;
}



.av-audio {
  width: 100%;
  background-color: #303030;
}

.fa-volume-up {
  color: #555;
  position: absolute;
  top: 11%;
  left: 33%;
  font-size: 150px !important;
}

.psrc-activity-date:before {
	color: var(--psrc-blue-medium);
	content: '\f133';
	font-family: 'Font Awesome 6 Pro';
	margin-right: 5px;
}


/* Responsive Styles */

@media screen and (min-width: 320px) and (max-width: 1024px) {

.psrc-post-grid-ind-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
	
}