.event-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.event-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sapphire);
    text-decoration: none;
    margin-bottom: 32px;
    opacity: 0.7;
    transition: opacity .18s;
}

.event-back:hover {
    opacity: 1;
}

.event-page h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--sapphire);
    line-height: 1.2;
    margin: 0 0 24px;
}

.event-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--coral);
    font-weight: 500;
}

/* Single host */
.event-host-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.event-host-row img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px color-mix(in srgb, var(--violet) 25%, transparent);
}

/* Multiple hosts */
.event-hosts-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.event-host-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.event-host-item img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 3px 10px color-mix(in srgb, var(--violet) 25%, transparent);
}

.event-host-info .host-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--sapphire);
    margin: 0 0 2px;
}

.event-host-info .host-role {
    font-size: 14px;
    color: var(--coral);
    font-weight: 600;
    margin: 0;
}

.event-body p {
    font-size: 16px;
    color: var(--sapphire);
    line-height: 1.7;
    margin: 0 0 20px;
}

.event-body ul {
    font-size: 16px;
    color: var(--sapphire);
    line-height: 1.7;
    padding-left: 22px;
    margin: 0 0 20px;
}

.event-body li {
    margin: 8px 0;
}

.event-cta {
    margin-top: 40px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    border-radius: 50px;
    background: var(--sapphire);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s, transform .18s;
}

.btn-reserve:hover {
    background: color-mix(in srgb, var(--sapphire) 85%, white);
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .event-page h1 {
        font-size: 26px;
    }
}