/* ========================================
   TCC Events Page — Topanga Chamber
   "Canyon Blue" aesthetic — editorial serif + modern sans
   ======================================== */

/* Reset & Wrapper */
.tcc-events-wrapper {
    font-family: 'DM Sans', 'Open Sans', -apple-system, sans-serif;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
    color: #2c3e50;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tcc-events-wrapper *,
.tcc-events-wrapper *::before,
.tcc-events-wrapper *::after {
    box-sizing: border-box;
}

/* Force full-width layout on events page — hide sidebar and its border */
.page-id-26709 #sidebar {
    display: none !important;
}
.page-id-26709 #left-area {
    width: 100% !important;
    padding-right: 0 !important;
    border-right: none !important;
}
.page-id-26709 #content-area {
    border-right: none !important;
    border: none !important;
    box-shadow: none !important;
}
.page-id-26709 .entry-title.main_title {
    display: none; /* Our hero handles the title */
}

/* Hero Section — editorial canyon blue */
.tcc-events-hero {
    background: linear-gradient(160deg, #1a2744 0%, #1e3a5f 40%, #1b3052 100%);
    margin: 0 -20px 36px;
    padding: 64px 28px 56px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

/* Subtle organic texture overlay */
.tcc-events-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(46, 163, 242, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(168, 181, 160, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.tcc-events-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tcc-events-header__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.tcc-events-header__subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 20px;
    font-weight: 400;
    line-height: 1.5;
}

.tcc-events-header__intro {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0 0 22px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.tcc-events-header__trust {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(168, 181, 160, 0.8);
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.tcc-events-header__trust svg {
    flex-shrink: 0;
    color: rgba(168, 181, 160, 0.8);
}

.tcc-events-header__divider {
    width: 50px;
    height: 2px;
    background: rgba(46, 163, 242, 0.5);
    border: none;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.tcc-events-header__disclaimer {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

/* Filter Bar */
.tcc-events-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    background: #f7f9fc;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    padding: 20px 24px;
    margin-bottom: 32px;
}

.tcc-events-filters__group {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tcc-events-filters__group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #666;
}

.tcc-events-filters__select {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 10px 36px 10px 14px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E") no-repeat right 12px center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    color: #333;
    transition: border-color 0.2s;
}

.tcc-events-filters__select:focus {
    outline: none;
    border-color: #2EA3F2;
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15);
}

/* Search & Date Inputs */
.tcc-events-filters__input {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 10px 14px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s;
}

.tcc-events-filters__input:focus {
    outline: none;
    border-color: #2EA3F2;
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.15);
}

.tcc-events-filters__input::placeholder {
    color: #999;
}

.tcc-events-filters__search-row {
    display: flex;
    gap: 0;
}

.tcc-events-filters__search-row .tcc-events-filters__input {
    flex: 1;
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.tcc-events-filters__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    background: #2EA3F2;
    color: #fff;
    border: 1px solid #2EA3F2;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background 0.2s;
}

.tcc-events-filters__search-btn:hover {
    background: #1a8fd6;
    border-color: #1a8fd6;
}

.tcc-events-filters__group--search {
    flex: 2 1 280px;
}

/* Calendar Button & Popup */
.tcc-events-filters__group--calendar {
    flex: 0 0 auto;
    position: relative;
}

.tcc-events-filters__calendar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: #fff;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    cursor: pointer;
    color: #2EA3F2;
    transition: border-color 0.2s, background 0.2s;
}

.tcc-events-filters__calendar-btn:hover {
    border-color: #2EA3F2;
    background: #f0f8ff;
}

.tcc-calendar-popup {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 16px;
    width: 300px;
    user-select: none;
    -webkit-user-select: none;
}

.tcc-calendar-popup__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.tcc-calendar-popup__title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.tcc-calendar-popup__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid #e1e8ed;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    transition: border-color 0.2s, color 0.2s;
}

.tcc-calendar-popup__nav:hover {
    border-color: #2EA3F2;
    color: #2EA3F2;
}

.tcc-calendar-popup__days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 4px;
}

.tcc-calendar-popup__days span {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    padding: 4px 0;
}

.tcc-calendar-popup__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.tcc-cal-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 34px;
    font-size: 13px;
    color: #333;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.15s;
    margin: 0 auto;
}

