



/* ── Reset & base ── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Segoe UI', Arial, sans-serif;
	background: #ffffff;
	color: #333;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100dvh;
}

.news-cont img {
	display: block;
	max-width: 100%;
	height: auto;
}

.news-cont a {
	color: inherit;
	text-decoration: none;
}

.banner {
	width: 100%;
	min-height: clamp( 34vw, 460px);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative; 
	display: flex;
	align-items: center;
	justify-content: center;
    top:0px;
}

.wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: clamp(24px, 4vw, 48px) 16px;
	background-color:white;
}

.wraper-link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0;
	font-size: clamp(20px, 2vw, 30px);
	font-weight: 700;
	color: #d71920;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.wraper-link:hover {
	color: #a8121a;
	text-decoration-thickness: 2px;
}

.wraper-link img {
	width: clamp(28px, 4vw, 44px);
	height: auto;
}

/* ── Schedule section ── */
.schedule-section {
	display: flex;
	justify-content: center;
	padding: 24px 16px;
	width: 100%;
	background-color:white;
}

.schedule-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
    width: 100%;
}

.day-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    height: auto;
    zoom: 110%;
}

.day {
    align-items: center;
}

.info-section {
	width: 100%;
	padding: 24px 16px;
	display: flex;
	justify-content: center;
	background: #fff;
}

.info-section img {
	max-width: 1450px;
	width: 100%;
}

.photo-strip {
	width: 100%;
	line-height: 0;
    margin: 0 auto;
    max-width: 1450px;
}

.photo-strip img {
	width: 100%;
	object-fit: cover;
	background-color:white;
}

