﻿/* Event section styles */
.event-section {
	margin-top: 2rem;
}

.event-section:first-child {
	margin-top: 1rem;
}

/* Event logo container */
.event-logo-container {
	padding: 1.5rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(to right, #f9fafb, #ffffff);
	border-radius: 0.5rem;
	min-height: 120px;
	text-align: center;
}

/* Wrapper for logo with button */
.event-logo-wrapper {
	position: relative;
	display: inline-block;
}

.event-logo {
	max-width: 300px;
	height: auto;
	display: block;
}

/* Filter button */
.event-filter-btn {
	position: absolute;
	top: -8px;
	right: -8px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 50%;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 10;
	color: #4b5563;
}

.event-filter-btn:hover {
	background: #f9fafb;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
	transform: scale(1.1);
	color: #EE3127;
}

.event-filter-btn:active {
	transform: scale(0.95);
}

.event-filter-btn svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Social icons */
.social-link {
	display: inline-flex;
}

.social-icon {
	display: inline-block;
	width: 2.25rem;
	height: 2.25rem;
	background-color: #6b7280;
	-webkit-mask: var(--icon-url) no-repeat center / contain;
	mask: var(--icon-url) no-repeat center / contain;
	transition: background-color 0.2s ease;
}

.social-link:hover .social-icon {
	background-color: #EE3127;
}

/* Schedule icons */
.schedule-icon {
	display: block;
	background-color: white;
	-webkit-mask: var(--icon-url) no-repeat center / contain;
	mask: var(--icon-url) no-repeat center / contain;
	flex-shrink: 0;
}

.schedule-icon-clock {
	width: 2rem;
	height: 2rem;
}

.schedule-icon-group {
	width: 1.25rem;
	height: 1.25rem;
}

.schedule-icon-location {
	width: 1.5rem;
	height: 1.5rem;
}

/* Schedules spacing */
.space-y-3 > * + * {
	margin-top: 0.75rem;
}
