.workshop-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.workshop-tile {
    padding: 50px 30px;
    background-color: rgba(240, 239, 231, .75);
	border-radius: 8px;
    transition: transform 0.2s ease-in-out;
}

.workshop-tile:hover {
    transform: scale(1.02);
}

.workshop-tile h4 {
    margin-top: 0;
	font-size: 38px !important;
	line-height: 1em !important;
}

.workshop-date {
	font-weight: 600 !important;
	font-size: 23px;
}

.workshop-title, .workshop-date, .workshop-time, .workshop-location {
    display: block;
	margin-bottom: 20px !important;
}

.workshop-time, .workshop-location {
	line-height: 1.4em !important;
}

.workshop-date,
.workshop-time,
.workshop-location{
    display: flex; 
    align-items: flex-start; 
}

.workshop-date i,
.workshop-time i,
.workshop-location i {
    margin-right: 10px; 
	font-size: 30px;
	width: 36px;
	color: #c47619;
}

.workshop-date .date-text,
.workshop-time .time-text,
.workshop-location .location-text {
    flex-grow: 1; 
}


.workshop-details {
	line-height: 1.4em;
    margin-top: 10px;
	margin-bottom: 20px;
}

.workshop-cta {
    display: inline-block;
    padding: 10px 20px;
    background: #c47619;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    margin-top: 10px;
    font-weight: 700;
	font-size: 15px;
	line-height: 1em;
	text-transform: uppercase;
	text-align: center;
}

.workshop-cta:hover {
    background: #fff;
	color: #c47619;
}

#workshop-loader {
    text-align: center;
    font-size: 1.2em;
    margin-top: 20px;
}
