/* ==========================================================================
   PCL Theme — main stylesheet
   Matched to the Adobe XD home artboard (1920px).
   ========================================================================== */

/* ---- Design tokens (from XD symbol library) --------------------------- */
:root {
	--pcl-red: #a01c18;
	--pcl-red-dark: #7a1511;
	--pcl-red-hover: #8b1814;
	--pcl-red-light: #ad706e;
	--pcl-gold: #cea149;
	--pcl-gold-dark: #a88236;
	--pcl-ink: #333333;
	--pcl-text: #333333;
	--pcl-muted: #707070;
	--pcl-bg: #ffffff;
	--pcl-bg-gray: #f4f4f4;
	--pcl-bg-gray-2: #f8f8f8;
	--pcl-border: #e2e2e2;
	--pcl-white: #ffffff;
	--pcl-faq-divider: #bbb;
	--pcl-admin-bar-h: 0px;
	--pcl-header-bar-h: 100px;
	--pcl-ticker-h: 60px;
	--pcl-header-total: calc(var(--pcl-admin-bar-h) + var(--pcl-header-bar-h) + var(--pcl-ticker-h));

	--pcl-container-max: 1315px;
	--pcl-container-pad: 40px;

	--pcl-radius: 0px;
	--pcl-radius-pill: 999px;

	--pcl-font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* ---- Reset / base ----------------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--pcl-header-total);
}

body {
	margin: 0;
	font-family: var(--pcl-font);
	font-size: 18px;
	line-height: 1.55;
	color: var(--pcl-text);
	background: var(--pcl-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* Push all content below the fixed header. */
	padding-top: var(--pcl-header-total);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--pcl-red);
	text-decoration: none;
	transition: color 0.2s ease;
}
a:hover {
	color: var(--pcl-red-dark);
}

h1,
h2,
h3,
h4 {
	color: var(--pcl-ink);
	line-height: 1.15;
	font-weight: 700;
	margin: 0;
}

p {
	margin: 0 0 1em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.pcl-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--pcl-ink);
	color: #fff;
	padding: 12px 16px;
	z-index: 9999;
}
.pcl-skip-link:focus {
	left: 0;
	color: #fff;
}

/* ---- Layout ----------------------------------------------------------- */
.pcl-container {
	width: 100%;
	max-width: var(--pcl-container-max);
	margin: 0 auto;
	padding: 0;
}

.pcl-section {
	padding: 60px 0 40px 0;
}
.page .pcl-section {
	padding: 0px 0 40px 0;
}
.page .pcl-container {
	padding: 0;
}
.pcl-container--comingup,
.page .pcl-container--comingup {
	padding-top: 73px;
	margin-bottom: 67px;
}
.pcl-divider--grey {
	width: 100%;
	height: 25px;
	background: linear-gradient(0deg, #f0f0f0 0%, #fff 100%);
}
.archive .pcl-section {
	padding: 40px 0 40px 0;
}
.page .pcl-section--gray,
.post-type-archive .pcl-section--gray {
	background: var(--pcl-bg-gray);
	padding-top: 80px;
}
.archive .pcl-events-section {
	padding-top: 0;
}
.archive .pcl-events-section .pcl-grid--3 {
	margin-top: 18px;
}
.archive .pcl-landing-header-section {
	padding-top: 0;
}
.archive .pcl-news-section {
	padding-top: 0;
}
.pcl-section--gray .pcl-section__title {
	padding-bottom: 24px;
}
.pcl-pilot-section .pcl-section__heading-row .pcl-section__title {
	padding-top: 0;
	padding-bottom: 0;
}
.pcl-section--gray.pcl-pilot-section {
	margin-top: 0;
	padding-top: 80px;
	padding-bottom: 30px;
}
.page .pcl-news-section {
	padding-top: 0;
	padding-bottom: 60px;
}
.pcl-news-section .pcl-section__title {
	padding-top: 0;
}
.pcl-section__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--pcl-ink);
	letter-spacing: -0.2px;
	padding-top: 13px;
	padding-bottom: 19px;
}
.pcl-section__heading-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 16px;
	flex-wrap: wrap;
}
.pcl-section__cta {
	display: flex;
	justify-content: center;
	margin: 80px 0;
}
.page .pcl-events-section,
.post-type-archive .pcl-events-section {
	padding-bottom: 0;
}

/* ---- Buttons ---------------------------------------------------------- */
.pcl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	font-weight: 700;
	font-size: 18px;
	line-height: 1;
	padding: 21px 0px;
	width: 313px;
	text-align: center;
	border-radius: var(--pcl-radius-pill);
	border: 0;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		transform 0.1s ease;
	text-decoration: none;
	letter-spacing: 0.2px;
}
.pcl-btn:hover {
	transform: translateY(-1px);
}

