/* nGage Gigs – SCI-style event list */
.sci-events-list {
    padding: 20px;
}

.sci-event {
    margin-bottom: 25px;
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
}

.sci-date-col {
    flex: 1;
    padding: 25px;
    border-left-width: 8px;
    border-left-style: solid;
}

.sci-info-col {
    flex: 3;
    padding: 25px;
}

.sci-date {
    font-size: 2em;
    font-weight: bold;
}

.sci-year {
    font-size: 1.5em;
    color: #888;
}

.sci-calendar-name {
    font-size: 1.2em;
    color: #666;
    font-weight: bold;
}

.sci-title {
    font-size: 1.8em;
    margin-top: 5px;
}

.sci-location {
    font-size: 1em;
    margin-top: 5px;
    color: #333;
}

.sci-description {
    font-size: 0.95em;
    margin-top: 5px;
    color: #555;
}

.sci-website-col {
    padding: 25px;
    text-align: right;
    align-self: flex-start;
}

.sci-website-button {
    padding: 8px 12px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.sci-ticket-button {
    position: relative;
    top: 20px;
    background-color: #5fbd05;
}

.sci-soldout-badge {
    display: inline-block;
    padding: 5px 9px;
    margin-top: 20px;
    background-color: #cb177d;
    color: white;
    font-size: 0.8em;
    font-weight: normal;
    border-radius: 4px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.sci-website-button:hover {
    background-color: #005177;
}

.ngage-gigs-empty,
.ngage-gigs-error {
    color: #666;
    font-style: italic;
}

.ngage-gigs-error {
    color: #c00;
    font-style: normal;
}

@media (max-width: 768px) {
    .sci-events-list {
        padding: 0;
    }

    .sci-event {
        flex-direction: column;
        padding: 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .sci-title {
        font-size: 1.3em;
        margin-top: 5px;
    }

    .sci-soldout-badge {
        font-size: 0.7em;
        padding: 4px 7px;
    }

    .sci-date-col,
    .sci-info-col,
    .sci-website-col {
        flex: none;
        width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .sci-date-col {
        border-left-width: 0;
    }

    .sci-website-col {
        text-align: left;
    }
}
