﻿/* Wrap each event block with a soft card look */
.event_block {
	border: 1px solid #e5e7eb;
	padding: 1rem;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,0.05); 
	height: 100%;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.event_block:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

/* Image holder */
.event_block  .image-holder {
	width: 100%;
	overflow: hidden;
	margin-bottom: 1rem;
}
.event_block  .image-holder img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;     /* makes sure it always fills nicely */
	transition: transform 0.3s ease;
}

/* Titles and subtitles */
.event_block  h2.event-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: #1f2937; /* dark gray */
}
.event_block  .sub-title {
	font-size: 20px;
	color: #6b7280; /* medium gray */
	margin-bottom: 0.75rem;
}

/* Dates, time, location */
.event_block  .dates,
.event_block  .time,
.event_block  .locale
{
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.5rem;
}
.event_block div {
	margin-bottom: 0.25rem;
}

/* Event content */
.event_block  .main-info {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #4b5563;
	margin: 0.75rem 0 1rem;
	flex-grow: 1; /* pushes buttons down */
}

/* Buttons */
.event_block  .event_details_btn {
	display: inline-block;
	background: #2563eb;   /* blue */
	color: #fff !important;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.3s ease;
}
.event_block  .event_details_btn:hover {
	background: #1e40af; /* darker blue */
}
.label.alert{
	display: inline-block !important;
	text-align: center;
	padding: 10px;
}

.event-show h2.event-title {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 0.25rem;
	color: #1f2937; /* dark gray */
}
.event-show  .sub-title {
	font-size: 26px;
	color: #6b7280; /* medium gray */
	margin-bottom: 0.75rem;
}
.event-show  .dates,
.event-show  .time,
.event-show  .locale
{
	font-weight: 500;
	color: #374151;
	margin-bottom: 0.5rem;
}
.event-show div {
	margin-bottom: 0.25rem;
}

@media only screen and (max-width: 640px){
	.event_block  h2.event-title {
		font-size: 22px;
	}	
	.event-show h2.event-title {
		font-size: 24px;
	}
}