.pb-agenda,
.pb-agenda-filters,
.pb-filter-results,
.pb-province-grid,
.pb-province-detail,
.pb-event-tags {
	--pb-blue: #2563eb;
	--pb-ink: #172033;
	--pb-muted: #667085;
	--pb-line: #e6eaf2;
	--pb-purple: #8b5cf6;
	--pb-cyan: #0891b2;
	--pb-yellow: #facc15;
	font-family: Inter, system-ui, sans-serif;
}
.pb-agenda {
	background: #fff;
	border: 1px solid var(--pb-line);
	border-radius: 8px;
	overflow: hidden;
}
.pb-agenda__head,
.pb-agenda__row {
	display: grid;
	gap: 14px;
	grid-template-columns: 90px 2fr 1.3fr 1fr 1fr;
}
.pb-agenda__head {
	background: #f8fafc;
	color: var(--pb-muted);
	font-size: 12px;
	font-weight: 800;
	padding: 12px 18px;
	text-transform: uppercase;
}
.pb-agenda__row {
	align-items: center;
	border-top: 1px solid var(--pb-line);
	color: var(--pb-ink);
	padding: 14px 18px;
	text-decoration: none;
}
.pb-agenda__row > span:nth-child(3),
.pb-agenda__row > span:nth-child(4),
.pb-agenda__row > span:nth-child(5) {
	font-family: Inter, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}