.pcl-btn--red {
	background: var(--pcl-red);
	color: #fff;
}
.pcl-btn--red:hover {
	background: var(--pcl-red-hover);
	color: #fff;
}

.pcl-btn--gold {
	background: var(--pcl-gold);
	color: #fff;
}
.pcl-btn--gold:hover {
	background: var(--pcl-gold-dark);
	color: #fff;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
/* Compensate for the 32px WP admin bar when logged in. */
.admin-bar {
	--pcl-admin-bar-h: 32px;
}
.admin-bar .pcl-site-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	.admin-bar {
		--pcl-admin-bar-h: 46px;
	}
	.admin-bar .pcl-site-header {
		top: 46px;
	}
}

.pcl-site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
}

.pcl-header-bar {
	background: var(--pcl-red);
	height: var(--pcl-header-bar-h);
	display: flex;
	align-items: center;
	transition: box-shadow 0.2s ease;
}
.pcl-site-header.is-scrolled .pcl-header-bar {
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.pcl-header-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

/* Logo */
.pcl-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex-shrink: 0;
}

/* Primary nav */
.pcl-primary-nav {
	margin-left: auto;
}
.pcl-primary-nav__list {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pcl-primary-nav__list a {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 0;
	position: relative;
}
.pcl-primary-nav__list a:hover {
	color: var(--pcl-gold);
}
.pcl-primary-nav__list .current-menu-item > a,
.pcl-primary-nav__list .current_page_item > a {
	color: var(--pcl-gold);
}

/* Mobile menu toggle */
.pcl-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.pcl-menu-toggle__bar {
	display: block;
	width: 24px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition:
		transform 0.2s,
		opacity 0.2s;
}
.pcl-menu-toggle[aria-expanded="true"] .pcl-menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.pcl-menu-toggle[aria-expanded="true"] .pcl-menu-toggle__bar:nth-child(2) {
	opacity: 0;
}
.pcl-menu-toggle[aria-expanded="true"] .pcl-menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Gold ticker sub-bar */
.pcl-ticker-bar {
	background: var(--pcl-gold);
	height: var(--pcl-ticker-h);
	display: flex;
	align-items: center;
}
.pcl-ticker-bar__inner {
	text-align: center;
}
.pcl-jumplinks__inner {
	display: flex;
	justify-content: center;
	gap: 30px;
}
.pcl-ticker-bar__link {
	display: inline-flex;
	align-items: center;
	gap: 0;
	color: #000;
	font-weight: 600;
	font-size: 18px;
	text-decoration: none;

	.pcl-ticker-bar__label {
		color: var(--pcl-text);
	}
}
.pcl-ticker-bar__link:hover {
	color: #000;
	color: var(--pcl-ink);
}
.pcl-ticker-arrow {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
	position: relative;
	top: -2px;
}
.pcl-ticker-bar__link .ticker-loc {
	color: var(--pcl-red);
}
.pcl-ticker-countdown {
	margin-left: 20px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--pcl-ink);
}
.pcl-ticker-countdown::before {
  content: " ";
}
/* ==========================================================================
   HERO
   ========================================================================== */
.pcl-hero {
	position: relative;
	overflow: hidden;
	background-color: #222;
	color: #fff;
	min-height: 560px;
	display: flex;
	align-items: center;
	padding: 80px 0;
	margin-bottom: 60px;
}
.pcl-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}
.pcl-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1;
}
.pcl-hero__inner {
	width: 100%;
	position: relative;
	z-index: 2;
	text-align: center;
}
.pcl-hero__content {
	max-width: 820px;
	margin: 0 auto;
}
.pcl-hero__title {
	font-size: clamp(48px, 6.8vw, 90px);
	font-weight: 700;
	line-height: 1.05;
	color: #fff;
	margin: 0 0 24px;
	letter-spacing: -0.8px;
}
.pcl-hero__copy {
	font-size: 20px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 600px;
	margin: 0 auto;
}

/* ==========================================================================
   GRIDS & CARDS
   ========================================================================== */
.pcl-grid {
	display: grid;
	gap: 40px 20px;
}
.pcl-grid--1 {
	grid-template-columns: 1fr;
}
.pcl-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}
.pcl-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}

.pcl-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	padding-bottom: 10px;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}
.pcl-card:hover {
	transform: translateY(-3px);
	color: inherit;
}
.pcl-card h3 {
	font-size: 30px;
	margin-bottom: 0;
	color: var(--pcl-red);
}
.pcl-grid--4 .pcl-card h3 {
	font-size: 30px;
}
.pcl-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #dcdcdc;
}
.pcl-card__body {
	padding: 15px 0 0 0;
}

