/*
 * hb-events frontend styles
 * BEM with hb- prefix; CSS custom props on the root element.
 */

:root {
	--hb-brand: #F15A29;
	--hb-brand-hover: #FFC531;
	--hb-brand-dark: #192a3d;
	--hb-brand-ink: #ffffff;
}

.hb-events,
.hb-event-detail {
	--hb-color-bg: #ffffff;
	--hb-color-fg: #1a1a1a;
	--hb-color-muted: #6b6b6b;
	--hb-color-accent: var(--hb-brand);
	--hb-color-border: #e5e5e5;
	--hb-radius: 8px;
	--hb-space-1: 0.25rem;
	--hb-space-2: 0.5rem;
	--hb-space-3: 1rem;
	--hb-space-4: 1.5rem;
	--hb-space-5: 2rem;
	color: var(--hb-color-fg);
	font-family: inherit;
}

/* ---------- List ---------- */

.hb-events__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: var(--hb-space-4);
	/* Karty drží max ~260 px a mřížka se centruje — i neúplný poslední
	   řádek sedí uprostřed místo lepení k levému okraji. */
	grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
	justify-content: center;
}

.hb-event-card {
	background: var(--hb-color-bg);
	border: 1px solid var(--hb-color-border);
	border-radius: var(--hb-radius);
	overflow: hidden;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.hb-event-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.hb-event-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.hb-event-card__poster {
	aspect-ratio: 3 / 4;
	background-size: cover;
	background-position: center;
	background-color: #f2f2f2;
}

.hb-event-card__poster--placeholder {
	background:
		repeating-linear-gradient(
			45deg,
			#f5f5f5 0 14px,
			#ebebeb 14px 28px
		);
}

.hb-event-card__body {
	padding: var(--hb-space-3);
}

.hb-event-card__title {
	font-size: 1.125rem;
	line-height: 1.3;
	margin: var(--hb-space-2) 0 var(--hb-space-1);
}

.hb-event-card__meta {
	color: var(--hb-color-muted);
	font-size: 0.875rem;
	margin: 0;
}

.hb-event-card__venue {
	margin-left: var(--hb-space-1);
}

/* ---------- Badges ---------- */

.hb-event__badge {
	display: inline-block;
	padding: 2px 8px;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	border-radius: 999px;
	background: #f0f0f0;
	color: var(--hb-color-fg);
}

.hb-event__badge--free {
	background: #e8f5e9;
	color: #1b5e20;
}

.hb-event__badge--reservation_only {
	background: #e3f2fd;
	color: #0d47a1;
}

.hb-event__badge--seated {
	background: #fce4ec;
	color: #880e4f;
}

/* ---------- Event detail ---------- */

.hb-event-single {
	max-width: 980px;
	margin: 0 auto;
	padding: 40px 24px 80px;
	color: #111827;
	font-family: inherit;
}

.hb-event-single__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.hb-event-single__poster {
	margin: 0;
	position: sticky;
	top: 24px;
	align-self: start;
}

.hb-event-single__poster img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
	background: #f3f4f6;
}

.hb-event-single__info {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
}

.hb-event-single__badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin: 0;
}

.hb-event-single__title {
	margin: 0;
	font-size: 2.25rem;
	line-height: 1.1;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.015em;
}

.hb-event-single__when {
	margin: 0;
	font-size: 1.0625rem;
	color: #4b5563;
	line-height: 1.4;
}

.hb-event-single__when-sep {
	color: #9ca3af;
	margin: 0 4px;
}

.hb-event-single__facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 16px 24px;
	margin: 4px 0 0;
	padding: 18px 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.hb-event-single__facts > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.hb-event-single__facts dt {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	margin: 0;
	font-weight: 600;
}

.hb-event-single__facts dd {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

.hb-event-single__venue-address {
	font-weight: 400;
	font-size: 0.9375rem;
	color: #4b5563;
}

.hb-event-single__venue-maps {
	font-weight: 500;
	font-size: 0.875rem;
	color: var(--hb-brand);
	text-decoration: none;
}

.hb-event-single__venue-maps:hover {
	text-decoration: underline;
}

.hb-event-single__about {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0;
}

.hb-event-single__section-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	margin: 0;
	font-weight: 600;
}

.hb-event-single__body {
	font-size: 1rem;
	line-height: 1.65;
	color: #1f2937;
}

.hb-event-single__body p:first-child {
	margin-top: 0;
}

.hb-event-single__body p:last-child {
	margin-bottom: 0;
}

.hb-event-single__body a {
	color: var(--hb-brand);
	text-decoration-color: rgba(37, 99, 235, 0.3);
	text-underline-offset: 3px;
}