.pb-agenda__date {
	align-items: center;
	background: #f0f6ff;
	border-radius: 8px;
	display: inline-flex;
	flex-direction: column;
	height: 56px;
	justify-content: center;
	width: 56px;
}
.pb-agenda__date strong {
	font-family: Outfit, Inter, sans-serif;
	font-size: 22px;
	line-height: 1;
}
.pb-agenda__date em {
	color: var(--pb-blue);
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}
.pb-agenda__event {
	display: grid;
	gap: 4px;
}
.pb-agenda__tags,
.pb-event-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}
.pb-agenda__tag,
.pb-event-tag {
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	padding: 4px 7px;
	width: fit-content;
}
.pb-agenda__tag--1,
.pb-event-tag--1 {
	background: #fee2e2;
	color: #9f1239;
}
.pb-agenda__tag--2,
.pb-event-tag--2 {
	background: #e0f2fe;
	color: #075985;
}
.pb-agenda__tag--3,
.pb-event-tag--3 {
	background: #fef9c3;
	color: #854d0e;
}
.pb-agenda__tag--4,
.pb-event-tag--4 {
	background: #dcfce7;
	color: #166534;
}
.pb-agenda__tag--5,
.pb-event-tag--5 {
	background: #ede9fe;
	color: #5b21b6;
}
.pb-agenda__type {
	align-items: center;
	display: inline-flex;
	font-weight: 800 !important;
	gap: 8px;
}
.pb-agenda__type::before {
	align-items: center;
	background: #eff6ff;
	border-radius: 7px;
	color: var(--pb-blue);
	content: "▦";
	display: inline-flex;
	font-size: 13px;
	font-weight: 900;
	height: 24px;
	justify-content: center;
	width: 24px;
}
.pb-agenda__type--trade::before {
	background: #f3e8ff;
	color: var(--pb-purple);
	content: "✤";
}
.pb-pill {
	border-radius: 999px;
	display: inline-flex;
	font-size: 12px;
	font-weight: 800;
	padding: 5px 9px;
	width: fit-content;
}
.pb-pill-cancelled {
	background: #fee2e2;
	color: #991b1b;
}
.pb-guide-block {
	--pb-guide-purple: #7c3aed;
	--pb-guide-blue: #2563eb;
	--pb-guide-green: #16a34a;
	--pb-guide-navy: #172033;
	--pb-guide-text: #263247;
	--pb-guide-muted: #667085;
	--pb-guide-border: #e6eaf2;
	--pb-guide-radius: 12px;
	--pb-guide-shadow: 0 14px 32px rgba(23, 32, 51, .08);
	background: #fff;
	border: 1px solid var(--pb-guide-border);
	border-radius: var(--pb-guide-radius);
	box-shadow: var(--pb-guide-shadow);
	color: var(--pb-guide-text);
	display: grid;
	gap: 14px;
	margin: 24px 0;
	padding: 22px;
}
.pb-guide-block--space-compact { padding: 16px; }
.pb-guide-block--space-spacious { padding: 30px; }
.pb-guide-block--purple { border-color: #ddd6fe; }
.pb-guide-block--blue { border-color: #bfdbfe; }
.pb-guide-block--green { border-color: #bbf7d0; }
.pb-guide-block--warning { border-color: #fed7aa; }
.pb-guide-block--light { background: #f8fafc; }
.pb-guide-block--dark {
	background: #111827;
	border-color: #1f2937;
	color: #fff;
}
.pb-guide-block__title {
	color: var(--pb-guide-navy);
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.15;
	margin: 0;
}
.pb-guide-block--dark .pb-guide-block__title { color: #fff; }
.pb-guide-block__intro,
.pb-guide-block__content p {
	color: var(--pb-guide-muted);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}
.pb-guide-items {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(var(--pb-guide-columns, 2), minmax(0, 1fr));
}
.pb-guide-item {
	background: #f8fafc;
	border: 1px solid var(--pb-guide-border);
	border-radius: 10px;
	color: var(--pb-guide-text);
	display: grid;
	gap: 6px;
	padding: 14px;
	text-decoration: none;
}
.pb-guide-item__icon {
	align-items: center;
	background: #eff6ff;
	border-radius: 8px;
	color: var(--pb-guide-blue);
	display: inline-flex;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	width: 34px;
}
.pb-guide-item strong {
	color: var(--pb-guide-navy);
	font-size: 16px;
}
.pb-guide-item span {
	color: var(--pb-guide-muted);
	line-height: 1.5;
}
.pb-guide-button {
	align-items: center;
	background: var(--pb-guide-purple);
	border-radius: 8px;
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	padding: 11px 15px;
	text-decoration: none;
	width: fit-content;
}
.pb-guide-faq {
	display: grid;
	gap: 10px;
}
.pb-guide-faq details {
	background: #f8fafc;
	border: 1px solid var(--pb-guide-border);
	border-radius: 10px;
	padding: 14px;
}
.pb-guide-faq summary {
	color: var(--pb-guide-navy);
	cursor: pointer;
	font-weight: 900;
}
.pb-guide-table-wrap {
	overflow-x: auto;
}
.pb-guide-table {
	border-collapse: collapse;
	min-width: 560px;
	width: 100%;
}
.pb-guide-table td {
	border: 1px solid var(--pb-guide-border);
	padding: 10px 12px;
}
.pb-guide-split {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pb-guide-split > div {
	background: #f8fafc;
	border: 1px solid var(--pb-guide-border);
	border-radius: 10px;
	padding: 16px;
}
.pb-guide-split h3 {
	margin: 0 0 10px;
}
.pb-guide-split ul {
	margin: 0;
	padding-left: 20px;
}
.pb-guide__header {
	background: #fff;
	border: 1px solid #e6eaf2;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(23, 32, 51, .06);
	display: grid;
	gap: 14px;
	margin: 0 0 24px;
	padding: 24px;
}
.pb-guide__eyebrow {
	color: #7c3aed;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0;
	margin: 0;
	text-transform: uppercase;
}
.pb-guide__intro {
	color: #263247;
	font-size: 19px;
	line-height: 1.55;
	margin: 0;
}
.pb-guide__meta {
	color: #667085;
	font-size: 14px;
	font-weight: 800;
	margin: 0;
}
.pb-guide__image {
	border-radius: 10px;
	display: block;
	height: auto;
	width: 100%;
}
.pb-guide-toc {
	background: #f8fafc;
	border: 1px solid #e6eaf2;
	border-radius: 10px;
	margin: 0 0 24px;
	padding: 16px;
}
.pb-guide-toc strong {
	color: #172033;
	display: block;
	margin-bottom: 8px;
}
.pb-guide-toc ul {
	margin: 0;
	padding-left: 20px;
}
.pb-guide-section,
.pb-guide-tips {
	display: grid;
	gap: 14px;
	margin: 28px 0;
}
.pb-guide-section {
	background: #fff;
	border: 1px solid #e6eaf2;
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(23, 32, 51, .06);
	padding: 22px;
}
.pb-guide-section h2 {
	color: #172033;
	font-size: clamp(22px, 3vw, 30px);
	line-height: 1.15;
	margin: 0;
}
.pb-guide-section__intro {
	color: #667085;
	line-height: 1.6;
	margin: 0;
}
.pb-guide-section__grid {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pb-guide-mini-card {
	background: #f8fafc;
	border: 1px solid #e6eaf2;
	border-radius: 10px;
	display: grid;
	gap: 10px;
	grid-template-columns: auto 1fr;
	padding: 14px;
}
.pb-guide-mini-card h3 {
	color: #172033;
	font-size: 16px;
	margin: 0 0 4px;
}
.pb-guide-mini-card p {
	color: #667085;
	line-height: 1.5;
	margin: 0;
}
.pb-guide-icon {
	align-items: center;
	background: #f3e8ff;
	border-radius: 9px;
	color: #7c3aed;
	display: inline-flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}
.pb-guide-icon svg {
	fill: none;
	height: 21px;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	width: 21px;
}
.pb-guide-checklist {
	background: #f0fdf4;
	border-color: #bbf7d0;
}
.pb-guide-checklist .pb-guide-icon {
	background: #dcfce7;
	color: #16a34a;
}
.pb-guide-steps {
	background: #eff6ff;
	border-color: #bfdbfe;
}
.pb-guide-step-number {
	align-items: center;
	background: #dbeafe;
	border-radius: 9px;
	color: #1d4ed8;
	display: inline-flex;
	font-weight: 900;
	height: 38px;
	justify-content: center;
	width: 38px;
}
.pb-guide-tip {
	align-items: flex-start;
	background: #faf5ff;
	border: 1px solid #e9d5ff;
	border-left: 5px solid #8b5cf6;
	border-radius: 10px;
	display: flex;
	gap: 12px;
	padding: 14px;
}
.pb-guide-tip--info {
	background: #eff6ff;
	border-color: #bfdbfe;
	border-left-color: #2563eb;
}
.pb-guide-tip--warning {
	background: #fff7ed;
	border-color: #fed7aa;
	border-left-color: #f97316;
}
.pb-guide-tip--recommended {
	background: #f0fdf4;
	border-color: #bbf7d0;
	border-left-color: #16a34a;
}
.pb-guide-tip h3 {
	color: #172033;
	margin: 0 0 5px;
}
.pb-guide-tip p {
	color: #667085;
	margin: 0;
}
.pb-guide-pros-cons__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pb-guide-pros-cons__grid > div {
	background: #f8fafc;
	border: 1px solid #e6eaf2;
	border-radius: 10px;
	padding: 16px;
}
.pb-guide-pros-cons ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
}
.pb-guide-pros-cons li {
	align-items: flex-start;
	display: flex;
	gap: 10px;
	list-style: none;
}
.pb-guide-faq__item {
	border-bottom: 1px solid #e6eaf2;
}
.pb-guide-faq__item button {
	align-items: center;
	background: transparent;
	border: 0;
	color: #172033;
	cursor: pointer;
	display: flex;
	font-weight: 900;
	justify-content: space-between;
	padding: 14px 0;
	text-align: left;
	width: 100%;
}
.pb-guide-faq__item button:focus {
	outline: 2px solid #8b5cf6;
	outline-offset: 2px;
}
.pb-guide-faq__item div {
	color: #667085;
	padding-bottom: 14px;
}
.pb-guide-cards {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.pb-guide-card {
	background: #fff;
	border: 1px solid #e6eaf2;
	border-radius: 10px;
	color: #172033;
	display: grid;
	gap: 8px;
	overflow: hidden;
	padding: 14px;
	text-decoration: none;
}
.pb-guide-card img {
	aspect-ratio: 16 / 9;
	border-radius: 8px;
	object-fit: cover;
	width: 100%;
}
.pb-guide-card span,
.pb-guide-card em {
	color: #7c3aed;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
	text-transform: uppercase;
}
.pb-guide-card p {
	color: #667085;
	margin: 0;
}
.pb-guide-cta {
	background: linear-gradient(135deg, #7c3aed, #2563eb);
	border-radius: 12px;
	color: #fff;
	display: grid;
	gap: 10px;
	margin: 30px 0;
	padding: 24px;
}
.pb-guide-cta h2,
.pb-guide-cta p {
	color: #fff;
	margin: 0;
}
.pb-guide-cta a {
	background: #fff;
	border-radius: 8px;
	color: #1d4ed8;
	font-weight: 900;
	padding: 11px 15px;
	text-decoration: none;
	width: fit-content;
}
.pb-guide__header,
.pb-guide-toc,
.pb-guide-section,
.pb-guide-tips,
.pb-guide-cta {
	--pb-guide-navy: #101828;
	--pb-guide-text: #334155;
	--pb-guide-muted: #5f6f89;
	--pb-guide-border: #dfe7f3;
	--pb-guide-surface: #ffffff;
	--pb-guide-soft: #f8fafc;
	--pb-guide-purple: #8b5cf6;
	--pb-guide-blue: #2563eb;
	--pb-guide-green: #16a34a;
	--pb-guide-orange: #f97316;
	font-family: inherit;
}
.pb-guide__header {
	border-color: var(--pb-guide-border);
	border-radius: 10px;
	box-shadow: 0 10px 24px rgba(16, 24, 40, .05);
	gap: 12px;
	padding: clamp(20px, 3vw, 30px);
}
.pb-guide__intro {
	color: var(--pb-guide-text);
	max-width: 780px;
}
.pb-guide-toc {
	background: #f8fbff;
	border-color: var(--pb-guide-border);
	border-radius: 10px;
	padding: 18px 20px;
}
.pb-guide-toc a {
	color: var(--pb-guide-blue);
	font-weight: 750;
	text-decoration: none;
}
.pb-guide-toc a:hover {
	text-decoration: underline;
}
.entry-content h2[id],
.pb-guide-section h2[id] {
	scroll-margin-top: 110px;
}
.pb-guide-section {
	border-radius: 10px;
	box-shadow: none;
	gap: 18px;
	margin: 30px 0;
	padding: clamp(22px, 3vw, 32px);
}
.pb-guide-section h2 {
	font-size: clamp(22px, 2.4vw, 28px);
	font-weight: 900;
	letter-spacing: 0;
}
.pb-guide-section__intro {
	color: var(--pb-guide-muted);
	font-size: 16px;
	max-width: 850px;
}
.pb-guide-section__grid {
	gap: 14px;
	grid-template-columns: repeat(auto-fit, minmax(min(245px, 100%), 1fr));
}
.pb-guide-mini-card {
	align-content: start;
	background: rgba(255, 255, 255, .74);
	border-color: var(--pb-guide-border);
	border-radius: 9px;
	box-shadow: 0 1px 0 rgba(16, 24, 40, .03);
	gap: 12px;
	grid-template-columns: 40px 1fr;
	min-height: 100%;
	padding: 16px;
}
.pb-guide-mini-card h3 {
	font-size: 18px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.12;
	margin-bottom: 6px;
}
.pb-guide-mini-card p {
	color: var(--pb-guide-muted);
	font-size: 15px;
	line-height: 1.55;
}
.pb-guide-mini-card a {
	color: var(--pb-guide-blue);
	font-weight: 800;
	margin-top: 8px;
	width: fit-content;
}
.pb-guide-icon,
.pb-guide-step-number {
	border-radius: 9px;
	height: 38px;
	width: 38px;
}
.pb-guide-highlights {
	background: #fbf7ff;
	border-color: #e6d5ff;
}
.pb-guide-highlights .pb-guide-icon {
	background: #f0ddff;
	color: var(--pb-guide-purple);
}
.pb-guide-checklist {
	background: #f0fdf6;
	border-color: #aef1c6;
}
.pb-guide-checklist .pb-guide-section__grid {
	grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
}
.pb-guide-checklist .pb-guide-mini-card {
	background: rgba(255, 255, 255, .78);
	border-color: #d5f7df;
}
.pb-guide-checklist .pb-guide-icon {
	background: #d9fbe7;
	color: var(--pb-guide-green);
}
.pb-guide-steps {
	background: #eff6ff;
	border-color: #b9d7ff;
}
.pb-guide-steps .pb-guide-mini-card {
	background: rgba(255, 255, 255, .78);
	border-color: #d7e8ff;
}
.pb-guide-step-number {
	background: #d8eaff;
	color: var(--pb-guide-blue);
	font-size: 14px;
}
.pb-guide-tip {
	border-radius: 9px;
	box-shadow: 0 1px 0 rgba(16, 24, 40, .03);
	margin: 18px 0;
}
.pb-guide-tip .pb-guide-icon {
	flex: 0 0 38px;
}
.pb-guide-tip a {
	color: var(--pb-guide-blue);
	font-weight: 850;
}
.pb-guide-pros-cons {
	background: #fffdf7;
	border-color: #f2dfc0;
}
.pb-guide-pros-cons__grid {
	gap: 16px;
}
.pb-guide-pros-cons__grid > div {
	background: rgba(255, 255, 255, .78);
	border-radius: 9px;
	padding: 18px;
}
.pb-guide-pros-cons__grid > div:first-child {
	border-color: #c8f3d7;
}
.pb-guide-pros-cons__grid > div:last-child {
	border-color: #fed7aa;
}
.pb-guide-pros-cons h3 {
	color: var(--pb-guide-navy);
	margin: 0 0 12px;
}
.pb-guide-faq {
	background: #fff;
	border-color: var(--pb-guide-border);
	gap: 10px;
}
.pb-guide-faq__item {
	border: 0;
	border-top: 1px solid var(--pb-guide-border);
}
.pb-guide-faq__item:first-of-type {
	border-top: 0;
}
.pb-guide-faq__item button {
	color: var(--pb-guide-navy);
	font-size: 16px;
	padding: 16px 0;
}
.pb-guide-faq__item button span {
	align-items: center;
	background: #f1f5ff;
	border-radius: 999px;
	color: var(--pb-guide-blue);
	display: inline-flex;
	flex: 0 0 26px;
	height: 26px;
	justify-content: center;
	width: 26px;
}
.pb-guide-faq__item div {
	color: var(--pb-guide-muted);
	font-size: 16px;
	line-height: 1.65;
	padding: 0 38px 18px 0;
}
.pb-guide-events .pb-guide-link {
	color: var(--pb-guide-blue);
	font-weight: 900;
	width: fit-content;
}
.pb-guide-cards {
	gap: 16px;
}
.pb-guide-card {
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(16, 24, 40, .06);
	gap: 10px;
	padding: 16px;
	transition: transform .16s ease, box-shadow .16s ease;
}
.pb-guide-card:hover {
	box-shadow: 0 14px 30px rgba(16, 24, 40, .1);
	transform: translateY(-2px);
}
.pb-guide-cta {
	border-radius: 10px;
	box-shadow: 0 18px 35px rgba(37, 99, 235, .18);
	padding: clamp(24px, 3vw, 34px);
}
.pb-agenda-filters {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	margin-bottom: 16px;
}
.pb-agenda-filters input,
.pb-agenda-filters select {
	border: 1px solid var(--pb-line);
	border-radius: 8px;
	min-height: 42px;
	padding: 8px 10px;
}
.pb-filter-result {
	border-bottom: 1px solid var(--pb-line);
	color: var(--pb-ink);
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	text-decoration: none;
}
.pb-province-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pb-province-card {
	background: #fff;
	border: 1px solid var(--pb-line);
	border-radius: 8px;
	color: var(--pb-ink);
	display: grid;
	gap: 12px;
	min-height: 210px;
	overflow: hidden;
	padding: 20px;
	position: relative;
	text-decoration: none;
	transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.pb-province-card::before {
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
}
.pb-province-card:hover {
	border-color: #bfdbfe;
	box-shadow: 0 16px 34px rgba(23, 32, 51, .08);
	transform: translateY(-2px);
}
.pb-province-card__top {
	align-items: center;
	display: flex;
	justify-content: space-between;
}
.pb-province-card__count {
	background: #f8fafc;
	border: 1px solid #e6eaf2;
	border-radius: 999px;
	color: #344054;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	padding: 7px 10px;
}
.pb-province-card__icon {
	align-items: center;
	background: #f0f6ff;
	border-radius: 8px;
	color: var(--pb-blue);
	display: inline-flex;
	font-family: Outfit, Inter, sans-serif;
	font-size: 14px;
	font-weight: 900;
	height: 44px;
	justify-content: center;
	width: 44px;
}
.pb-province-card--1::before { background: #2563eb; }
.pb-province-card--1 .pb-province-card__icon { background: #eff6ff; color: #1d4ed8; }
.pb-province-card--2::before { background: #8b5cf6; }
.pb-province-card--2 .pb-province-card__icon { background: #f3e8ff; color: #6d28d9; }
.pb-province-card--3::before { background: #0891b2; }
.pb-province-card--3 .pb-province-card__icon { background: #ecfeff; color: #0e7490; }
.pb-province-card--4::before { background: #16a34a; }
.pb-province-card--4 .pb-province-card__icon { background: #f0fdf4; color: #15803d; }
.pb-province-card--5::before { background: #ea580c; }
.pb-province-card--5 .pb-province-card__icon { background: #fff7ed; color: #c2410c; }
.pb-province-card--6::before { background: #db2777; }
.pb-province-card--6 .pb-province-card__icon { background: #fdf2f8; color: #be185d; }
.pb-province-card__title,
.pb-province-detail h2 {
	font-family: Outfit, Inter, sans-serif;
	letter-spacing: 0;
}
.pb-province-card__title {
	display: block;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.12;
}
.pb-province-card__text,
.pb-province-detail p {
	color: var(--pb-muted);
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
}
.pb-province-card__cta {
	align-items: center;
	color: var(--pb-blue);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	gap: 6px;
	margin-top: auto;
}
.pb-province-detail {
	display: grid;
	gap: 16px;
}
.pb-province-detail__eyebrow {
	color: var(--pb-blue) !important;
	font-size: 12px !important;
	font-weight: 900;
	letter-spacing: 0;
	text-transform: uppercase;
}
.pb-province-detail h2 {
	font-size: 30px;
	line-height: 1.1;
	margin: 0;
}
@media (max-width: 720px) {
	.pb-agenda {
		background: transparent;
		border: 0;
		display: grid;
		gap: 12px;
	}
	.pb-agenda__head { display: none; }
	.pb-agenda__row {
		background: #fff;
		border: 1px solid var(--pb-line);
		border-radius: 8px;
		gap: 4px 12px;
		grid-template-columns: 70px 1fr;
		padding: 12px 14px;
	}
	.pb-agenda__event {
		gap: 2px;
		margin-bottom: 4px;
	}
	.pb-agenda__row > span:nth-child(3),
	.pb-agenda__row > span:nth-child(4),
	.pb-agenda__row > span:nth-child(5) {
		align-items: center;
		display: inline-flex;
		gap: 7px;
		grid-column: 2;
		line-height: 1.25;
		margin: 0;
	}
	.pb-agenda__row > span:nth-child(3)::before,
	.pb-agenda__row > span:nth-child(4)::before,
	.pb-agenda__row > span:nth-child(5):not(.pb-agenda__type)::before {
		align-items: center;
		background: #f0f6ff;
		border-radius: 7px;
		color: var(--pb-blue);
		display: inline-flex;
		flex: 0 0 22px;
		font-size: 13px;
		font-weight: 800;
		height: 22px;
		justify-content: center;
		width: 22px;
	}
	.pb-agenda__row > span:nth-child(3)::before {
		content: "⌖";
	}
	.pb-agenda__row > span:nth-child(4)::before {
		content: "◷";
	}
	.pb-agenda__row > span:nth-child(5):not(.pb-agenda__type)::before {
		content: "#";
	}
	.pb-agenda__type::before {
		flex: 0 0 22px;
		height: 22px;
		width: 22px;
	}
	.pb-agenda-filters { grid-template-columns: 1fr; }
	.pb-guide-items,
	.pb-guide-split,
	.pb-guide-pros-cons__grid {
		grid-template-columns: 1fr;
	}
	.pb-guide-block {
		padding: 16px;
	}
	.pb-province-grid {
		grid-template-columns: 1fr;
	}
	.pb-province-card {
		padding: 14px;
	}
	.pb-province-detail h2 {
		font-size: 24px;
	}
}

/* Gids & Info final visual system */
.pb-guide__header,
.pb-guide-toc,
.pb-guide-section,
.pb-guide-tips,
.pb-guide-cta,
.pb-guide-cards {
	--pb-guide-navy: #06132d;
	--pb-guide-text: #415273;
	--pb-guide-muted: #5e6f91;
	--pb-guide-line: #dce7f5;
	--pb-guide-purple: #933da0;
	--pb-guide-purple-soft: #fbf6ff;
	--pb-guide-purple-line: #dfc3ff;
	--pb-guide-blue: #2364db;
	--pb-guide-blue-soft: #eef6ff;
	--pb-guide-blue-line: #acd0ff;
	--pb-guide-green: #0fb45b;
	--pb-guide-green-soft: #effdf5;
	--pb-guide-green-line: #a7efc3;
	--pb-guide-orange: #e78026;
	font-family: Inter, system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.55;
}
.pb-guide__header *,
.pb-guide-toc *,
.pb-guide-section *,
.pb-guide-tips *,
.pb-guide-cta *,
.pb-guide-cards * {
	box-sizing: border-box;
}
.pb-guide__header h1,
.pb-guide__header h2,
.pb-guide-toc strong,
.pb-guide-section h2,
.pb-guide-section h3,
.pb-guide-tip h3,
.pb-guide-card strong,
.pb-guide-cta h2 {
	font-family: Outfit, Inter, system-ui, sans-serif;
	letter-spacing: 0;
}
.pb-guide__header {
	background: #fff;
	border: 1px solid var(--pb-guide-line);
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(6, 19, 45, .05);
	gap: 12px;
	margin: 0 0 28px;
	padding: 26px 30px;
}
.pb-guide__eyebrow {
	color: var(--pb-guide-purple);
	font-family: Inter, system-ui, sans-serif;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}
.pb-guide__intro {
	color: var(--pb-guide-text);
	font-size: 18px;
	line-height: 1.6;
	max-width: 860px;
}
.pb-guide__meta {
	color: var(--pb-guide-muted);
	font-size: 14px;
	font-weight: 800;
}
.pb-guide-toc {
	background: #f7fbff;
	border: 1px solid var(--pb-guide-line);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(6, 19, 45, .04);
	margin: 0 0 28px;
	padding: 18px 22px;
}
.pb-guide-toc strong {
	color: var(--pb-guide-navy);
	font-size: 20px;
}
.pb-guide-toc ul {
	display: grid;
	gap: 7px;
	margin-top: 10px;
}
.pb-guide-toc a {
	color: var(--pb-guide-purple);
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
}
.pb-guide-section {
	background: #fff;
	border: 1px solid var(--pb-guide-line);
	border-radius: 8px;
	box-shadow: 0 8px 22px rgba(6, 19, 45, .05);
	gap: 20px;
	margin: 32px 0;
	padding: 28px 32px 32px;
}
.pb-guide-highlights {
	background: var(--pb-guide-purple-soft);
	border-color: var(--pb-guide-purple-line);
}
.pb-guide-checklist {
	background: var(--pb-guide-green-soft);
	border-color: var(--pb-guide-green-line);
}
.pb-guide-steps {
	background: var(--pb-guide-blue-soft);
	border-color: var(--pb-guide-blue-line);
}
.pb-guide-pros-cons {
	background: #fffaf4;
	border-color: #f2d6b6;
}
.pb-guide-section h2 {
	color: var(--pb-guide-navy);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.15;
	margin: 0;
}
.pb-guide-section__intro {
	color: var(--pb-guide-text);
	font-size: 16px;
	line-height: 1.6;
	margin: -4px 0 0;
	max-width: 900px;
}
.pb-guide-section__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pb-guide-mini-card {
	align-content: start;
	background: rgba(255, 255, 255, .86);
	border: 1px solid var(--pb-guide-line);
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(6, 19, 45, .045);
	display: grid;
	gap: 14px;
	grid-template-columns: 40px 1fr;
	min-height: 100%;
	padding: 16px;
}
.pb-guide-mini-card h3 {
	color: #050b1d;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 7px;
}
.pb-guide-mini-card p {
	color: var(--pb-guide-text);
	font-size: 16px;
	line-height: 1.5;
	margin: 0;
}
.pb-guide-mini-card a {
	color: #0b63ff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 900;
	margin-top: 10px;
	text-decoration: underline;
	text-underline-offset: 2px;
}
.pb-guide-icon,
.pb-guide-step-number {
	align-items: center;
	border-radius: 8px;
	display: inline-flex;
	flex: 0 0 38px;
	height: 38px;
	justify-content: center;
	width: 38px;
}
.pb-guide-icon svg {
	height: 20px;
	width: 20px;
}
.pb-guide-highlights .pb-guide-icon {
	background: #efd8ff;
	color: #9d55ff;
}
.pb-guide-checklist .pb-guide-icon {
	background: #d8fbe7;
	color: var(--pb-guide-green);
}
.pb-guide-steps .pb-guide-mini-card {
	grid-template-columns: 40px 1fr;
}
.pb-guide-step-number {
	background: #d7eaff;
	color: #155ce8;
	font-family: Outfit, Inter, system-ui, sans-serif;
	font-size: 14px;
	font-weight: 900;
}
.pb-guide-pros-cons__grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pb-guide-pros-cons__grid > div {
	background: rgba(255, 255, 255, .88);
	border: 1px solid var(--pb-guide-line);
	border-radius: 8px;
	box-shadow: 0 6px 16px rgba(6, 19, 45, .045);
	padding: 18px;
}
.pb-guide-pros-cons__grid > div:first-child {
	border-color: #bcefd0;
}
.pb-guide-pros-cons__grid > div:last-child {
	border-color: #ffd7ae;
}
.pb-guide-pros-cons h3 {
	color: var(--pb-guide-navy);
	font-size: 22px;
	font-weight: 900;
	margin: 0 0 14px;
}
.pb-guide-pros-cons li {
	color: var(--pb-guide-text);
	font-size: 16px;
	line-height: 1.5;
}
.pb-guide-tips {
	gap: 14px;
	margin: 28px 0;
}
.pb-guide-tip {
	background: #fbf6ff;
	border: 1px solid var(--pb-guide-purple-line);
	border-left: 5px solid var(--pb-guide-purple);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(6, 19, 45, .045);
	padding: 16px 18px;
}
.pb-guide-tip h3 {
	color: var(--pb-guide-navy);
	font-size: 20px;
	font-weight: 900;
}
.pb-guide-tip p {
	color: var(--pb-guide-text);
	font-size: 16px;
	line-height: 1.55;
}
.pb-guide-faq {
	background: #fff;
	border-color: var(--pb-guide-line);
}
.pb-guide-faq__item {
	border-top: 1px solid var(--pb-guide-line);
}
.pb-guide-faq__item:first-of-type {
	border-top: 0;
}
.pb-guide-faq__item button {
	color: var(--pb-guide-navy);
	font-family: Outfit, Inter, system-ui, sans-serif;
	font-size: 18px;
	font-weight: 900;
	padding: 17px 0;
}
.pb-guide-faq__item div {
	color: var(--pb-guide-text);
	font-size: 16px;
	line-height: 1.65;
	padding: 0 44px 18px 0;
}
.pb-guide-cards {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.pb-guide-card {
	border-radius: 8px;
	box-shadow: 0 10px 24px rgba(6, 19, 45, .07);
	padding: 16px;
}
.pb-guide-cta {
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(147, 61, 160, .18);
	font-size: 16px;
	padding: 28px 32px;
}
.pb-guide-cta h2 {
	font-size: 28px;
	font-weight: 900;
}
@media (max-width: 1024px) {
	.pb-guide-section__grid,
	.pb-guide-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.pb-guide-section {
		padding: 24px;
	}
}
@media (max-width: 720px) {
	.pb-guide__header,
	.pb-guide-toc,
	.pb-guide-section,
	.pb-guide-tips,
	.pb-guide-cta,
	.pb-guide-cards {
		font-size: 14px;
	}
	.pb-guide-section__grid,
	.pb-guide-cards,
	.pb-guide-pros-cons__grid {
		grid-template-columns: 1fr;
	}
	.pb-guide-section {
		gap: 16px;
		margin: 22px 0;
		padding: 18px;
	}
	.pb-guide-section h2 {
		font-size: 21px;
	}
	.pb-guide-section__intro,
	.pb-guide-mini-card p,
	.pb-guide-tip p,
	.pb-guide-faq__item div,
	.pb-guide-pros-cons li {
		font-size: 14px;
	}
	.pb-guide-mini-card {
		grid-template-columns: 38px 1fr;
		padding: 14px;
	}
	.pb-guide-mini-card h3 {
		font-size: 19px;
	}
	.pb-guide-faq__item button {
		font-size: 16px;
	}
	.pb-guide-cta {
		padding: 22px;
	}
	.pb-guide-cta h2 {
		font-size: 23px;
	}
}

/* Gids & Info 1.2.4 corrections */
body .pb-guide-section .pb-guide-section__grid,
body .pb-guide-checklist.pb-guide-section .pb-guide-section__grid,
body .pb-guide-highlights.pb-guide-section .pb-guide-section__grid,
body .pb-guide-steps.pb-guide-section .pb-guide-section__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body .pb-guide-section .pb-guide-mini-card h3 {
	font-family: Outfit, Inter, system-ui, sans-serif !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	letter-spacing: 0 !important;
	line-height: 1.18 !important;
	margin: 0 0 8px !important;
}

body .pb-guide-tip {
	background: #fbf6ff !important;
	border: 1px solid #dfc3ff !important;
	border-left: 5px solid var(--pb-guide-purple) !important;
	border-radius: 8px !important;
	box-shadow: 0 12px 28px rgba(78, 34, 111, .08) !important;
}

body .pb-guide-tip--warning {
	background: #fff8ed !important;
	border-color: #ffd59f !important;
	border-left-color: #f59e0b !important;
}

body .pb-guide-tip--recommended {
	background: #f0fff7 !important;
	border-color: #a7efc5 !important;
	border-left-color: var(--pb-guide-green) !important;
}

body .pb-guide-faq {
	background: #fff !important;
	border: 1px solid var(--pb-guide-line) !important;
	border-radius: 8px !important;
	box-shadow: 0 10px 26px rgba(6, 19, 45, .055) !important;
	padding: 26px 28px !important;
}

body .pb-guide-faq__item {
	border-top: 1px solid var(--pb-guide-line) !important;
	margin: 0 !important;
}

body .pb-guide-faq__item:first-of-type {
	border-top: 0 !important;
}

body .pb-guide-faq__item button,
body .pb-guide-faq__item button:hover,
body .pb-guide-faq__item button:active,
body .pb-guide-faq__item button:focus {
	align-items: center !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--pb-guide-navy) !important;
	display: flex !important;
	font-family: Outfit, Inter, system-ui, sans-serif !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	gap: 16px !important;
	justify-content: space-between !important;
	line-height: 1.25 !important;
	margin: 0 !important;
	min-height: 64px !important;
	padding: 18px 0 !important;
	text-align: left !important;
	text-decoration: none !important;
	transform: none !important;
	width: 100% !important;
}

body .pb-guide-faq__item button span {
	align-items: center !important;
	background: #eef4ff !important;
	border-radius: 999px !important;
	color: #155ce8 !important;
	display: inline-flex !important;
	flex: 0 0 28px !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: 18px !important;
	font-weight: 900 !important;
	height: 28px !important;
	justify-content: center !important;
	line-height: 1 !important;
	width: 28px !important;
}

body .pb-guide-faq__item button[aria-expanded="true"] span {
	background: #e8ddff !important;
	color: var(--pb-guide-purple) !important;
}

body .pb-guide-faq__item div {
	color: var(--pb-guide-text) !important;
	font-family: Inter, system-ui, sans-serif !important;
	font-size: 16px !important;
	line-height: 1.65 !important;
	padding: 0 48px 22px 0 !important;
}

body .pb-guide-faq__item div p {
	margin: 0 0 12px !important;
}

@media (max-width: 1024px) {
	body .pb-guide-section .pb-guide-section__grid,
	body .pb-guide-checklist.pb-guide-section .pb-guide-section__grid,
	body .pb-guide-highlights.pb-guide-section .pb-guide-section__grid,
	body .pb-guide-steps.pb-guide-section .pb-guide-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 720px) {
	body .pb-guide-section .pb-guide-section__grid,
	body .pb-guide-checklist.pb-guide-section .pb-guide-section__grid,
	body .pb-guide-highlights.pb-guide-section .pb-guide-section__grid,
	body .pb-guide-steps.pb-guide-section .pb-guide-section__grid {
		grid-template-columns: 1fr !important;
	}

	body .pb-guide-section .pb-guide-mini-card h3,
	body .pb-guide-faq__item button {
		font-size: 17px !important;
	}

	body .pb-guide-faq {
		padding: 20px 18px !important;
	}

	body .pb-guide-faq__item div {
		font-size: 14px !important;
		padding-right: 0 !important;
	}
}