.pcl-card__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 6px;
	line-height: 1.25;
}
.pcl-card__meta {
	font-size: 16px;
	color: var(--pcl-muted);
	margin: 0;
	line-height: 1.5;
}
.pcl-card__excerpt {
	font-size: 16px;
	color: var(--pcl-muted);
	margin: 6px 0 0;
}
.pcl-card--compact .pcl-card__image {
	aspect-ratio: 16 / 9;
}
.pcl-card.pcl-card--compact h3 {
	font-size: 22px;
	color: var(--pcl-ink);
}
.pcl-card__caption {
	font-size: 16px;
	line-height: 1.5;
	color: var(--pcl-text);
	margin: 0;
}

/* Event card (3-up) uses 424x304 image ratio */
.pcl-card--event .pcl-card__image {
	aspect-ratio: 16 / 9;
}

/* ==========================================================================
   LANDING PAGE HEADER SECTION (Why attend / Why exhibit)
   ========================================================================== */
.page .pcl-landing-header-section {
	padding-top: 0;
	padding-bottom: 76px;
}

.pcl-landing-header-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 32px;
	letter-spacing: 0.5px;
}

.pcl-feature-row {
	display: grid;
	grid-template-columns: 868px auto;
	gap: 40px;
	margin-bottom: 40px;
}
.pcl-feature-row:last-child {
	margin-bottom: 0;
}
.pcl-feature-row--reverse {
	grid-template-columns: 868px auto;
}

.pcl-feature-row__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #dcdcdc;
	border-radius: var(--pcl-radius);
}
.pcl-feature-row__content {
	position: relative;
	top: -6px;
	max-width: 440px;
}
.pcl-feature-row__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 20px;
	letter-spacing: -0.2px;
}
.pcl-feature-row__content p {
	font-size: 18px;
	line-height: 1.55;
	color: var(--pcl-text);
	margin: 0 0 14px;
}
.pcl-feature-row__content .pcl-btn {
	margin-top: 16px;
}

/* ==========================================================================
   HOW TO BE A PILOT — "FROM THE MAKERS OF FLYER"
   ========================================================================== */
.pcl-from-flyer {
	display: inline-flex;
	align-items: baseline;
	gap: 10px;
}
.pcl-from-flyer__label {
	font-size: 9px;
	font-weight: 600;
	letter-spacing: 1.2px;
	color: var(--pcl-muted);
	text-transform: uppercase;
	line-height: 1;
}
.pcl-from-flyer__logo {
	font-weight: 800;
	font-size: 22px;
	color: var(--pcl-ink);
	letter-spacing: -0.5px;
	font-style: italic;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.pcl-site-footer {
	background: var(--pcl-red);
	color: #fff;
	padding: 60px 0 50px;
}
.pcl-site-footer__inner {
	display: grid;
	grid-template-columns: 2.15fr 0.6fr 0.8fr;
	gap: 0px;
	align-items: start;
}
.pcl-site-footer__social {
	grid-template-columns: 3fr 2fr;
}
.pcl-logo--footer {
	margin-bottom: 34px;
}

.pcl-newsletter__title {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 10px;
	letter-spacing: -0.2px;
	line-height: 1.2;
}
.pcl-newsletter__copy {
	font-size: 18px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 25px;
}
.pcl-newsletter__form {
	display: flex;
	gap: 20px;
	max-width: 520px;
	margin-bottom: 40px;
	align-items: center;
}
.pcl-newsletter__form input[type="email"] {
	flex: 1;
	padding: 20px 30px;
	font-family: inherit;
	font-size: 14px;
	color: var(--pcl-ink);
	background: #fff;
	border: 0;
	border-radius: var(--pcl-radius-pill);
	outline: none;
	min-width: 0;
}
.pcl-newsletter__form input[type="email"]::placeholder {
	color: #2b2b2b;
}
.pcl-newsletter__form .pcl-btn {
	padding: 20px 60px;
	flex-shrink: 0;
	width: auto;

	color: #2b2b2b;
}
.pcl-newsletter__form .pcl-btn:disabled {
	opacity: 0.6;
	cursor: wait;
}

.pcl-newsletter__msg {
	font-size: 14px;
	line-height: 1.4;
	margin: -16px 0 20px;
	min-height: 20px;
}
.pcl-newsletter__msg:empty {
	display: none;
}
.pcl-newsletter__msg--ok {
	color: #a3e4a3;
}
.pcl-newsletter__msg--err {
	color: #ffb3b3;
}

.pcl-site-footer__meta {
	display: flex;
	align-items: baseline;
	gap: 16px;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
}
.pcl-seager {
	font-weight: 700;
	letter-spacing: 2.5px;
	font-size: 12px;
}

/* Footer link columns */
.pcl-site-footer__links {
	display: contents;
}
.pcl-footer-col__title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 17px;
}
.pcl-footer-col__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 17px;
}
.pcl-footer-col__list a {
	color: rgba(255, 255, 255, 0.9);
	font-size: 18px;
	text-decoration: none;
}
.pcl-footer-col__list a:hover {
	color: var(--pcl-gold);
}

