/* Load Fonts (make sure Termina is loaded separately if not system-installed) */
/* For Open Sans via Google Fonts (add to <head> or enqueue in WordPress): */
/* <link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet"> */

/* Base Styles */
body {
    font-family: "Open Sans", Arial, sans-serif;
    line-height: 1.38;
    font-size: 1rem;
    color: #222;
    background-color: #f9f9f9;
}

/* Wrapper */
.schedule-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}

/* Schedule Day Header */
.schedule-day {
    margin-bottom: 4rem;
}

.schedule-day h2 {
    font-family: Termina, Arial, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.38;
    color: #1d2240;
    border-bottom: 1px solid #eee;
    padding-bottom: .5rem;
    margin-bottom: 0.25rem;
}

.session-count {
    font-size: 0.95rem;
    color: #888;
	padding-top: .4rem;
    margin-bottom: 1.5rem;
}

/* Session List */
.session-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Session Card */
.session {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.session:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* Session Time */
.session-time {
    font-size: 0.95rem;
    font-weight: 600;
    color: #161930;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Session Details */
.session-details h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: #1a1a1a;
}

.session-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.75rem;
}

.session-location {
    font-size: 0.9rem;
    color: #666;
}

/* Speaker Section */
.event-speakers {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 1.25rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.speaker {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.speaker-photo {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    object-fit: cover;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.speaker-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speaker-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.25rem;
}

.speaker-title,
.speaker-company {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 0.15rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .session {
        padding: 1.5rem;
    }

    .event-speakers {
        flex-direction: column;
        align-items: flex-start;
    }

    .speaker {
        flex-direction: row;
        align-items: flex-start;
    }

    .speaker-photo {
        width: 100px;
        height: 100px;
    }
}