﻿/* 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 {
	--clickable-scale: 1.1;
	--clickable-active-scale: 0.95;
	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);
	color: #EE3127;
}

.event-filter-btn:active {
}

.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;
}

/* Speaker schedule cards */
.ja-schedule-list__item {
	list-style: none;
}

.ja-schedule-card--compact {
	width: 100%;
}

@media (min-width: 640px) {
	.ja-schedule-card--compact {
		width: 50%;
	}
}

.ja-schedule-card__speakers {
	padding: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ja-speaker-chip {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
}

.ja-speaker-chip__photo {
	width: 2rem;
	height: 2rem;
	overflow: hidden;
	border-radius: 0.5rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

.ja-speaker-chip__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ja-speaker-chip__name {
	margin: 0;
	font-weight: 500;
	font-size: 0.75rem;
}

/* Schedules spacing */
.space-y-3 > * + * {
	margin-top: 0.75rem;
}

.speaker-current {
	cursor: default;
}