.hb-event-single__body-empty {
	margin: 0;
	color: #9ca3af;
	font-style: italic;
	font-size: 0.9375rem;
}

/* CTA trigger */

.hb-event-single__cta {
	margin-top: 8px;
}

.hb-event-single__trigger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 28px;
	background: var(--hb-brand);
	color: var(--hb-brand-ink);
	border: none;
	border-radius: 10px;
	font-size: 1.0625rem;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	min-height: 48px;
	transition: background 150ms, transform 80ms;
	box-shadow: 0 1px 3px rgba(241, 90, 41, 0.25);
}

.hb-event-single__trigger:hover {
	background: var(--hb-brand-hover);
	color: var(--hb-brand-dark);
}

.hb-event-single__trigger:active {
	transform: translateY(1px);
}

.hb-event-single__trigger[aria-expanded="true"] {
	background: var(--hb-brand-dark);
	color: var(--hb-brand-ink);
}

.hb-event-single__chevron {
	display: inline-block;
	transition: transform 200ms ease;
	font-size: 0.875rem;
}

.hb-event-single__trigger[aria-expanded="true"] .hb-event-single__chevron {
	transform: rotate(180deg);
}

/* Inline collapsible picker — lives inside the info column, right under the CTA */

.hb-event-single__picker-collapse {
	margin-top: 8px;
}

.hb-event-single__picker-collapse[hidden] {
	display: none;
}

/* Compact picker canvas when embedded in the info column */
.hb-event-single__picker-collapse .hb-picker__canvas {
	height: clamp(340px, 46vh, 460px);
}

.hb-event-single__muted {
	padding: 14px 16px;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	color: #6b7280;
	margin: 0;
	font-style: italic;
}

@media (max-width: 860px) {
	.hb-event-single__hero {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.hb-event-single__poster {
		position: static;
	}
	.hb-event-single__poster img {
		max-height: 60vh;
	}
}

@media (max-width: 560px) {
	.hb-event-single {
		padding: 20px 16px 60px;
	}
	.hb-event-single__hero {
		gap: 20px;
	}
	.hb-event-single__title {
		font-size: 1.75rem;
	}
	.hb-event-single__when {
		font-size: 0.9375rem;
	}
	.hb-event-single__trigger {
		width: 100%;
	}
	.hb-event-single__picker-section {
		margin-top: 32px;
		padding-top: 24px;
	}
}

/* Badges — unify styling across list + detail */
.hb-event__badge {
	display: inline-block;
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	border-radius: 999px;
	background: #f3f4f6;
	color: #374151;
}

.hb-event__badge--free {
	background: #dcfce7;
	color: #14532d;
}

.hb-event__badge--reservation_only {
	background: #dbeafe;
	color: #1e3a8a;
}

.hb-event__badge--seated {
	background: #fce7f3;
	color: #831843;
}

.hb-event__badge--category {
	background: var(--hb-brand);
	color: var(--hb-brand-ink);
}

.hb-event-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-bottom: var(--hb-space-2);
}

/* ---------- Reservation confirmation ---------- */

.hb-confirmation {
	max-width: 620px;
	margin: 0 auto;
	padding: 48px 20px 80px;
	color: #111827;
	font-family: inherit;
}

.hb-confirmation__card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	gap: 28px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.hb-confirmation__status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	align-self: flex-start;
	padding: 6px 14px 6px 8px;
	background: #ecfdf5;
	color: #047857;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.hb-confirmation__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #10b981;
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
}

.hb-confirmation__title {
	margin: 0;
	font-size: 2rem;
	line-height: 1.15;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.01em;
}

.hb-confirmation__date {
	margin: 0;
	color: #4b5563;
	font-size: 1.0625rem;
	line-height: 1.5;
	font-variant: small-caps;
}

.hb-confirmation__meta {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 18px 24px;
	margin: 0;
	padding: 22px 0;
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
}

.hb-confirmation__meta > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.hb-confirmation__meta dt {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	margin: 0;
	font-weight: 600;
}

.hb-confirmation__meta dd {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	line-height: 1.4;
}