/* Socials */
.pcl-socials {
	grid-column: 2 / 2;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.pcl-socials--inner {
	display: flex;
	gap: 20px;
}
.pcl-social {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}
.pcl-social:hover {
	background: #fff;
	color: var(--pcl-red);
	transform: translateY(-2px);
}
.pcl-social svg {
	width: 18px;
	height: 18px;
}

/* ==========================================================================
   STATIC PAGE / ARTICLE (generic WP content)
   ========================================================================== */
.pcl-article .pcl-section__title {
	margin-bottom: 20px;
}
.pcl-entry-content {
	font-size: 18px;
	line-height: 24px;
	color: var(--pcl-text);
	word-wrap: break-word;
	word-break: break-word;
}
.pcl-entry-content p {
	margin: 0 0 1em;
}
.pcl-entry-content h2 {
	font-size: 30px;
	font-weight: 700;
	margin: 1.5em 0 0.5em;
	color: var(--pcl-ink);
}
.pcl-entry-content h3 {
	font-size: 22px;
	font-weight: 700;
	margin: 1.4em 0 0.4em;
	color: var(--pcl-ink);
}
.pcl-entry-content h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 1.3em 0 0.3em;
	color: var(--pcl-ink);
}
.pcl-entry-content ul,
.pcl-entry-content ol {
	margin: 0 0 1em 1em;
	padding: 0;
}
.pcl-entry-content li {
	margin: 0 0 0.4em;
}
.pcl-entry-content img {
	border-radius: var(--pcl-radius);
	margin: 1em 0;
}
.pcl-responsive-embed {
	position: relative;
	width: 100%;
}
.pcl-responsive-embed iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
.pcl-entry-content iframe {
	max-width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
.wp-video,
.pcl-entry-content .wp-video {
	width: 100% !important;
	max-width: 100% !important;
}
.wp-video video {
	width: 100%;
	height: auto;
}
.pcl-entry-content blockquote {
	border-left: 3px solid var(--pcl-gold);
	margin: 1.2em 0;
	padding: 0.2em 0 0.2em 1.2em;
	color: var(--pcl-ink);
	font-style: italic;
}
.pcl-entry-content a {
	color: var(--pcl-red);
}
.wp-video {
	margin-bottom: 20px;
}
/* Standalone h2 used outside pcl-entry-content (schedule/exhibitors/venue headings). */
.pcl-entry-heading {
	font-size: 30px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 48px 0 16px;
	letter-spacing: -0.2px;
}
.pcl-entry-heading--accent {
	color: var(--pcl-red);
}

/* ==========================================================================
   INNER PAGE HERO — shared across Event / Events / Why-attend / Why-exhibit / FAQs / Standard / single CPTs
   Matches XD layout: breadcrumb 14px, title 50px bold, 18px summary, flush-left under ticker bar.
   ========================================================================== */
.pcl-page-hero {
	padding: 40px 0 25px;
	background: #fff;
}
.pcl-page-hero__breadcrumb {
	font-size: 14px;
	color: var(--pcl-muted);
	margin: 0 0 20px;
}
.pcl-page-hero__breadcrumb a {
	color: var(--pcl-muted);
	text-decoration: none;
}
.pcl-page-hero__breadcrumb a:hover {
	color: var(--pcl-red);
}
.pcl-page-hero__title {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.05;
	color: var(--pcl-ink);
	margin: 0 0 15px;
	letter-spacing: -0.5px;
}
.page-template-page-awards .pcl-page-hero__title {
	max-width: 650px;
}
.pcl-page-hero__subtitle {
	font-size: 20px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 8px;
}
.pcl-page-hero__summary {
	font-size: 22px;
	line-height: 34px;
	color: var(--pcl-text);
	margin: 0;
}

/* ==========================================================================
   WITH-SIDEBAR LAYOUT — Why attend / Why exhibit / FAQs / pilot path
   Main column + right "Coming up" events sidebar (313px wide cards).
   ========================================================================== */
.pcl-layout--with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 868px) 313px;
	gap: 113px;
	/* No align-items: start — sidebar column must stretch full height so the
	   inner aside can be position: sticky and travel with the scroll. */
}
.pcl-layout__main > *:first-child {
	margin-top: 0;
}
.page .pcl-events-sidebar {
	padding-top: 80px;
}
/* .pcl-events-sidebar {
	position: sticky;
	top: calc(var(--pcl-header-total) + 40px);
} */