.tcc-cal-cell:hover {
    background: #e8f4fd;
}

.tcc-cal-cell--empty {
    cursor: default;
}

.tcc-cal-cell--empty:hover {
    background: none;
}

.tcc-cal-cell--selected {
    background: #2EA3F2 !important;
    color: #fff;
    font-weight: 700;
}

.tcc-cal-cell--in-range {
    background: #d4edfc;
    border-radius: 2px;
}

.tcc-calendar-popup__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.tcc-calendar-popup__range {
    font-size: 12px;
    color: #666;
}

.tcc-calendar-popup__clear {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #2EA3F2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

.tcc-calendar-popup__clear:hover {
    text-decoration: underline;
}

.tcc-events-filters__reset {
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #2EA3F2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 4px;
    white-space: nowrap;
    transition: color 0.2s;
}

.tcc-events-filters__reset:hover {
    color: #1a7abf;
    text-decoration: underline;
}

/* Events List — background matches homepage "Upcoming Mixers" section */
.tcc-events-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #efefef;
    background-image: linear-gradient(180deg, rgba(98, 167, 219, 0.29) 0%, rgba(0, 0, 0, 0) 100%);
    margin: 0 -20px;
    padding: 32px 20px;
    border-radius: 12px;
}

/* Event Card */
.tcc-event-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e1e8ed;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.tcc-event-card__top {
    display: flex;
}

.tcc-event-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Card Image */
.tcc-event-card__image {
    position: relative;
    flex: 0 0 220px;
    min-height: 180px;
    overflow: hidden;
}

.tcc-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tcc-event-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #2EA3F2;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
}

/* Card Body */
.tcc-event-card__body {
    flex: 1;
    display: flex;
    padding: 24px;
    gap: 20px;
}

/* Date Block */
.tcc-event-card__date-block {
    flex: 0 0 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2px;
}

.tcc-event-card__month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2EA3F2;
}

.tcc-event-card__day {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #333;
}

/* Details */
.tcc-event-card__details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tcc-event-card__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.tcc-event-card__title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.tcc-event-card__title a:hover {
    color: #2EA3F2;
}

/* Meta */
.tcc-event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.tcc-event-card__meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.tcc-event-card__meta-item svg {
    flex-shrink: 0;
    color: #2EA3F2;
}

.tcc-event-card__meta-item a {
    color: #2EA3F2;
    text-decoration: none;
}

.tcc-event-card__meta-item a:hover {
    text-decoration: underline;
}

/* Card without image */
.tcc-event-card--no-image {
    border-left: 4px solid #2EA3F2;
}

/* Inline badge (when no image) */
.tcc-event-card__badge--inline {
    position: static;
    display: inline-block;
    margin: 0 0 6px 0;
    font-size: 10px;
    padding: 3px 8px;
}

/* Button */
.tcc-event-card__btn {
    display: inline-block;
    margin-top: auto;
    align-self: flex-start;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #2EA3F2;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #2EA3F2;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.tcc-event-card__btn:hover {
    background: #2EA3F2;
    color: #fff;
}

/* Accordion Toggle */
.tcc-event-card__toggle {
    cursor: pointer;
    border: 2px solid #2EA3F2;
    background: none;
}

.tcc-event-card__toggle.tcc-active {
    background: #2EA3F2;
    color: #fff;
}

/* Expanded Event Details */
.tcc-event-card__expanded {
    padding: 20px 24px;
    border-top: 1px solid #e1e8ed;
    background: #f9fafb;
}

.tcc-event-card__description {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    max-height: 300px;
    overflow-y: auto;
}

.tcc-event-card__description p {
    margin-bottom: 12px;
}

.tcc-event-card__description a {
    color: #2EA3F2;
    text-decoration: underline;
}

.tcc-event-card__external-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #2EA3F2;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
}

.tcc-event-card__external-link:hover {
    background: #1a8fd6;
}

