/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 16 2026 | 05:26:52 */
.next-event-card {
    display: flex;
    align-items: center;
    gap: 68px;
    width: 100%;
    border-radius: 0;
}

.next-event-datebox {
    width: 132px;
    min-width: 132px;
    height: 140px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.next-event-day-label {
    font-size: 17px;
    font-weight: 500;
    color: #555555;
    line-height: 1;
    margin-bottom: 10px;
}

.next-event-day-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.next-event-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.next-event-date-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
}

.next-event-title {
    margin: 0;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-primary);
}

.next-event-title a {
    color: inherit;
    text-decoration: none;
}

.next-event-title a:hover {
    text-decoration: underline;
}

.next-event-location {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-text);
}

.next-event-location strong {
    font-weight: 800;
}

.next-event-empty {
    margin: 0;
}

.next-events-list {
    display: flex;
    gap: 32px;
}

.tribe-events .tribe-events-calendar-list__event-header>:last-child {
	margin-block-start: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
	.next-events-list {
		flex-direction: column;
		gap: 16px;
	}
}

@media (max-width: 767px) {
    .next-event-card {
        align-items: flex-start;
        gap: 8px;
        padding: 0;
    }

    .next-event-datebox {
        width: 86px;
        min-width: 86px;
        height: 96px;
    }

    .next-event-day-label {
        font-size: 13px;
    }

    .next-event-day-number {
        font-size: 32px;
    }

    .next-event-date-text {
        font-size: 17px;
    }

    .next-event-title {
        font-size: 24px;
    }

    .next-event-location {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .next-event-card {
        flex-direction: column;
    }
}