.hb-confirmation__section {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hb-confirmation__section-title {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #6b7280;
	margin: 0;
	font-weight: 600;
}

.hb-confirmation__seats {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.hb-confirmation__seat {
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: #f3f4f6;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #111827;
	font-variant-numeric: tabular-nums;
}

.hb-confirmation__callout {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border-radius: 8px;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.hb-confirmation__callout strong {
	font-weight: 600;
}

.hb-confirmation__callout--payment {
	background: #fffbeb;
	color: #78350f;
	border: 1px solid #fde68a;
}

.hb-confirmation__uuid {
	display: inline-block;
	padding: 8px 12px;
	background: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
	font-size: 0.8125rem;
	color: #111827;
	word-break: break-all;
	align-self: flex-start;
	max-width: 100%;
}

.hb-confirmation__divider {
	margin: 0;
	border: none;
	border-top: 1px solid #e5e7eb;
}

.hb-confirmation__footnote {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #4b5563;
}

.hb-confirmation__footnote p {
	margin: 0;
}

.hb-confirmation__muted {
	color: #9ca3af;
	font-style: italic;
	font-size: 0.8125rem;
}

/* Error / not-found variant reuses card shell */
.hb-reservation-detail--error {
	text-align: center;
	color: #b91c1c;
}

/* ---------- Cancel flow ---------- */

.hb-cancel-main {
	padding-top: 20px;
}

.hb-cancel__intro {
	margin: 0;
	color: #4b5563;
	line-height: 1.55;
}

.hb-cancel__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hb-cancel__reason-label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: #6b7280;
}

.hb-cancel__reason-label textarea {
	padding: 10px 12px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	font-family: inherit;
	font-size: 14px;
	resize: vertical;
	min-height: 60px;
}

.hb-cancel__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
}

.hb-confirmation__status--cancelled {
	background: #fee2e2;
	color: #991b1b;
}

.hb-confirmation__status--cancelled .hb-confirmation__check {
	background: #dc2626;
}

/* Buttons used by cancel flow + confirmation page */

.hb-confirmation .hb-btn,
.hb-cancel__actions .hb-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 18px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	border: 1px solid transparent;
	cursor: pointer;
	min-height: 40px;
	text-decoration: none;
	transition: background 120ms, border-color 120ms;
}

.hb-btn--ghost {
	background: #ffffff;
	border-color: #cbd5e1;
	color: #0f172a;
}

.hb-btn--ghost:hover {
	background: #f1f5f9;
	border-color: #94a3b8;
}

.hb-btn--danger {
	background: #dc2626;
	border-color: #dc2626;
	color: #ffffff;
}

.hb-btn--danger:hover {
	background: #b91c1c;
	border-color: #b91c1c;
}

.hb-btn--small {
	padding: 6px 12px;
	font-size: 13px;
	min-height: 32px;
}

@media (max-width: 560px) {
	.hb-confirmation {
		padding: 20px 12px 60px;
	}
	.hb-confirmation__card {
		padding: 28px 20px;
	}
	.hb-confirmation__title {
		font-size: 1.625rem;
	}
}

/* ---------- Empty state ---------- */

.hb-events--empty {
	padding: var(--hb-space-5);
	text-align: center;
	color: var(--hb-color-muted);
}

/* ---------- Events carousel ---------- */

.hb-carousel {
	position: relative;
	--hb-carousel-slide: 280px;
	/* Šipky sedí v tomto bočním odsazení a nepřekrývají karty. */
	padding: 0 56px;
}

