/* Стили для шорткода event_info */
.single-event-info-shortcode{
	background: #ebf0fc;
	border-radius: .625rem;
	padding: 25px;
}
.single-event-info-shortcode .info-wrap{
	display: flex;
	align-items: stretch;
	gap: 15px;
	align-items: center;
}
.single-event-info-shortcode .info-wrap .left-column{
	width: 50%;
}
.single-event-info-shortcode .info-wrap .right-column{
	width: 50%;
}
.single-event-info-shortcode .info-wrap .right-column .event-thumbnail img{
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
}
.single-event-info-shortcode .info-wrap .left-column .event-title{
	font-size: 18px;
	line-height: 1.3;
	font-weight: 700;
}
.single-event-info-shortcode .info-wrap .left-column .event-type{
	font-size: 14px;
	line-height: 1.3;
}
.single-event-info-shortcode .info-wrap .left-column .event-info-list{
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-top: 15px;
}
.single-event-info-shortcode .info-wrap .left-column .event-date{
	 display: flex;
	 font-size: 14px;
	 align-items: center;
}
.single-event-info-shortcode .info-wrap .left-column .event-date .label{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	margin-right: 10px;
}
.single-event-info-shortcode .info-wrap .left-column .event-date .date-item{
	font-size: 14px;
	line-height: 1.3;
}
.single-event-info-shortcode .info-wrap .left-column .event-country{
	display: flex;
	align-items: center;
}
.single-event-info-shortcode .info-wrap .left-column .event-country .label{
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	margin-right: 10px;
}

.single-event-info-shortcode .info-wrap .left-column .event-country .country-item{
	font-size: 14px;
	line-height: 1.3;
	margin-right: 10px;
}
.single-event-info-shortcode .info-wrap .left-column .event-country .event-online,
.single-event-info-shortcode .info-wrap .left-column .event-country .event-offline{
	background: #dee5f6;
	font-size: 12px;
	padding: 0px 10px;
	border-radius: 4px;
}
.single-event-info-shortcode .info-wrap .left-column .event-country .separator{
	font-size: 14px;
	line-height: 1.3;
	margin-right: 10px;
}
.single-event-info-shortcode .info-wrap .left-column .add-to-calendar{
	font-size: 14px;
	line-height: 1.3;
	margin-top: 15px;
	display: block;
	background: #202b44;
	color: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	text-align: center;
	transition: all 0.3s ease; 
	&:before,
	&:after{
		display: none;
	}
	&:hover{
		background: #fcb900;
		color: #202b44;
		&:before,
	&:after{
		display: none;
	}
	}
}

/* Стили для аккордеона программы мероприятия */
.event-program-accordion {
	margin-top: 30px;
}

.event-program-accordion .program-title {
	font-size: 18px!important;
	font-weight: 700;
	color: #1f3057;
	margin-bottom: 20px;
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	white-space: nowrap;
}
.event-program-accordion .program-title:after{
	content: '';
	height: 2px;
	width: 100%;
	background: #dee5f6;
}

.accordion-container {
	border: 1px solid #e0e6f0;
	border-radius: 8px;
	overflow: hidden;
}

.accordion-item {
	border-bottom: 1px solid #e0e6f0;
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-header {
	background: #f8f9fa;
	padding: 10px 15px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s ease;
}

.accordion-header:hover {
	background: #dee5f6;
}

.accordion-header.active {
	background: #dee5f6;
	color: #1f3057;
}

.accordion-header .day-title {
	font-size: 14px;
	font-weight: 600;
}

.accordion-icon {
	font-size: 18px;
	font-weight: bold;
	transition: transform 0.3s ease;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #fff;
}

.accordion-content.active {
	max-height: 500px;
	overflow-y: scroll;
}

.program-content {
	padding: 20px;
}


.day-time {
	margin-bottom: 15px;
	font-size: 14px;
	color: #666;
}

.day-time strong {
	color: #1f3057;
}

.day-description {
	margin-bottom: 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.day-info {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 6px;
	border-left: 4px solid #40f3f7;
}

.day-info p {
	margin: 0;
	font-size: 14px;
	color: #666;
	font-style: italic;
}

/* Адаптивность */
@media (max-width: 768px) {
	.event-program-accordion .program-title {
		font-size: 18px;
	}
	
	.accordion-header {
		padding: 12px 15px;
	}
	
	.accordion-header .day-title {
		font-size: 14px;
	}
	
	.program-content {
		padding: 15px;
	}
}