/* Empty State */
.tcc-events-empty {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.tcc-events-empty h3 {
    font-size: 20px;
    color: #333;
    margin: 16px 0 8px;
}

.tcc-events-empty p {
    font-size: 14px;
    margin: 0;
}

/* Pagination */
.tcc-events-pagination {
    text-align: center;
    margin-top: 32px;
}

.tcc-events-pagination__btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: #2EA3F2;
    border: none;
    border-radius: 6px;
    padding: 14px 36px;
    cursor: pointer;
    transition: background 0.2s;
}

.tcc-events-pagination__btn:hover {
    background: #1a8fd6;
}

.tcc-events-pagination__btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Loading Spinner */
.tcc-events-loading {
    text-align: center;
    padding: 40px 0;
}

.tcc-spinner {
    display: inline-block;
    width: 36px;
    height: 36px;
    border: 3px solid #e1e8ed;
    border-top-color: #2EA3F2;
    border-radius: 50%;
    animation: tcc-spin 0.7s linear infinite;
}

@keyframes tcc-spin {
    to { transform: rotate(360deg); }
}

/* Social Follow */
.tcc-events-social {
    text-align: center;
    margin-top: 40px;
    padding: 32px 20px;
    background: linear-gradient(180deg, rgba(165, 206, 199, 0.6) 0%, #151f33 100%);
    border-radius: 12px;
}

.tcc-events-social__label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tcc-events-social__links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.tcc-events-social__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: background 0.2s, border-color 0.2s;
}

.tcc-events-social__link:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.tcc-events-social__link--instagram:hover {
    background: rgba(225, 48, 108, 0.3);
    border-color: #E1306C;
}

.tcc-events-social__link--facebook:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: #1877F2;
}

/* Notice */
.tcc-events-notice {
    background: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 14px;
}

/* ===================
   Submitted Events (admin-only)
   =================== */

