.cca-c9b40eec-wrapper {
    width: 100%;
}

.cca-c9b40eec-item {
    overflow: hidden;
    border-radius: 8px;
}

/* Header / Title Row */
.cca-c9b40eec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.3s ease;
    gap: 16px;
    font-family: inherit;
}

.cca-c9b40eec-header:hover {
    opacity: 0.95;
}

/* Three equal columns */
.cca-c9b40eec-columns {
    display: flex;
    flex: 1;
    min-width: 0;
}

.cca-c9b40eec-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    min-width: 0;
}

.cca-c9b40eec-col-date {
    border-right: 1px solid rgba(255,255,255,0.2);
    border-right-style: solid;
    padding-left: 0;
}

.cca-c9b40eec-col-venue {
    border-right: 1px solid rgba(255,255,255,0.2);
    border-right-style: solid;
}

.cca-c9b40eec-col-city {
    padding-right: 0;
}

.cca-c9b40eec-date {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cca-c9b40eec-venue {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cca-c9b40eec-city {
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Right side: status + toggle */
.cca-c9b40eec-header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.cca-c9b40eec-status {
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border: 1px solid;
    border-radius: 20px;
    white-space: nowrap;
}

/* Toggle +/- */
.cca-c9b40eec-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cca-c9b40eec-item .cca-c9b40eec-toggle-minus {
    display: none;
}
.cca-c9b40eec-item .cca-c9b40eec-toggle-plus {
    display: inline;
}
.cca-c9b40eec-item.cca-c9b40eec-active .cca-c9b40eec-toggle-minus {
    display: inline;
}
.cca-c9b40eec-item.cca-c9b40eec-active .cca-c9b40eec-toggle-plus {
    display: none;
}

/* Body / Content */
.cca-c9b40eec-body {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.cca-c9b40eec-body[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    padding: 0 !important;
}

.cca-c9b40eec-item.cca-c9b40eec-active .cca-c9b40eec-body {
    max-height: 2000px;
    opacity: 1;
    visibility: visible;
}

.cca-c9b40eec-body-inner {
    /* Container for flexible content */
}

.cca-c9b40eec-body-inner h1,
.cca-c9b40eec-body-inner h2,
.cca-c9b40eec-body-inner h3,
.cca-c9b40eec-body-inner h4,
.cca-c9b40eec-body-inner h5,
.cca-c9b40eec-body-inner h6 {
    color: inherit;
    margin-top: 0;
}

.cca-c9b40eec-body-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.cca-c9b40eec-body-inner a {
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.cca-c9b40eec-body-inner a:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 767px) {
    .cca-c9b40eec-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cca-c9b40eec-columns {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .cca-c9b40eec-col {
        padding: 0;
        border-right: none !important;
    }

    .cca-c9b40eec-col-date,
    .cca-c9b40eec-col-venue {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 6px;
    }

    .cca-c9b40eec-header-right {
        width: 100%;
        justify-content: space-between;
    }
}