.hb-carousel__track {
	display: flex;
	gap: 20px;
	list-style: none;
	margin: 0;
	padding: 4px 2px 12px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.hb-carousel__track::-webkit-scrollbar {
	display: none;
}

.hb-carousel__slide {
	flex: 0 0 var(--hb-carousel-slide);
	scroll-snap-align: start;
	margin: 0;
}

.hb-carousel__slide .hb-event-card__link {
	position: relative;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	background: var(--hb-surface, #fff);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.1);
	text-decoration: none;
	color: inherit;
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.hb-carousel__slide .hb-event-card__link:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
}

.hb-carousel__poster {
	aspect-ratio: 2 / 3;
	background-size: cover;
	background-position: center;
}

.hb-carousel__price {
	position: absolute;
	top: 12px;
	right: 12px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--hb-accent, #F15A29);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.hb-carousel__price--free {
	background: #1a7f4b;
}

.hb-carousel__body {
	padding: 12px 14px 14px;
}

.hb-carousel__title {
	margin: 0 0 4px;
	font-size: 16px;
	line-height: 1.3;
}

.hb-carousel__meta {
	margin: 0;
	font-size: 13px;
	color: var(--hb-muted, #64748b);
}

.hb-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	width: 42px;
	height: 42px;
	border: none;
	border-radius: 50%;
	background: var(--hb-accent, #F15A29);
	color: #fff;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	transition: background 140ms ease;
}

.hb-carousel__arrow:hover {
	background: #d94b1f;
}

.hb-carousel__arrow--prev {
	left: 2px;
}

.hb-carousel__arrow--next {
	right: 2px;
}

@media (max-width: 600px) {
	.hb-carousel {
		--hb-carousel-slide: 72vw;
		padding: 0;
	}

	.hb-carousel__arrow {
		display: none;
	}
}

/* ---------- Theme fixes ---------- */

/* Blocksy: průhledná hlavička se vykresluje přes začátek obsahu —
   stránky pluginu dostávají odsazení odpovídající výšce hlavičky. */
.hb-theme-blocksy .hb-event-main,
.hb-theme-blocksy .hb-events-archive-main {
	padding-top: clamp(90px, 12vh, 140px);
}

/* ---------- Archive hero banner ---------- */

/* Tmavý pás na začátku archivu /akce/ — průhledná hlavička theme (bílé
   menu) na něm zůstává čitelná. Full-bleed přes celou šířku okna. */
.hb-archive-hero {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	background: linear-gradient(160deg, #192a3d 0%, #0f1c2b 100%);
	background-size: cover;
	background-position: center;
	padding: 170px 24px 70px;
	text-align: center;
}

/* Fotka jako podklad (stejný vzor jako ostatní stránky webu) — tmavý
   překryv drží čitelnost bílého menu i titulku. */
.hb-archive-hero--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 16, 26, 0.75) 0%, rgba(10, 16, 26, 0.45) 55%, rgba(10, 16, 26, 0.55) 100%);
}

.hb-archive-hero__inner {
	position: relative;
}

.hb-archive-hero__title {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(30px, 5vw, 44px);
	line-height: 1.15;
}

.hb-archive-hero__subtitle {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
	font-size: clamp(15px, 2vw, 18px);
}

.hb-events-archive-main {
	padding-top: 40px;
}

/* Banner sám vyplňuje prostor pod průhlednou hlavičkou — extra odsazení
   archivu pod Blocksy by se sčítalo. */
.hb-theme-blocksy .hb-events-archive-main {
	padding-top: 40px;
}

@media (max-width: 600px) {
	.hb-archive-hero {
		padding: 120px 16px 40px;
	}
}

/* Archiv: obsah v centrovaném kontejneru, ne od kraje ke kraji. */
.hb-events-archive-main {
	max-width: 1080px;
	margin: 0 auto;
	padding-left: 24px;
	padding-right: 24px;
	padding-bottom: 72px;
}

/* ---------- Rezervační formulář (akce bez sedadel) ---------- */

.hb-resv-form {
	max-width: 560px;
	margin: 16px 0 0;
	padding: 20px;
	background: var(--hb-color-bg, #fff);
	border: 1px solid var(--hb-color-border, #e5e7eb);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.hb-resv-form__row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	align-items: end;
}

.hb-resv-form label {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 13px;
	color: #4b5563;
}

.hb-resv-form input,
.hb-resv-form select {
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 15px;
}

.hb-resv-form__total {
	margin: 0;
	font-size: 15px;
	color: #111827;
}

.hb-resv-form__total strong {
	font-size: 20px;
}

.hb-resv-form__note {
	margin: 0;
	font-size: 13px;
	color: #6b7280;
}

.hb-resv-form__error {
	margin: 0;
	padding: 10px 12px;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: 8px;
	color: #b91c1c;
	font-size: 14px;
}

.hb-resv-form__submit {
	justify-content: center;
}

.hb-resv-form__submit:disabled {
	opacity: 0.6;
	cursor: wait;
}

/* Slim varianta hero pásu — detail akce: jen fotka pod navbar, bez textu. */
.hb-archive-hero--slim {
	padding: 0;
	height: 190px;
}

/* Hero pás řeší odsazení sám — Blocksy hack pro detail už není potřeba. */
.hb-theme-blocksy .hb-event-main {
	padding-top: 0;
}

@media (max-width: 600px) {
	.hb-archive-hero--slim {
		height: 140px;
	}
}

/* Blocksy: archiv akcí nemá zapnutý transparent header — hlavičku
   posadíme přes hero absolutně a zprůhledníme pozadí jejích řádků,
   přesně jako to dělá nativní transparent varianta na detailu. */
.hb-theme-blocksy.post-type-archive-hb_event #header,
.hb-theme-blocksy.tax-hb_event_category #header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
}

body.admin-bar.hb-theme-blocksy.post-type-archive-hb_event #header,
body.admin-bar.hb-theme-blocksy.tax-hb_event_category #header {
	top: 32px;
}

.hb-theme-blocksy.post-type-archive-hb_event #header [data-row],
.hb-theme-blocksy.post-type-archive-hb_event #header [data-column],
.hb-theme-blocksy.post-type-archive-hb_event #header .ct-container,
.hb-theme-blocksy.tax-hb_event_category #header [data-row],
.hb-theme-blocksy.tax-hb_event_category #header [data-column],
.hb-theme-blocksy.tax-hb_event_category #header .ct-container {
	background: transparent !important;
}
