:root {
	--psrc-events-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3);
}

/* For Inline Icons */
.icon::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.psrc-event-list-container.flex-columns {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 35px;
}

.psrc-event-list-ind {
	box-shadow: var(--psrc-events-box-shadow);
    height: 430px; /* Default Fixed Height for 3 Columns */
    overflow: hidden; /* Prevents container for expanding past its set height. */
	position: relative;
}

.psrc-event-list-ind.flexcol-half {
    height: 534px; /* Two Column Height */
}

.psrc-event-list-ind.flexcol-fourth {
    height: 410px; /* Four Column Height */
}

.psrc-event-list-ind.flexcol-half, .psrc-event-list-ind.flexcol-third, .psrc-event-list-ind.flexcol-fourth {
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
}

.psrc-event-list-ind-image {
	position: relative;
	transition: all 0.3s ease;
	z-index: 1;
}

.psrc-event-list-ind-image img {
	object-fit: cover;
	opacity: 1;
}

.psrc-event-list-ind-image.psrc-event-image-is-active {
	filter: grayscale(.8);
	opacity: .8;
	transform: translate(0, -20%);
	z-index: 0;
}

.psrc-event-list-ind-content {
	background-color: #FFF;
	padding: .5em 1em;
	position: relative;
	transition: all 0.3s ease;
	z-index: 2;
}

.psrc-event-list-ind .psrc-event-list-ind-content.psrc-show-details {
	transform: translate(0, -150px);
	transition: all 0.3s ease;
}

.psrc-event-list-ind.flexcol-fourth .psrc-event-list-ind-content.psrc-show-details {
	transform: translate(0, -100px); /* Four Column Transform */
}

.psrc-event-list-ind-time {
	color: var(--psrc-charcoal);
	font-size: .95rem;
	text-align: center;
}

.psrc-event-list-ind-title {
	font-family: futura-pt-bold, sans-serif;
	font-size: 1.2rem;
	text-align: center;
	text-transform: uppercase;
}

.psrc-event-list-ind-content .psrc-event-list-ind-summary {
	font-size: 1.1rem;
	max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

.flexcol-fourth .psrc-event-list-ind-content .psrc-event-list-ind-summary {
	font-size: .95rem; /* Decrease Font Size in Four Columns */
}

a .psrc-event-list-ind-time, a .psrc-event-list-ind-title, a .psrc-event-list-ind-summary, .psrc-event-list-ind-content a {
	color: var(--psrc-body-text);
	text-decoration: none !important;
}

.psrc-event-list-ind-content.psrc-show-details .psrc-event-list-ind-summary  {
	margin-top: 0.5em;
	max-height: 150px;
    opacity: 1;
}

.flexcol-fourth .psrc-event-list-ind-content.psrc-show-details .psrc-event-list-ind-summary {
	max-height: 175px; /* Four Column Height */
}

.psrc-event-list-ind-link {
	margin-top: -50px;
	text-align: center;
	 transition: all 0.3s ease;
}

.psrc-event-list-ind-content.psrc-show-details .psrc-event-list-ind-link {
	margin-top: -44px;
}

.psrc-event-list-ind-link a {
	box-shadow: var(--psrc-events-box-shadow);
	color: #FFF;
	margin: 14px auto;
}

.psrc-event-list-ind-switch {
	margin-top: 14px;
	position: absolute;
	bottom: 4px;
	left: 0;
	right:0;
	text-align: center;
	transition: all 0.3s ease;
	z-index: 3;
}

.psrc-event-list-ind-switch:hover, .psrc-event-list-ind-switch:focus, .psrc-event-list-ind-switch:active {
	cursor: pointer;
}


.psrc-event-list-ind-switch-inner-click:before, .psrc-event-list-ind-switch-inner-hover:before {
	display: inline-block;
	font: var(--fa-font-solid);
	font-size: 1.5rem;
	content: '\f077';
	color: var(--psrc-gray-dark);
	margin: auto;
	text-align: center;
}

.psrc-event-is-active .psrc-event-list-ind-switch-inner-click::before, .psrc-event-is-active .psrc-event-list-ind-switch-inner-hover::before {
	content: '\f078'; /* Change arrow to indicate active state */
}

.psrc-events-pagination {
	display: block;
	width: 100%;
}

/* Responsive Styles */
@media screen and (min-width: 1200px) {

	.entry-content .psrc-event-list-container.flex-columns {
		width: 96%;
		max-width: 1330px !important;
	}
	
	.psrc-event-list-ind.flexcol-half {
	max-width: 49%;
	}

	.psrc-event-list-ind.flexcol-third {
		max-width: 32%;
	}

	.psrc-event-list-ind.flexcol-fourth {
		max-width: 22%;
	}
	
}



@media screen and (max-width: 1199px) {
	
	.psrc-event-list-ind, .psrc-event-list-ind.flexcol-half, .psrc-event-list-ind.flexcol-fourth {
		height: auto !important;
		overflow:visible;
	}
	
	.psrc-event-list-ind:hover .psrc-event-list-ind-image {
		opacity: 1;
	}
	
	.psrc-event-list-ind:hover .psrc-event-list-ind-content {
		background-color: #FFF;
		transform: translate(0, 0);
		transition: none;
	}
	
	.psrc-event-list-ind-content .psrc-event-list-ind-summary {
        margin-top: .5em;
		max-height: 100%;
        opacity: 1;
	}
	
	
	.psrc-event-list-ind-switch {
		display: none;
	}
	
	
}

@media screen and (min-width: 320px) and (max-width: 768px) {
	
	.psrc-events-tabs-container embed, .psrc-events-tabs-container iframe, .psrc-events-tabs-container object {
		max-width: 100%;
		height: revert-layer;
	  }
	
}