@charset "utf-8";
/* CSS Document */
/* Norton Center Spektrix Events Styles */

.spektrix-event {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin: 20px 0;
    background: #fff;
    max-width: 800px;
}

.spektrix-event-image {
    flex: 0 0 200px;
    width: 200px;
}

.spektrix-event-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.spektrix-event-content {
    flex: 1;
    line-height: 1.6;
}

.spektrix-event-title {
    color: #333;
    font-size: 24px;
    margin: 0 0 15px 0;
    font-weight: 600;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.spektrix-event-date {
    background: #f8f9fa;
    padding: 10px 15px;
    border-left: 4px solid #007cba;
    margin: 15px 0;
    border-radius: 0 4px 4px 0;
}

.spektrix-event-date strong {
    color: #007cba;
}

.spektrix-event-description {
    margin: 15px 0;
    color: #555;
    font-size: 16px;
}

.spektrix-event-description p {
    margin-bottom: 12px;
}

.spektrix-event-duration {
    font-style: italic;
    color: #666;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f9f9f9;
    border-radius: 4px;
}

.spektrix-event-duration strong {
    color: #333;
    font-style: normal;
}

.spektrix-error {
    color: #d63638;
    background: #fef7f7;
    border: 1px solid #f5b7b7;
    padding: 12px;
    border-radius: 4px;
    margin: 10px 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .spektrix-event {
        flex-direction: column;
        padding: 15px;
        margin: 15px 0;
        gap: 15px;
    }
    
    .spektrix-event-image {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .spektrix-event-image img {
        max-width: 250px;
    }
    
    .spektrix-event-title {
        font-size: 20px;
    }
    
    .spektrix-event-date {
        padding: 8px 12px;
    }
    
    .spektrix-event-description {
        font-size: 14px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .spektrix-event {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .spektrix-event-title {
        color: #f7fafc;
        border-bottom-color: #4a5568;
    }
    
    .spektrix-event-date {
        background: #374151;
        border-left-color: #60a5fa;
    }
    
    .spektrix-event-date strong {
        color: #60a5fa;
    }
    
    .spektrix-event-description {
        color: #cbd5e0;
    }
    
    .spektrix-event-duration {
        background: #374151;
        color: #9ca3af;
    }
    
    .spektrix-event-duration strong {
        color: #e5e7eb;
    }
}