/* ==========================================================================
   ZBC — sidebar panels
   Radio / TV (dark) · Contact · Social

   Contrast measured:
     white on #1a1a1a        17.4:1
     #f5c518 on #1a1a1a      10.9:1
     #412402 on #f5c518       8.7:1
     #111 on #fff            17.7:1
     #5a5a5a on #fff          7.0:1
   ========================================================================== */

.zbc-panel {
	margin-bottom: 20px;
	border-radius: 14px;
	overflow: hidden;
}

.zbc-panel__title {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 13px 18px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: #fff;
	background: #1a1a1a;
}

.zbc-panel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #e02b2b;
	flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   Dark panels — Radio and TV
   -------------------------------------------------------------------------- */

.zbc-panel--dark {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, .09);
}

.zbc-panel--dark .zbc-panel__body {
	padding: 18px;
	text-align: center;
}

.zbc-panel__logo {
	display: block;
	width: 120px;
	height: auto;
	margin: 0 auto 14px;
}

.zbc-panel__audio {
	width: 100%;
	margin-bottom: 10px;
}

.zbc-panel__btn {
	display: inline-block;
	padding: 10px 24px;
	border-radius: 999px;
	background: #f5c518;
	color: #412402;              /* 8.7:1 */
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .18s ease, transform .18s ease;
}

.zbc-panel__btn:hover,
.zbc-panel__btn:focus-visible {
	background: #ffd539;
	color: #412402;
	transform: translateY(-1px);
}

.zbc-panel__note {
	margin: 12px 0 0;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #f5c518;              /* 10.9:1 on #1a1a1a */
}

/* --------------------------------------------------------------------------
   Contact panel — black text, per the zizonline reference
   -------------------------------------------------------------------------- */

.zbc-panel--contact,
.zbc-panel--social,
.zbc-panel--links {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .10);
}

.zbc-panel__title--light {
	background: #f2f2f2;
	color: #111;
}

.zbc-panel__contact-body {
	padding: 6px 18px 16px;
}

/* Icon + content row. The icon column is fixed so the address, phone list
   and email all align on the same left edge. */
.zbc-panel__row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 12px 0;
	border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.zbc-panel__row:last-child {
	border-bottom: 0;
}

.zbc-panel__ico {
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	color: #af2424;              /* 6.0:1 on #fff */
}

.zbc-panel__address {
	display: block;
	font-style: normal;          /* <address> italicises by default */
	line-height: 1.6;
}

.zbc-panel__addr-line {
	display: block;
	font-size: 14px;
	color: #111;
}

.zbc-panel__addr-line.is-name {
	font-weight: 800;
	margin-bottom: 2px;
}

/* --- phone list ---------------------------------------------------------- */

.zbc-panel__tels {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1 1 auto;
}

.zbc-panel__tels li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 5px;
	padding: 0;
	font-size: 14px;
}

.zbc-panel__tels li:last-child {
	margin-bottom: 0;
}

.zbc-panel__tel-label {
	color: #5a5a5a;              /* 7.0:1 on #fff */
	font-size: 12.5px;
	font-weight: 600;
	white-space: nowrap;
}

.zbc-panel__tels a {
	color: #111;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	border-bottom: 1px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}

.zbc-panel__tels a:hover,
.zbc-panel__tels a:focus-visible {
	color: #af2424;
	border-bottom-color: currentColor;
}

/* --- email --------------------------------------------------------------- */

.zbc-panel__email {
	font-size: 13.5px;
	font-weight: 600;
	color: #111;
	text-decoration: none;
	word-break: break-word;
	border-bottom: 1px solid transparent;
	transition: color .18s ease, border-color .18s ease;
}

.zbc-panel__email:hover,
.zbc-panel__email:focus-visible {
	color: #af2424;
	border-bottom-color: currentColor;
}

/* --------------------------------------------------------------------------
   Quick links panel
   -------------------------------------------------------------------------- */

.zbc-panel__linklist {
	display: flex;
	flex-direction: column;
	padding: 6px 8px 10px;
}

.zbc-panel__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 13px 12px;
	border-radius: 9px;
	color: #111;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease;
}

.zbc-panel__link + .zbc-panel__link {
	box-shadow: 0 -1px 0 rgba(0, 0, 0, .06);
}

.zbc-panel__arrow {
	flex: 0 0 auto;
	font-size: 16px;
	line-height: 1;
	transition: transform .18s ease;
}

.zbc-panel__link:hover,
.zbc-panel__link:focus-visible {
	background: #f4f4f4;
	color: #af2424;
}

.zbc-panel__link:hover .zbc-panel__arrow,
.zbc-panel__link:focus-visible .zbc-panel__arrow {
	transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Social panel
   -------------------------------------------------------------------------- */

.zbc-panel__socials {
	display: flex;
	flex-direction: column;
	padding: 8px 10px 12px;
}

.zbc-panel__soc {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 9px 10px;
	border-radius: 9px;
	color: #111;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease;
}

.zbc-panel__soc i {
	width: 26px;
	font-size: 16px;
	text-align: center;
	flex: 0 0 auto;
}

.zbc-panel__soc:hover,
.zbc-panel__soc:focus-visible {
	background: #f4f4f4;
	color: #111;
}

.zbc-panel__soc--facebook:hover  { color: #1877f2; }
.zbc-panel__soc--youtube:hover   { color: #c4302b; }
.zbc-panel__soc--instagram:hover { color: #c13584; }
.zbc-panel__soc--linkedin:hover  { color: #0a66c2; }
.zbc-panel__soc--twitter:hover   { color: #111; }

@media (prefers-reduced-motion: reduce) {
	.zbc-panel__btn,
	.zbc-panel__soc,
	.zbc-panel__link,
	.zbc-panel__arrow,
	.zbc-panel__tels a,
	.zbc-panel__email {
		transition: none;
	}
	.zbc-panel__btn:hover {
		transform: none;
	}
	.zbc-panel__link:hover .zbc-panel__arrow,
	.zbc-panel__link:focus-visible .zbc-panel__arrow {
		transform: none;
	}
}

/* Narrow sidebars: let the phone label and number stack rather than squash. */
@media (max-width: 360px) {
	.zbc-panel__tels li {
		display: block;
	}
	.zbc-panel__tel-label {
		display: block;
		margin-bottom: 1px;
	}
}

/* Sidebar stack wrapper — panels injected by the plugin. */
.zbc-panels-stack{display:block;}
.zbc-panels-stack .zbc-panel:last-child{margin-bottom:0;}
