/* Weekend Sorties Generator - Front-end Styles */

.wsg-event {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    transition: box-shadow 0.2s ease;
}

.wsg-event:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wsg-event h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3em;
}

.wsg-event-image {
    margin: 0 0 15px 0;
}

.wsg-event-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.wsg-event-details p {
    margin: 8px 0;
    line-height: 1.6;
}

.wsg-event-details a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.wsg-event-details a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .wsg-event {
        padding: 15px;
    }
    
    .wsg-event h3 {
        font-size: 1.1em;
    }
}
