.tb-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: .7rem 1rem;
    border: 0;
    border-radius: var(--radius-md);
    background: var(--brand-primary);
    color: var(--text-inverse);
    font-weight: 800;
    text-decoration: none;
}

.tb-button:hover { background: var(--brand-primary-hover); }
.tb-button:active { background: var(--brand-primary-active); }

.tb-event-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--surface-elevated);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
}

.tb-event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tb-event-card__media {
    display: block;
    aspect-ratio: 7 / 10;
    overflow: hidden;
    background: var(--surface-secondary);
}

.tb-event-card__media img { width: 100%; height: 100%; object-fit: cover; }
.tb-event-card__body { flex: 1; display: flex; flex-direction: column; padding: 15px; }
.tb-event-card__date {
    display: block;
    margin: 0 0 7px;
    color: var(--brand-primary-active);
    font-size: .84rem;
    font-weight: 800;
}

.tb-event-card__title { margin: 0 0 10px; font-size: 1.03rem; line-height: 1.3; }
.tb-event-card__title a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--text-primary);
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tb-event-card__title a:hover { color: var(--brand-primary-active); }
.tb-event-card__place {
    display: -webkit-box;
    overflow: hidden;
    min-height: 38px;
    margin: 0 0 13px;
    color: var(--text-muted);
    font-size: .875rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tb-event-card .tb-button { width: 100%; margin-top: auto; }
.pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
}

.page-link {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: .5rem;
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    background: var(--surface-primary);
    text-decoration: none;
}

.page-item.active .page-link { background: var(--brand-primary); border-color: var(--brand-primary); color: var(--text-inverse); }
.page-item.disabled .page-link { opacity: .45; }

@media (max-width: 430px) {
    .tb-event-card__body { padding: 11px; }
    .tb-event-card__date { font-size: .76rem; }
    .tb-event-card__title { font-size: .94rem; }
    .tb-event-card__place { min-height: 34px; font-size: .8rem; }
    .tb-event-card .tb-button { min-height: 42px; padding: .55rem; font-size: .88rem; }
}