.pcl-sidebar__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 24px;
	letter-spacing: -0.2px;
}
.pcl-sidebar__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.pcl-sidebar__event {
	display: block;
	text-decoration: none;
	color: inherit;
}
.pcl-sidebar__event:hover {
	color: inherit;
}
.pcl-sidebar__event:hover .pcl-sidebar__event-image {
	transform: translateY(-2px);
}
.pcl-sidebar__event-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #dcdcdc;
	border-radius: var(--pcl-radius);
	transition: transform 0.25s ease;
}
.pcl-sidebar__event-caption {
	font-size: 16px;
	line-height: 1.5;
	color: var(--pcl-text);
	margin: 10px 0 0;
}
.page-template-page-awards .pcl-layout__sidebar {
	font-size: 16px;
}
.awards-bold-list {
	padding-left: 20px;
	font-weight: bold;
	line-height: 24px;
}
.awards-bold-list li span {
	font-weight: normal;
}

/* ==========================================================================
   FAQ (accordion-like)
   ========================================================================== */
.pcl-faqs__section-title {
	font-size: 26px;
	font-weight: 700;
	color: var(--pcl-red);
	margin: 40px 0 0;
}
.pcl-faqs__section-title:first-child {
	margin-top: 0;
}
.pcl-faqs {
	margin: 0;
	padding: 0;
}
.pcl-faq {
	padding: 20px 0;
	border-bottom: 1px solid var(--pcl-faq-divider);
}
.pcl-faq__question {
	font-size: 18px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: baseline;
}
.pcl-faq__question::-webkit-details-marker {
	display: none;
}
.pcl-faq__question::after {
	content: "+";
	font-size: 24px;
	font-weight: 400;
	color: var(--pcl-red);
	line-height: 1;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}
.pcl-faq[open] .pcl-faq__question::after {
	transform: rotate(45deg);
}
.pcl-faq__answer {
	font-size: 18px;
	line-height: 1.6;
	color: var(--pcl-text);
	margin: 12px 0 0;
}

/* ==========================================================================
   EXHIBITOR GRID (single event page)
   ========================================================================== */
.pcl-exhibitor-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px 20px;
	margin: 24px 0 36px;
	overflow: hidden;
	transition: max-height 0.4s ease;
}
.pcl-exhibitor-grid--collapsed {
	max-height: 140px;
}
.pcl-exhibitor-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 140px;
	gap: 10px;
	color: var(--pcl-text);
	font-size: 18px;
	text-decoration: none;
}
.pcl-exhibitor-card:hover {
	border-color: var(--pcl-red);
}
.pcl-exhibitor-card__logowrap {
	border: 1px solid var(--pcl-muted);
	width: 202px;
	height: 113px;
}
.pcl-exhibitor-card__logo {
	max-width: 200px;
	max-height: 111px;
	width: auto;
	height: auto;
	margin: auto auto;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.pcl-exhibitor-card__name {
	font-size: 14px;
	font-weight: bold;
	line-height: 1.3;
	color: var(--pcl-text);
}
.pcl-exhibitor-card__tagline {
	font-size: 13px;
	line-height: 1.4;
	color: var(--pcl-red-light);
}

/* ==========================================================================
   AWARDS — side-by-side rows (image left, content right)
   ========================================================================== */
.pcl-award-row {
	display: flex;
	gap: 20px;
	margin-top: 40px;
}
.pcl-award-row__image {
	flex: 0 0 424px;
	height: 304px;
	background-size: cover;
	background-position: center;
}
.pcl-award-row__content {
	flex: 1;
	min-width: 0;
}
.pcl-award-row__title {
	font-size: 30px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 12px;
}
.pcl-award-row__text {
	font-size: 18px;
	line-height: 1.65;
	color: var(--pcl-text);
}
.pcl-award-row__text p:last-child {
	margin-bottom: 0;
}
@media (max-width: 768px) {
	.pcl-award-row {
		flex-direction: column;
		gap: 20px;
	}
	.pcl-award-row__image {
		flex: none;
		width: 100%;
		height: 0;
		padding-top: 71.7%;
	}
}

/* ==========================================================================
   EVENT CONTENT BLOCKS — shared wrapper for each section on the event page
   ========================================================================== */
.pcl-event-block {
	margin-top: 48px;
}
.pcl-event-block__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 8px;
}
.pcl-event-block__title--red {
	color: var(--pcl-red);
}
.pcl-event-block__title--large {
	font-size: 30px;
	margin-bottom: 24px;
}
.pcl-event-block__intro {
	font-size: 18px;
	line-height: 1.6;
	color: var(--pcl-text);
	margin: 0 0 28px;
}

/* ==========================================================================
   EVENT HERO IMAGE
   ========================================================================== */