.tcc-submitted-events {
    margin-top: 48px;
    padding: 36px;
    background: linear-gradient(160deg, #1a2744 0%, #1e3a5f 40%, #1b3052 100%);
    border-radius: 14px;
    border: 1px solid rgba(46, 163, 242, 0.25);
    position: relative;
}
.tcc-submitted-events__header {
    margin-bottom: 24px;
}
.tcc-submitted-events__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tcc-submitted-events__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2EA3F2;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 24px;
    height: 24px;
    border-radius: 12px;
    padding: 0 8px;
}
.tcc-submitted-events__desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin: 0;
}
.tcc-submitted-events__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tcc-submitted-events__card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 20px;
    transition: border-color 0.2s;
}
.tcc-submitted-events__card:hover {
    border-color: rgba(46, 163, 242, 0.3);
}
.tcc-submitted-events__card-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}
.tcc-submitted-events__card-info {
    flex: 1;
    min-width: 0;
}
.tcc-submitted-events__card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    color: #fff;
    margin: 0 0 6px;
}
.tcc-submitted-events__card-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 6px;
}
.tcc-submitted-events__card-submitter {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.tcc-submitted-events__card-submitter a {
    color: #2EA3F2;
    text-decoration: none;
}
.tcc-submitted-events__card-submitter a:hover {
    text-decoration: underline;
}
.tcc-submitted-events__card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}
.tcc-submitted-events__card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}
.tcc-submitted-events__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}
.tcc-submitted-events__btn--approve {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
    border: 1px solid rgba(52, 199, 89, 0.3);
}
.tcc-submitted-events__btn--approve:hover {
    background: rgba(52, 199, 89, 0.3);
}
.tcc-submitted-events__btn--edit {
    background: rgba(46, 163, 242, 0.15);
    color: #2EA3F2;
    border: 1px solid rgba(46, 163, 242, 0.3);
    text-align: center;
    justify-content: center;
}
.tcc-submitted-events__btn--edit:hover {
    background: rgba(46, 163, 242, 0.3);
}
.tcc-submitted-events__btn--reject {
    background: rgba(255, 69, 58, 0.1);
    color: #FF453A;
    border: 1px solid rgba(255, 69, 58, 0.2);
}
.tcc-submitted-events__btn--reject:hover {
    background: rgba(255, 69, 58, 0.25);
}
.tcc-submitted-events__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.tcc-submitted-events__empty {
    text-align: center;
    padding: 24px;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .tcc-submitted-events { padding: 24px 16px; }
    .tcc-submitted-events__card-main {
        flex-direction: column;
    }
    .tcc-submitted-events__card-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* ===================
   Submit an Event
   =================== */

.tcc-submit-event {
    margin-top: 48px;
    padding: 48px 36px;
    background: linear-gradient(160deg, #1a2744 0%, #1e3a5f 40%, #1b3052 100%);
    border-radius: 14px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tcc-submit-event::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(ellipse at 80% 80%, rgba(46, 163, 242, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.tcc-submit-event__header {
    text-align: center;
    position: relative;
    z-index: 1;
}

.tcc-submit-event__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px;
}

.tcc-submit-event__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 24px;
    line-height: 1.6;
}

.tcc-submit-event__toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 163, 242, 0.9);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 13px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.tcc-submit-event__toggle:hover {
    background: rgba(46, 163, 242, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 163, 242, 0.25);
}

.tcc-submit-event__toggle.is-open {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tcc-submit-event__form {
    max-width: 700px;
    margin: 28px auto 0;
    display: flex;
    position: relative;
    z-index: 1;
    flex-direction: column;
    gap: 12px;
}

.tcc-submit-event__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tcc-submit-event__row--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tcc-submit-event__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.tcc-submit-event__input {
    width: 100% !important;
    padding: 10px 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-size: 14px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    outline: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    box-shadow: none !important;
}

.tcc-submit-event__input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

/* iOS Safari date/time picker text */
.tcc-submit-event__input::-webkit-datetime-edit,
.tcc-submit-event__input::-webkit-date-and-time-value {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Autofill override — prevent white/yellow bg on dark form */
.tcc-submit-event__input:-webkit-autofill,
.tcc-submit-event__input:-webkit-autofill:hover,
.tcc-submit-event__input:-webkit-autofill:focus,
.tcc-submit-event__input:-webkit-autofill:active {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px #1b2a4a inset !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transition: background-color 5000s ease-in-out 0s !important;
    caret-color: #fff !important;
}

.tcc-submit-event__input:focus {
    border-color: #2EA3F2 !important;
    box-shadow: 0 0 0 3px rgba(46, 163, 242, 0.2) !important;
    background: rgba(255, 255, 255, 0.15) !important;
}

.tcc-submit-event__input:hover:not(:focus) {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

select.tcc-submit-event__input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M4 6l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px;
    padding-right: 36px;
    cursor: pointer;
}

select.tcc-submit-event__input option {
    background: #1b2a4a;
    color: #fff;
}

.tcc-submit-event__textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
}

.tcc-submit-event__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 163, 242, 0.9);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    margin-top: 4px;
}

.tcc-submit-event__btn:hover {
    background: rgba(46, 163, 242, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(46, 163, 242, 0.25);
}

.tcc-submit-event__btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.tcc-submit-event__status {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 4px;
    display: none;
    text-align: center;
}

.tcc-submit-event__status.is-success {
    display: block;
    background: rgba(46, 163, 242, 0.15);
    color: #8dcfff;
    border: 1px solid rgba(46, 163, 242, 0.3);
}

.tcc-submit-event__status.is-error {
    display: block;
    background: rgba(244, 67, 54, 0.15);
    color: #ff8a80;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* ===================
   Responsive
   =================== */

/* Allow hero to extend full-width via negative calc margins */
.tcc-events-wrapper {
    overflow-x: visible;
    max-width: 100%;
}

.tcc-event-card__details {
    min-width: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.tcc-event-card__meta-item {
    min-width: 0;
    overflow-wrap: break-word;
}

.tcc-event-card__title a {
    word-break: break-word;
}

@media (max-width: 768px) {
    .tcc-events-hero {
        padding: 44px 20px 36px;
        margin: 0 -16px 24px;
        border-radius: 10px;
    }

    .tcc-events-header__title {
        font-size: 36px;
    }

    .tcc-events-header__subtitle {
        font-size: 17px;
    }

    .tcc-events-header__intro {
        font-size: 14px;
    }

    .tcc-submit-event {
        padding: 28px 20px;
        margin-top: 28px;
    }

    .tcc-submit-event__title {
        font-size: 19px;
    }

    .tcc-submit-event__row--half {
        grid-template-columns: 1fr;
    }

    .tcc-events-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px;
    }

    .tcc-events-filters__group {
        flex: 1 1 100%;
        align-items: center;
    }

    .tcc-events-filters__select,
    .tcc-events-filters__input {
        width: 100%;
    }

    .tcc-events-filters__group--search {
        flex: 1 1 100%;
    }

    .tcc-events-filters__group--calendar {
        flex: 0 0 auto;
        align-self: flex-end;
    }

    .tcc-calendar-popup {
        right: auto;
        left: 0;
        width: calc(100vw - 64px);
        max-width: 300px;
    }

    .tcc-events-filters__reset {
        align-self: center;
    }

    .tcc-events-social {
        margin-top: 24px;
        padding: 24px 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .tcc-events-social__links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .tcc-events-social__link {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .tcc-event-card__top {
        flex-direction: column;
    }

    .tcc-event-card__image {
        flex: 0 0 auto;
        height: 200px;
    }

    .tcc-event-card__body {
        padding: 16px;
        gap: 12px;
    }

    .tcc-event-card__date-block {
        flex: 0 0 44px;
    }

    .tcc-event-card__day {
        font-size: 24px;
    }

    .tcc-event-card__title {
        font-size: 16px;
    }

    /* Badge alignment fix */
    .tcc-event-card__badge--inline {
        display: block;
        text-align: left;
        width: fit-content;
        margin: 0 0 8px 0;
    }

    /* Expanded details mobile fix */
    .tcc-event-card__expanded {
        padding: 16px;
    }

    .tcc-event-card__description {
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .tcc-events-wrapper {
        padding: 0 10px;
    }

    .tcc-event-card__body {
        flex-direction: column;
        gap: 8px;
        padding: 14px;
    }

    .tcc-event-card__date-block {
        flex-direction: row;
        gap: 8px;
    }

    .tcc-event-card__day {
        font-size: 20px;
    }

    .tcc-event-card__title {
        font-size: 15px;
    }

    .tcc-event-card__meta-item {
        font-size: 12px;
    }

    .tcc-event-card__btn {
        font-size: 12px;
        padding: 6px 14px;
        width: 100%;
        text-align: center;
    }

    .tcc-event-card__expanded {
        padding: 12px;
    }

    .tcc-events-filters__select,
    .tcc-events-filters__input {
        font-size: 13px;
        padding: 8px 32px 8px 10px;
    }

    .tcc-events-filters__input {
        padding: 8px 10px;
    }
}

/* ========================================
   Featured Event badge + homepage section
   ======================================== */

/* Featured badge on event card image */
.tcc-event-card__featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f5a623 0%, #e2820b 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 2;
}

.tcc-event-card__featured-badge--inline {
    position: static;
    display: inline-block;
    margin: 0 0 6px 8px;
    font-size: 10px;
    padding: 3px 9px;
}

.tcc-event-card--featured {
    border: 1px solid #f5a623;
    box-shadow: 0 4px 14px rgba(245,166,35,0.12);
}

/* File upload input styling on submission form */
.tcc-submit-event__file {
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(255,255,255,0.25) !important;
    color: #d8e1f3;
    padding: 10px 12px;
    cursor: pointer;
}
.tcc-submit-event__file::file-selector-button {
    background: #2EA3F2;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 6px 12px;
    margin-right: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* ========================================
   [tcc_featured_events] — homepage section
   ======================================== */
.tcc-featured-events {
    font-family: 'DM Sans', 'Open Sans', -apple-system, sans-serif;
    max-width: 1080px;
    margin: 40px auto;
    padding: 0 20px;
    color: #2c3e50;
    -webkit-font-smoothing: antialiased;
}
.tcc-featured-events *,
.tcc-featured-events *::before,
.tcc-featured-events *::after {
    box-sizing: border-box;
}
.tcc-featured-events--empty {
    text-align: center;
    padding: 30px 20px;
    color: #8a98a8;
    font-style: italic;
}
.tcc-featured-events__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: #1b2a4a;
    text-align: center;
    margin: 0 0 28px 0;
    letter-spacing: -0.3px;
}
.tcc-featured-events__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.tcc-featured-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27,42,74,0.08);
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tcc-featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(27,42,74,0.16);
    text-decoration: none;
    color: inherit;
}
.tcc-featured-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
    overflow: hidden;
}
.tcc-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tcc-featured-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b2a4a 0%, #2EA3F2 100%);
}
.tcc-featured-card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #f5a623 0%, #e2820b 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.tcc-featured-card__date {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    min-width: 48px;
}
.tcc-featured-card__month {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #2EA3F2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}
.tcc-featured-card__day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #1b2a4a;
    line-height: 1;
    margin-top: 2px;
}
.tcc-featured-card__body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tcc-featured-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #1b2a4a;
    margin: 0 0 6px 0;
    line-height: 1.3;
}
.tcc-featured-card__venue {
    font-size: 13px;
    color: #6c7a8a;
    margin: 0 0 12px 0;
}
.tcc-featured-card__link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: #2EA3F2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tcc-featured-events__footer {
    text-align: center;
    margin-top: 28px;
}
.tcc-featured-events__all {
    display: inline-block;
    padding: 12px 28px;
    background: #1b2a4a;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background .2s ease;
}
.tcc-featured-events__all:hover {
    background: #2EA3F2;
    text-decoration: none;
}

