/*
Theme Name: Agora Child Theme
Template: agora
Theme URI: https://agora.ancorathemes.com/
Description: Agora Child Theme
Author: AncoraThemes
Author URI: https://ancorathemes.com/
Version: 1.0.0
Tested up to: 6.6
Requires at least: 5.0
Requires PHP: 7.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: classes, event, event theme, venue, meetup, events calendar, conference, event management, exhibition, expo, meeting, schedule, seminar, speakers, tickets, webinar
Text Domain: agora
*/


/* =Child-Theme customization starts here
------------------------------------------------------------ */

/*single event*/
body.single-event .page_content_wrap {
	padding-top: 0;
}

body.single-event .event-hero {
	position: relative;
	width: 100%;
	height: clamp(280px, 42vw, 520px);
	overflow: hidden;
	margin: 0;
	margin-top: 80px;
}

body.single-event .event-hero img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
	transform: translateZ(0);
}

body.single-event .event-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.25),
		rgba(0,0,0,0.05) 40%,
		rgba(0,0,0,0)
	);
	pointer-events: none;
}

body.single-event .event-container {
	padding: 64px 20px 96px;
}

body.single-event .event-title {
	max-width: 900px;
	margin: 0 auto 48px;
	font-size: 44px;
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-align: center;
}

body.single-event .event-content {
	max-width: 900px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.7;
}

body.single-event .event-content > * + * {
	margin-top: 24px;
}

@media (max-width: 768px) {
	body.single-event .event-hero {
		max-height: 360px;
	}

	body.single-event .event-title {
		font-size: 30px;
		margin-bottom: 32px;
	}

	body.single-event .event-container {
		padding: 48px 16px 72px;
	}
}