/* Tighter top padding on single event so the sidebar starts level with the header. */
.pcl-section--event {
	padding-top: 32px;
}

.pcl-event-header {
	margin: 0 0 50px;
}

.pcl-event-hero-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #dcdcdc;
	border-radius: var(--pcl-radius);
	margin: 0 0 50px;
}

/* ==========================================================================
   EVENT PHOTO GALLERY STRIP (horizontal scroll)
   ========================================================================== */
.pcl-event-gallery {
	margin-top: 48px;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0;
}
.pcl-event-gallery__arrow {
	background: none;
	color: var(--pcl-red);
	cursor: pointer;
	padding: 0;
	position: absolute;
	top: calc(50% - 24px);
	width: 24px;
	height: 40px;
	border: none;
}
.pcl-event-gallery__arrow--prev {
	left: -40px;
}
.pcl-event-gallery__arrow--next {
	right: -40px;
	transform: rotateY(180deg);
}

.pcl-event-gallery__arrow svg {
	width: 100%;
	height: 100%;
	fill: #a01c18;
}
.pcl-event-gallery__arrow:hover {
	color: var(--pcl-red-dark);
}
.pcl-event-gallery__track {
	flex: 1;
	min-width: 0;
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.pcl-event-gallery__track::-webkit-scrollbar {
	display: none;
}
.pcl-event-gallery__item {
	width: 313px;
	flex-shrink: 0;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	background-color: #dcdcdc;
	border-radius: var(--pcl-radius);
	scroll-snap-align: start;
	cursor: pointer;
}
@media (max-width: 768px) {
	.pcl-event-gallery {
		padding: 0 32px;
	}
	.pcl-event-gallery__arrow--prev {
		left: 0;
	}
	.pcl-event-gallery__arrow--next {
		right: 0;
	}
	.pcl-event-gallery__item {
		width: auto;
		flex: 0 0 calc((100% - 20px) / 2);
	}
}
@media (max-width: 480px) {
	.pcl-event-gallery__item {
		flex: 0 0 85%;
	}
}

.wp-block-gallery img,
.gallery img {
	cursor: pointer;
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.pcl-lightbox {
	position: fixed;
	inset: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.25s ease,
		visibility 0.25s ease;
}
.pcl-lightbox[aria-hidden="false"] {
	opacity: 1;
	visibility: visible;
}
.pcl-lightbox__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
}
.pcl-lightbox__img {
	position: relative;
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	z-index: 1;
}
.pcl-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	z-index: 2;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	padding: 8px;
}
.pcl-lightbox__close:hover {
	color: var(--pcl-red-light);
}
.pcl-lightbox__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background: none;
	border: none;
	cursor: pointer;
	padding: 16px;
	width: 56px;
	height: 56px;
}
.pcl-lightbox__nav svg {
	width: 100%;
	height: 100%;
}
.pcl-lightbox__nav--prev {
	left: 16px;
}
.pcl-lightbox__nav--next {
	right: 16px;
	transform: translateY(-50%) rotateY(180deg);
}
.pcl-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	color: #fff;
	font-size: 14px;
	letter-spacing: 1px;
}

/* ==========================================================================
   SCHEDULE LIST — teal timeline (single event page)
   ========================================================================== */
.pcl-schedule {
	margin: 0;
	padding: 0;
	list-style: none;
}

.pcl-schedule__item {
	position: relative;
	padding: 30px;
	border: 1px solid #707070;
	margin-bottom: 40px;
}
.pcl-schedule__item:last-child {
}

.pcl-schedule__title {
	font-size: 22px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 0 0 8px;
	line-height: 1.25;
}
.pcl-schedule__body {
	font-size: 18px;
	line-height: 24px;
	color: var(--pcl-text);
	margin: 0;
}
.pcl-schedule__item--has-image {
	display: flex;
	gap: 0 20px;
}
.pcl-schedule__item--has-image .pcl-schedule__content {
}
.pcl-schedule__item--has-image .pcl-schedule__image {
	width: 283px;
	flex-shrink: 0;
}
.pcl-schedule__image img {
	width: 283px;
	height: auto;
}
@media (max-width: 600px) {
	.pcl-schedule__item--has-image {
		grid-template-columns: auto 1fr;
	}
	.pcl-schedule__item--has-image .pcl-schedule__image {
		grid-column: 1 / -1;
		grid-row: 2;
		margin-top: 12px;
	}
	.pcl-schedule__image img {
		width: 100%;
		max-width: 240px;
	}
}

/* ==========================================================================
   EVENT DETAILS SIDEBAR (single event page)
   No card border — plain stacked text matching the XD layout.
   ========================================================================== */
.pcl-event-sidebar {
	position: sticky;
	top: calc(var(--pcl-header-total) + 78px);
	margin-top: -8px;
}