@media (max-width: 640px) {
    .tcc-featured-events__title {
        font-size: 26px;
    }
    .tcc-featured-events__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ========================================
   Chamber Mixers — Classic (Divi-style)
   Used by [tcc_chamber_mixers] shortcode on the homepage
   Matches the old hardcoded "Upcoming Mixers" block aesthetic
   ======================================== */
.tcc-mixers-classic {
    max-width: 1080px;
    margin: 20px auto 40px;
    padding: 8px 4px;
    color: #333;
    line-height: 1.6;
}
.tcc-mixers-classic *,
.tcc-mixers-classic *::before,
.tcc-mixers-classic *::after {
    box-sizing: border-box;
}
.tcc-mixers-classic__title {
    font-size: 32px;
    font-weight: 700;
    text-align: left;
    margin: 0 0 22px 0;
    padding: 0;
    line-height: 1.2;
}
.tcc-mixers-classic__columns {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.tcc-mixers-classic__col {
    flex: 1 1 280px;
    min-width: 0;
}
.tcc-mixers-classic__col-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}
.tcc-mixers-classic__col-when {
    font-weight: 600;
    margin: 0 0 4px 0;
}
.tcc-mixers-classic__col-where {
    margin: 0 0 14px 0;
}
.tcc-mixers-classic__headline {
    margin: 14px 0 8px 0;
}
.tcc-mixers-classic__headline a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0,0,0,0.3);
    transition: color 0.15s ease, border-color 0.15s ease;
}
.tcc-mixers-classic__headline a:hover,
.tcc-mixers-classic__headline a:focus {
    color: #ff9900;
    border-bottom-color: #ff9900;
}
.tcc-mixers-classic__bio {
    font-size: 14px;
    margin: 0 0 12px 0;
}
.tcc-mixers-classic__speaker {
    margin: 0 0 12px 0;
}
.tcc-mixers-classic__boiler {
    margin: 0 0 12px 0;
}
.tcc-mixers-classic__empty {
    margin: 10px 0;
    color: #777;
}
@media (max-width: 640px) {
    .tcc-mixers-classic__title { font-size: 26px; }
    .tcc-mixers-classic__col-title { font-size: 20px; }
}

