.event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 107, 138, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.event-popup-container {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: sans-serif;
}

.event-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f4f8;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    color: #3D547D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-popup-eyebrow {
    color: #5BA3C7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.event-popup-title {
    color: #3D547D;
    font-size: 32px;
    margin: 0 0 24px 0;
    font-family: serif;
}

.event-popup-meta {
    background: #f4f6f9;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.meta-item {
    color: #333;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.meta-item:last-child {
    margin-bottom: 0;
}

.meta-icon {
    margin-right: 12px;
    font-size: 18px;
}

.event-popup-desc {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.event-popup-actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #4A6084;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}

.btn-secondary {
    background: transparent;
    color: #4A6084;
    border: 1px solid #4A6084;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 500;
}
