.event-hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-dark);
    position: relative;
}

.event-hero-overlay {
    min-height: 400px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
}

.event-hero h1 {
    color: #66865e;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.event-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    padding: 3rem 0;
}

.event-main section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.event-main h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.event-main .content {
    line-height: 1.7;
    color: #444;
}

.organizer-card {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.organizer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #A8BBA3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    overflow: hidden;
}

.organizer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.organizer-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

.organizer-info p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}

/* Sidebar */
.event-sidebar > div {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.event-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.price-label {
    font-size: 0.875rem;
    color: #666;
}

.event-free .price-amount {
    color: #10b981;
}

.spots-info {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
}

.event-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn:hover {
    background: var(--primary-dark);
    color: white;
}

.event-location-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.event-location-card address {
    font-style: normal;
    color: #666;
    line-height: 1.6;
}

.mini-map {
    height: 200px;
    background: var(--gray-100, #eee);
    border-radius: var(--border-radius, 8px);
    margin-top: 0.5rem;
}

.event-map-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100, #f3f4f6);
}

.event-map-section h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary, #4b5563);
    margin: 0 0 0.5rem;
}

@media (max-width: 1024px) {
    .event-layout {
        grid-template-columns: 1fr;
    }
}