/* ========================================
   Single Chamber Mixer Event Template
   Replaces the generic event description layout when a tribe_events
   post is categorized as morning-mixers or evening-mixers.
   ======================================== */
.tcc-mixer-single {
    font-family: 'DM Sans', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    max-width: 780px;
    margin: 24px auto;
    padding: 32px 34px 34px;
    background: linear-gradient(135deg, #fff8ec 0%, #fffefb 100%);
    border: 1px solid #f5d99a;
    border-radius: 14px;
    color: #2c3e50;
    line-height: 1.65;
    box-shadow: 0 2px 18px rgba(180, 140, 60, 0.08);
}
.tcc-mixer-single *,
.tcc-mixer-single *::before,
.tcc-mixer-single *::after { box-sizing: border-box; }
.tcc-mixer-single__badge {
    display: inline-block;
    padding: 6px 14px;
    background: #ff9900;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 999px;
    margin: 0 0 18px 0;
}
.tcc-mixer-single--evening .tcc-mixer-single__badge {
    background: #1d5d80;
}
.tcc-mixer-single__when {
    margin: 0 0 14px 0;
}
.tcc-mixer-single__date {
    font-size: 22px;
    margin: 0 0 4px 0;
    color: #1d5d80;
    line-height: 1.3;
}
.tcc-mixer-single__time {
    font-size: 16px;
    margin: 0;
    color: #555;
    font-weight: 600;
}
.tcc-mixer-single__where {
    margin: 0 0 22px 0;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border-left: 3px solid #ff9900;
    border-radius: 0 8px 8px 0;
}
.tcc-mixer-single__where p {
    margin: 0;
    font-size: 16px;
}
.tcc-mixer-single--evening .tcc-mixer-single__where {
    border-left-color: #1d5d80;
}
.tcc-mixer-single__speaker {
    margin: 0 0 22px 0;
    padding-top: 18px;
    border-top: 1px dashed rgba(29, 93, 128, 0.3);
}
.tcc-mixer-single__speaker-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff9900;
    margin: 0 0 8px 0;
    font-weight: 700;
}
.tcc-mixer-single--evening .tcc-mixer-single__speaker-heading {
    color: #1d5d80;
}
.tcc-mixer-single__speaker-name {
    font-size: 19px;
    margin: 0 0 10px 0;
    color: #2c3e50;
}
.tcc-mixer-single__speaker-name a {
    color: #1d5d80;
    text-decoration: none;
    border-bottom: 1px dotted rgba(29, 93, 128, 0.5);
}
.tcc-mixer-single__speaker-name a:hover {
    color: #ff9900;
    border-bottom-color: #ff9900;
}
.tcc-mixer-single__bio {
    font-size: 15px;
    color: #444;
}
.tcc-mixer-single__bio p {
    margin: 0 0 10px 0;
}
.tcc-mixer-single__bio p:last-child { margin-bottom: 0; }
.tcc-mixer-single__boiler {
    margin: 22px 0 0 0;
    padding-top: 18px;
    border-top: 1px dashed rgba(29, 93, 128, 0.3);
    font-size: 14px;
    color: #555;
}
.tcc-mixer-single__boiler p { margin: 0 0 10px 0; }
.tcc-mixer-single__boiler p:last-child { margin-bottom: 0; }
.tcc-mixer-single__extra {
    margin: 22px 0 0 0;
    padding-top: 18px;
    border-top: 1px dashed rgba(29, 93, 128, 0.3);
}
.tcc-mixer-single__extra-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff9900;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.tcc-mixer-single--evening .tcc-mixer-single__extra-heading {
    color: #1d5d80;
}
@media (max-width: 640px) {
    .tcc-mixer-single { padding: 22px 18px; margin: 16px 10px; }
    .tcc-mixer-single__date { font-size: 19px; }
    .tcc-mixer-single__speaker-name { font-size: 17px; }
}