/* Sidebar info lines — stacked 16px text below the Get tickets button */
.pcl-event-sidebar__info {
	margin-top: 20px;
}
.pcl-event-sidebar__line {
	font-size: 16px;
	line-height: 1.6;
	color: var(--pcl-text);
	margin: 0;
}
.pcl-event-sidebar__line--price {
	font-weight: 700;
	color: var(--pcl-ink);
}

/* Buttons */
.pcl-btn--block {
	display: block;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.pcl-event-sidebar .pcl-btn--block {
	margin-top: 12px;
}
.pcl-event-sidebar .pcl-btn--block:first-of-type {
	margin-top: 0;
}

/* "Get tickets" hover matches XD hover swatch #AD706E */
.pcl-event-sidebar .pcl-btn--red:hover {
	background: #ad706e;
}

/* Share trigger — sits bottom-right of the event header */
.pcl-event-header {
	position: relative;
}
.pcl-share-wrap {
	position: absolute;
	bottom: 0;
	right: 0;
}
.pcl-share-trigger {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	padding: 0;
	font-family: inherit;
	font-size: 14px;
	color: var(--pcl-muted);
	cursor: pointer;
	transition: color 0.2s;
	white-space: nowrap;
}
.pcl-share-trigger:hover,
.pcl-share-trigger[aria-expanded="true"] {
	color: var(--pcl-red);
}
.pcl-share-trigger__text {
	font-weight: 400;
}
.pcl-share-trigger__icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* Share popup */
.pcl-share-popup {
	display: none;
	position: absolute;
	bottom: calc(100% + 10px);
	right: 0;
	z-index: 100;
	background: #fff;
	border-radius: var(--pcl-radius);
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
	padding: 16px 20px;
	min-width: 200px;
	animation: pclShareFadeIn 0.18s ease;
}
.pcl-share-popup.is-open {
	display: block;
}
@keyframes pclShareFadeIn {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.pcl-share-popup__label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--pcl-muted);
	margin: 0 0 12px;
}
.pcl-share-popup__links {
	display: flex;
	gap: 10px;
}
.pcl-share-popup__links a {
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	background: var(--pcl-bg-gray);
	border-radius: 50%;
	color: var(--pcl-ink);
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}
.pcl-share-popup__links a:hover {
	background: var(--pcl-red);
	color: #fff;
}
.pcl-share-popup__links svg {
	width: 16px;
	height: 16px;
}

/* ==========================================================================
   VENUE BLOCK (single event page) — photo + map left, details right
   ========================================================================== */
.pcl-venue {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}
.pcl-venue__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.pcl-venue__photo {
	width: 100%;
	height: auto;
	border-radius: var(--pcl-radius);
	display: block;
}
.pcl-venue__label {
	font-size: 18px;
	font-weight: 700;
	color: var(--pcl-ink);
	margin: 20px 0 4px;
}
.pcl-venue__label:first-child {
	margin-top: 0;
}
.pcl-venue__value {
	font-size: 18px;
	line-height: 1.6;
	color: var(--pcl-text);
	margin: 0;
}
.pcl-venue__map-wrap {
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--pcl-radius);
	overflow: hidden;
}
.pcl-venue__map {
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: var(--pcl-radius);
	display: block;
}

/* ==========================================================================
   ARCHIVE/LISTING UTILITIES
   ========================================================================== */
.pcl-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.pcl-archive-grid--4 {
	grid-template-columns: repeat(4, 1fr);
}
.pcl-pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 48px;
	font-size: 16px;
}
.pcl-pagination .page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--pcl-border);
	border-radius: var(--pcl-radius);
	color: var(--pcl-ink);
	text-decoration: none;
}
.pcl-pagination .page-numbers:hover {
	border-color: var(--pcl-red);
	color: var(--pcl-red);
}
.pcl-pagination .page-numbers.current {
	background: var(--pcl-red);
	border-color: var(--pcl-red);
	color: #fff;
}

/* ==========================================================================
   RESPONSIVE — inner page helpers
   ========================================================================== */
@media (max-width: 1100px) {
	.pcl-layout--with-sidebar {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	.pcl-exhibitor-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.pcl-archive-grid,
	.pcl-archive-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.pcl-venue {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 900px) {
	.pcl-page-hero {
		padding: 20px 0 14px;
	}
	.pcl-page-hero__title {
		font-size: 36px;
	}
	.pcl-exhibitor-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.pcl-event-sidebar {
		position: static;
	}
	.pcl-schedule--timeline {
		padding-left: 32px;
	}
}
@media (max-width: 560px) {
	.pcl-page-hero__title {
		font-size: 30px;
	}
	.pcl-share-wrap {
		position: static;
		margin-top: 8px;
	}
	.pcl-share-popup {
		right: auto;
		left: 0;
		bottom: auto;
		top: calc(100% + 8px);
	}
	.pcl-archive-grid,
	.pcl-archive-grid--4 {
		grid-template-columns: 1fr;
	}
	.pcl-exhibitor-grid {
		grid-template-columns: 1fr;
	}
	.pcl-schedule--timeline {
		padding-left: 0;
	}
	.pcl-schedule--timeline::before {
		display: none;
	}
	.pcl-schedule--timeline .pcl-schedule__item::before {
		display: none;
	}
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
	.pcl-grid--4 {
		grid-template-columns: repeat(2, 1fr);
	}
	.pcl-feature-row,
	.pcl-feature-row--reverse {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.pcl-feature-row__content {
		max-width: none;
	}
	.pcl-site-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
	.pcl-socials {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	:root {
		--pcl-header-bar-h: 64px;
		--pcl-ticker-h: 0px;
	}
	.pcl-ticker-bar {
		display: none;
	}

	.pcl-menu-toggle {
		display: inline-flex;
		align-items: center;
		margin-left: auto;
	}
	.pcl-primary-nav__list {
		position: fixed;
		top: var(--pcl-header-total);
		left: 0;
		right: 0;
		background: var(--pcl-red);
		flex-direction: column;
		gap: 0;
		padding: 16px 0;
		max-height: calc(100vh - var(--pcl-header-total));
		overflow-y: auto;
		transform: translateY(-12px);
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.2s ease,
			opacity 0.2s ease;
		border-top: 1px solid rgba(255, 255, 255, 0.15);
	}
	.pcl-primary-nav.is-open .pcl-primary-nav__list {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.pcl-primary-nav__list li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}
	.pcl-primary-nav__list a {
		display: block;
		padding: 14px 32px;
		width: 100%;
	}

	.pcl-logo__img {
		height: 45px;
		width: 504px;
	}

	.pcl-grid--3,
	.pcl-grid--4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	.pcl-hero {
		min-height: 420px;
		padding: 60px 0;
	}
	.pcl-section {
		padding: 56px 0;
	}
	.pcl-section__title {
		font-size: 22px;
	}

	.pcl-site-footer__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.pcl-newsletter__form {
		max-width: 100%;
	}
}

@media (max-width: 560px) {
	:root {
		--pcl-container-pad: 20px;
	}

	.single-pcl_event {
		padding-bottom: 60px;
	}
	.pcl-grid--3,
	.pcl-grid--4 {
		grid-template-columns: 1fr;
	}
	.pcl-hero__title {
		font-size: 38px;
	}
	.pcl-section__heading-row {
		flex-direction: column;
		align-items: flex-start;
	}
	.pcl-newsletter__form {
		flex-direction: column;
		align-items: stretch;
	}
	.pcl-newsletter__form .pcl-btn {
		width: 100%;
	}
	..pcl-header-bar__inner {
		gap: 20px;
	}
	.pcl-logo__img {
		height: auto;
		width: 270px;
	}

	.pcl-socials--inner {
		flex-wrap: nowrap;
		gap: 10px;
		order: 2;
		flex-basis: 100%;
		margin-top: 20px;
	}
	.pcl-socials img {
		order: 1;

		margin-bottom: 20px;
	}
	.pcl-socials {
		display: flex;
		padding-top: 30px;
		flex-wrap: wrap;
	}
	.pcl-page-hero .pcl-container {
		padding: 0;
	}
	.page .pcl-container,
	.single .pcl-container,
	.archive .pcl-container {
		padding: 0 var(--pcl-container-pad);
	}
	.pcl-container.pcl-container--comingup,
	.page .pcl-container--comingup {
		padding: 30px var(--pcl-container-pad);
	}

	.page header .pcl-container {
		padding: 0;
	}
	.get-tickets__button {
		position: fixed;
		bottom: 0px;
		left: 0;
		background: #fff;
		padding: 20px 20px;
		width: 100%;
		box-sizing: border-box;
	}
	.pcl-site-footer__meta {
		order: 2;
		padding-top: 0;
		padding-bottom: 0px;
	}
	.p .get-tickets__button > button {
	}

	.pcl-exhibitor-card {
		align-items: center;
	}
	.pcl-schedule {
	}
	.pcl-schedule li {
		flex-direction: column;
	}
	.pcl-schedule__item--has-image .pcl-schedule__image {
		width: 100%;
		margin-bottom: 20px;
	}
	.pcl-schedule {
	}
	.pcl-event-gallery {
		padding: 0;
	}
	.pcl-event-gallery__arrow svg {
		fill: #fff;
	}
}

.alignleft {
	float: left;
	clear: left;
}

.pcl-entry-content img.alignleft {
	margin-right: 20px;
}