/* ========================================
   Chamber Mixers pinned section
   Used on events page (auto) and via [tcc_chamber_mixers] shortcode
   ======================================== */
.tcc-chamber-mixers {
    font-family: 'DM Sans', 'Open Sans', -apple-system, sans-serif;
    max-width: 1080px;
    margin: 36px auto 44px;
    padding: 28px 24px 32px;
    background: linear-gradient(135deg, #fff8ec 0%, #fffefb 100%);
    border: 1px solid #f5d99a;
    border-radius: 14px;
    -webkit-font-smoothing: antialiased;
    color: #2c3e50;
}
.tcc-chamber-mixers *,
.tcc-chamber-mixers *::before,
.tcc-chamber-mixers *::after {
    box-sizing: border-box;
}
.tcc-chamber-mixers--empty {
    text-align: center;
    color: #8a98a8;
    font-style: italic;
}
.tcc-chamber-mixers__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    color: #1b2a4a;
    text-align: center;
    margin: 0 0 6px 0;
    letter-spacing: -0.3px;
}
.tcc-chamber-mixers__subtitle {
    text-align: center;
    color: #6c7a8a;
    font-size: 14px;
    margin: 0 0 24px 0;
    font-style: italic;
}
.tcc-chamber-mixers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.tcc-chamber-mixer-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(27,42,74,0.08);
    text-decoration: none;
    color: inherit;
    border: 1px solid #f5e7c5;
    transition: transform .25s ease, box-shadow .25s ease;
}
.tcc-chamber-mixer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(27,42,74,0.14);
    text-decoration: none;
    color: inherit;
}
.tcc-chamber-mixer-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #eef2f7;
    overflow: hidden;
}
.tcc-chamber-mixer-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tcc-chamber-mixer-card__tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1b2a4a;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 9px;
    border-radius: 20px;
}
.tcc-chamber-mixer-card__tag--inline {
    position: static;
    display: inline-block;
    margin: 0 0 8px 0;
}
.tcc-chamber-mixer-card__body {
    padding: 14px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tcc-chamber-mixer-card__date-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.tcc-chamber-mixer-card__month {
    font-size: 11px;
    font-weight: 700;
    color: #f5a623;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tcc-chamber-mixer-card__day {
    font-size: 18px;
    font-weight: 800;
    color: #1b2a4a;
    line-height: 1;
}
.tcc-chamber-mixer-card__weekday {
    font-size: 11px;
    color: #6c7a8a;
    margin-left: 4px;
}
.tcc-chamber-mixer-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #1b2a4a;
    margin: 0 0 4px 0;
    line-height: 1.3;
}
.tcc-chamber-mixer-card__venue {
    font-size: 12px;
    color: #6c7a8a;
    margin: 0;
}

@media (max-width: 640px) {
    .tcc-chamber-mixers {
        padding: 22px 16px 26px;
        margin: 24px auto 32px;
    }
    .tcc-chamber-mixers__title {
        font-size: 22px;
    }
    .tcc-chamber-mixers__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ========================================
   Chamber Mixers Archive page
   [tcc_chamber_mixers_archive]
   ======================================== */
.tcc-mixers-archive {
    font-family: 'DM Sans', 'Open Sans', -apple-system, sans-serif;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 60px;
    color: #2c3e50;
    -webkit-font-smoothing: antialiased;
}
.tcc-mixers-archive *,
.tcc-mixers-archive *::before,
.tcc-mixers-archive *::after {
    box-sizing: border-box;
}
.tcc-mixers-archive__hero {
    text-align: center;
    padding: 40px 20px 30px;
    border-bottom: 1px solid #eaeef4;
    margin-bottom: 36px;
}
.tcc-mixers-archive__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    font-weight: 700;
    color: #1b2a4a;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}
.tcc-mixers-archive__subtitle {
    font-size: 15px;
    color: #6c7a8a;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
.tcc-mixers-archive__section {
    margin-bottom: 50px;
}
.tcc-mixers-archive__section--past .tcc-chamber-mixer-card--past {
    opacity: 0.92;
}
.tcc-mixers-archive__section--past .tcc-chamber-mixer-card--past:hover {
    opacity: 1;
}
.tcc-mixers-archive__section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 700;
    color: #1b2a4a;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f5a623;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.tcc-mixers-archive__count {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #6c7a8a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.tcc-mixers-archive__empty {
    text-align: center;
    color: #8a98a8;
    font-style: italic;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 8px;
}
.tcc-mixers-archive__year {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b2a4a;
    margin: 28px 0 14px 0;
    padding-left: 12px;
    border-left: 4px solid #f5a623;
}
.tcc-chamber-mixers__grid--past {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.tcc-chamber-mixer-card--past .tcc-chamber-mixer-card__image {
    filter: grayscale(20%);
}

@media (max-width: 640px) {
    .tcc-mixers-archive__title {
        font-size: 30px;
    }
    .tcc-mixers-archive__section-title {
        font-size: 22px;
    }
    .tcc-chamber-mixers__grid--past {
        grid-template-columns: 1fr;
    }
}
