/**
 * EB ProClass Classes
 *
 * Complete replacement for the legacy index.css. Same visual concept — Inter
 * caps for headings, teal actions, an orange search button, bordered listing
 * rows, an image-led detail panel — rebuilt on tokens and fluid layout.
 *
 * Every colour, font and measurement is a custom property, so retheming means
 * editing the block below rather than hunting through the file.
 */

.eb-proclass {
	/* Brand */
	--pc-teal: #398199;
	--pc-orange: #f49358;

	/* Ink */
	--pc-ink: #222;
	--pc-body: #444;
	--pc-muted: #6f6f6f;

	/* Surfaces */
	--pc-surface: #fff;
	--pc-surface-alt: #f6f6f6;
	--pc-line: #e3e3e3;
	--pc-line-strong: #d1d1d1;

	/* Status */
	--pc-status-open: #2f6b7f;
	--pc-status-low: #a35a00;
	--pc-status-full: #b3261e;

	/* Filter bar — assumes it sits on a dark section, as it does today.
	   For a light background set --pc-bar-ink: var(--pc-ink). */
	--pc-bar-ink: #fff;
	--pc-bar-bg: transparent;

	/* Type */
	--pc-font-body: quasimoda, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pc-font-display: inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pc-font-copy: "DM Sans", dm-sans, var(--pc-font-body);

	/* Shape */
	--pc-radius: 3px;
	--pc-gap: 20px;
	/* Width and gutters are the site's job — this block adds none. */
	font-family: var(--pc-font-body);
	color: var(--pc-body);
}

.eb-proclass *,
.eb-proclass *::before,
.eb-proclass *::after {
	box-sizing: border-box;
}

/* ============================================================ Filter bar */

.eb-pc-form {
	background: var(--pc-bar-bg);
	margin-bottom: 2rem;
}

.eb-pc-bar-inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px var(--pc-gap);
	align-items: end;
}

.eb-pc-cell {
	min-width: 0;
}

.eb-pc-label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--pc-bar-ink);
}

.eb-pc-label small {
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	opacity: 0.75;
}

.eb-proclass select,
.eb-proclass input[type="search"],
.eb-proclass input[type="text"] {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: var(--pc-radius);
	background: var(--pc-surface);
	color: var(--pc-ink);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.2;
}

.eb-proclass select {
	padding-right: 38px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23222' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
}

.eb-proclass select:hover,
.eb-proclass input[type="search"]:hover {
	border-color: var(--pc-teal);
}

/* Search + reset sit together on the same baseline as the fields. */
.eb-pc-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.eb-pc-submit {
	height: 44px;
	padding: 0 26px;
	border: 0;
	border-radius: var(--pc-radius);
	background: var(--pc-orange);
	color: #fff;
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease;
}

.eb-pc-submit:hover,
.eb-pc-submit:focus-visible {
	background: var(--pc-ink);
}

.eb-pc-reset,
.eb-pc-more {
	color: #fff !important;
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	padding-bottom: 2px;
	transition: border-color 0.2s ease;
}

.eb-pc-reset:hover,
.eb-pc-more:hover {
	border-bottom-color: currentColor;
}

.eb-pc-advanced {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 14px var(--pc-gap);
}

.eb-pc-extra {
	grid-column: 1 / -1;
}

.eb-pc-is-hidden {
	display: none;
}

/* ---------------------------------------------- Searchable select (combo) */

.eb-pc-combo {
	position: relative;
}

/* The native select stays in the form, so it still submits without JS. */
.eb-pc-native-select {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

.eb-pc-combo-input {
	width: 100%;
	padding-right: 38px !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 13px center;
	cursor: text;
}

.eb-pc-combo.has-value .eb-pc-combo-input {
	font-weight: 600;
}

.eb-pc-combo-list {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 20;
	max-height: 280px;
	margin: 0;
	padding: 4px;
	overflow-y: auto;
	overscroll-behavior: contain;
	list-style: none;
	background: var(--pc-surface);
	border: 1px solid var(--pc-line-strong);
	border-radius: var(--pc-radius);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.eb-pc-combo-list[hidden] {
	display: none;
}

.eb-pc-combo-option {
	padding: 9px 12px;
	border-radius: var(--pc-radius);
	font-size: 15px;
	color: var(--pc-ink);
	cursor: pointer;
}

.eb-pc-combo-option:hover,
.eb-pc-combo-option.is-active {
	background: var(--pc-surface-alt);
}

.eb-pc-combo-option[aria-selected="true"] {
	background: var(--pc-teal);
	color: #fff;
}

.eb-pc-combo-empty {
	padding: 12px;
	font-size: 14px;
	color: var(--pc-muted);
}

/* ============================================================== Results */

.eb-pc-count {
	margin: 0 0 12px;
	font-size: 13px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.eb-pc-list {
	position: relative;
	border-top: 1px solid var(--pc-line);
}

.eb-proclass.is-loading .eb-pc-list {
	opacity: 0.4;
	transition: opacity 0.15s ease;
}

.eb-pc-open {
	display: block;
	text-decoration: none;
	color: inherit;
}

.eb-pc-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 18px;
	margin: 0 -12px;
	padding: 20px 34px 20px 12px;
	border-bottom: 1px solid var(--pc-line);
	border-left: 3px solid transparent;
	cursor: pointer;
	transition: background 0.2s ease, border-left-color 0.2s ease;
}

.eb-pc-body {
	flex: 1;
	min-width: 0;
}

.eb-pc-open:hover .eb-pc-card,
.eb-pc-open:focus-visible .eb-pc-card {
	background: var(--pc-surface-alt);
	border-left-color: var(--pc-teal);
}

/* Replaces the hover PNG: a "+" drawn in CSS, so it costs no request. */
.eb-pc-card::after {
	content: "";
	position: absolute;
	top: 26px;
	right: 16px;
	width: 18px;
	height: 18px;
	background:
		linear-gradient(var(--pc-teal), var(--pc-teal)) center / 100% 2px no-repeat,
		linear-gradient(var(--pc-teal), var(--pc-teal)) center / 2px 100% no-repeat;
	opacity: 0;
	transform: rotate(-90deg);
	transition: opacity 0.2s ease, transform 0.25s ease;
}

.eb-pc-open:hover .eb-pc-card::after,
.eb-pc-open:focus-visible .eb-pc-card::after {
	opacity: 1;
	transform: rotate(0deg);
}

/* The date block the client asked for: month over day, with the end date
   underneath when a class recurs rather than running once. */
.eb-pc-datebox {
	flex: none;
	width: 62px;
	text-align: center;
	background: var(--pc-surface-alt);
	border-radius: var(--pc-radius);
	padding: 8px 4px;
}

.eb-pc-date-start {
	display: block;
	line-height: 1;
}

.eb-pc-date-month {
	display: block;
	font-family: var(--pc-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.eb-pc-date-day {
	display: block;
	margin-top: 3px;
	font-family: var(--pc-font-display);
	font-size: 26px;
	font-weight: 400;
	color: var(--pc-ink);
}

.eb-pc-date-end {
	display: block;
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px solid var(--pc-line);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--pc-muted);
	white-space: nowrap;
}

.eb-pc-title {
	margin: 0 0 5px;
	font-family: var(--pc-font-display);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--pc-ink);
}

.eb-pc-code {
	display: inline-block;
	margin-right: 8px;
	padding: 2px 7px;
	border: 1px solid var(--pc-line-strong);
	border-radius: var(--pc-radius);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--pc-muted);
	vertical-align: 2px;
}

/* Metadata reads as separated items rather than a run-on sentence. */
.eb-pc-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 14px;
	margin: 0;
	font-size: 14px;
	color: var(--pc-muted);
}

.eb-pc-meta > * + *::before {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin-right: 14px;
	border-radius: 50%;
	background: var(--pc-line-strong);
	vertical-align: middle;
}

.eb-pc-teacher {
	color: var(--pc-body);
}

.eb-pc-schedule {
	color: var(--pc-muted);
}

.eb-pc-times {
	font-variant-numeric: tabular-nums;
}

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

.eb-pc-badge {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-family: var(--pc-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
}

.eb-pc-badge[data-state="available"] {
	background: rgba(57, 129, 153, 0.12);
	color: var(--pc-status-open);
}

.eb-pc-badge[data-state="low"] {
	background: rgba(244, 147, 88, 0.18);
	color: var(--pc-status-low);
}

.eb-pc-badge[data-state="full"] {
	background: rgba(179, 38, 30, 0.1);
	color: var(--pc-status-full);
}

/* -------------------------------------------------------- Empty / pager */

.eb-pc-notice {
	margin: 0 0 14px;
	padding: 10px 14px;
	border-left: 3px solid var(--pc-orange);
	background: var(--pc-surface-alt);
	font-size: 14px;
	color: var(--pc-body);
}

.eb-pc-notice[hidden] {
	display: none;
}

.eb-pc-empty {
	padding: 3.5rem 1rem;
	text-align: center;
	color: var(--pc-muted);
}

.eb-pc-empty .eb-pc-not-found {
	margin: 0 0 8px;
	font-family: var(--pc-font-display);
	font-size: 20px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--pc-ink);
}

.eb-pc-pager {
	margin: 28px 0;
	text-align: center;
}

.eb-pc-load-more {
	padding: 13px 32px;
	border: 1px solid var(--pc-teal);
	border-radius: var(--pc-radius);
	background: none;
	color: var(--pc-teal);
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
}

.eb-pc-load-more:hover,
.eb-pc-load-more:focus-visible {
	background: var(--pc-teal);
	color: #fff;
}

.eb-pc-load-more[hidden] {
	display: none;
}

.eb-pc-load-more[disabled] {
	cursor: progress;
	opacity: 0.55;
}

/* Preview listings on medium and instructor pages get a quieter pager. */
.eb-pc-pager--subtle {
	margin: 18px 0 0;
}

.eb-pc-pager--subtle .eb-pc-load-more {
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	border-radius: 0;
	font-size: 11px;
	letter-spacing: 1.5px;
}

.eb-pc-pager--subtle .eb-pc-load-more:hover,
.eb-pc-pager--subtle .eb-pc-load-more:focus-visible {
	background: none;
	color: var(--pc-ink);
}

.eb-pc-more-link {
	margin: 16px 0 0;
	text-align: center;
}

.eb-pc-more-link a {
	color: var(--pc-teal);
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 2px;
}

/* =============================================================== Dialog */

.eb-pc-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 20, 20, 0.78);
	z-index: 1041;
}

.eb-pc-overlay[hidden],
.eb-pc-dialog[hidden] {
	display: none;
}

.eb-pc-dialog.is-open {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(1000px, calc(100vw - 2rem));
	max-height: calc(100vh - 2rem);
	z-index: 1042;
	animation: eb-pc-zoom 0.22s ease-out;
}

@keyframes eb-pc-zoom {
	from {
		opacity: 0;
		transform: translate(-50%, -50%) scale(0.94);
	}
}

.eb-pc-panel {
	position: relative;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	overscroll-behavior: contain;
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

/* The old build loaded a full-bleed image and then covered it with a 95%
   white panel. Here it runs as a band, so it is actually seen. */
/* Header band. Uses the course image when ProClass has one, and falls back to
   a teal wash so a class with no photo still opens with something to look at
   rather than a wall of grey text. */
.eb-pc-panel-head {
	position: relative;
	padding: 30px 32px 26px;
	background: linear-gradient(135deg, var(--pc-teal) 0%, #255d70 100%);
	color: #fff;
}

.eb-pc-panel-head.has-image {
	padding-top: 120px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.eb-pc-panel-head.has-image::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(20, 30, 34, 0.15) 0%, rgba(20, 30, 34, 0.82) 55%, rgba(20, 30, 34, 0.94) 100%);
}

.eb-pc-head-inner {
	position: relative;
	z-index: 1;
}

.eb-pc-head-tags {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 12px;
}

.eb-pc-panel-head .eb-pc-code {
	margin: 0;
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	vertical-align: baseline;
}

.eb-pc-panel-head .eb-pc-badge {
	background: rgba(255, 255, 255, 0.9);
}

/* Date, days and time read across the header instead of being buried in the
   right-hand column, which is what made the panel feel one-sided. */
.eb-pc-quickfacts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.eb-pc-quickfact {
	padding: 5px 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	font-size: 13px;
	line-height: 1.3;
	color: #fff;
}

.eb-pc-panel-inner {
	padding: 28px 32px 36px;
}

.eb-pc-title-card {
	margin: 0;
	font-family: var(--pc-font-display);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #fff;
}

.eb-pc-close {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: rgba(255, 255, 255, 0.18) !important;
	box-shadow: none !important;
	color: #fff !important;
	font-family: var(--pc-font-body);
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
	z-index: 3;
	-webkit-appearance: none;
	appearance: none;
	transition: background 0.2s ease;
}

.eb-pc-close > span {
	display: block;
	margin-top: -2px;
}

.eb-pc-close:hover,
.eb-pc-close:focus-visible {
	background: rgba(255, 255, 255, 0.35) !important;
}

.eb-pc-columns {
	display: grid;
	grid-template-columns: minmax(0, 1.7fr) minmax(250px, 1fr);
	gap: 34px;
}

.eb-pc-rail {
	padding: 22px 20px;
	border: 1px solid var(--pc-line);
	border-radius: var(--pc-radius);
	background: var(--pc-surface-alt);
}

.eb-pc-rail h5:first-child {
	margin-top: 0;
}

.eb-pc-price {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin: 18px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--pc-line-strong);
}

.eb-pc-price-label {
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.eb-pc-price-value {
	font-family: var(--pc-font-display);
	font-size: 26px;
	color: var(--pc-ink);
}

.eb-proclass h5 {
	margin: 0 0 10px;
	font-family: var(--pc-font-display);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--pc-muted);
}

.eb-pc-col-main h5:not(:first-child),
.eb-pc-col-side h5:not(:first-child) {
	margin-top: 26px;
}

.eb-pc-description {
	font-family: var(--pc-font-copy);
	font-size: 17.5px;
	line-height: 1.65;
	color: var(--pc-body);
}

/* Descriptions are normalised server-side to plain p / ul / ol / li / strong /
   em / a, so these rules are the only thing deciding how any of them look. */
.eb-pc-description p,
.eb-pc-description li {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}

.eb-pc-description p {
	margin: 0 0 1em;
}

.eb-pc-description p:last-child {
	margin-bottom: 0;
}

.eb-pc-description ul,
.eb-pc-description ol {
	margin: 0 0 1em;
	padding-left: 1.3em;
}

.eb-pc-description li {
	margin-bottom: 0.35em;
}

.eb-pc-description strong {
	font-weight: 600;
	color: var(--pc-ink);
}

.eb-pc-description a {
	color: var(--pc-teal);
	text-decoration: underline;
}

/* ------------------------------------------------------- Schedule strip */

.eb-pc-week {
	display: flex;
	gap: 4px;
	margin: 0 0 10px;
	padding: 0;
	list-style: none;
}

.eb-pc-week-day {
	flex: 1;
	padding: 6px 0;
	border-radius: var(--pc-radius);
	background: var(--pc-surface-alt);
	color: #b4b4b4;
	font-family: var(--pc-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: center;
	text-transform: uppercase;
}

.eb-pc-week-day.is-on {
	background: var(--pc-teal);
	color: #fff;
}

.eb-pc-instructor a {
	color: var(--pc-teal);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.eb-pc-instructor a:hover,
.eb-pc-instructor a:focus-visible {
	color: var(--pc-ink);
}

.eb-pc-instructor,
.eb-pc-col-side .eb-pc-times {
	margin: 0;
	color: var(--pc-body);
}

/* ---------------------------------------------------------------- Facts */

.eb-pc-facts {
	margin: 26px 0 0;
	border-top: 1px solid var(--pc-line);
}

.eb-pc-fact {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 9px 0;
	border-bottom: 1px solid var(--pc-line);
	font-size: 14px;
}

.eb-pc-fact dt {
	color: var(--pc-muted);
}

.eb-pc-fact dd {
	margin: 0;
	text-align: right;
	color: var(--pc-ink);
}

/* Secondary action, deliberately the orange accent rather than the teal, so it
   never competes with Register for the primary click. */
.eb-pc-materials {
	display: block;
	margin-top: 18px;
	padding: 12px 18px;
	border: 0;
	border-radius: var(--pc-radius);
	background: var(--pc-orange);
	color: #fff !important;
	font-family: var(--pc-font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.25s ease;
}

.eb-pc-materials:hover,
.eb-pc-materials:focus-visible {
	background: var(--pc-ink);
}

.eb-pc-materials-text {
	font-size: 14px;
	line-height: 1.55;
	color: var(--pc-body);
}

.eb-pc-materials-text p:last-child {
	margin-bottom: 0;
}

.eb-pc-register {
	display: block;
	margin-top: 24px;
	padding: 15px 20px;
	border-radius: var(--pc-radius);
	background: var(--pc-teal);
	color: #fff !important;
	font-family: var(--pc-font-display);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.25s ease;
}

.eb-pc-register:hover,
.eb-pc-register:focus-visible {
	background: var(--pc-ink);
}

body.eb-pc-modal-open {
	overflow: hidden;
}

/* No-JS fallback: the card link still targets its dialog. */
.eb-pc-dialog:target {
	display: block;
}

/* ================================================================ States */

.eb-proclass a:focus-visible,
.eb-proclass button:focus-visible,
.eb-proclass select:focus-visible,
.eb-proclass input:focus-visible {
	outline: 2px solid var(--pc-teal);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.eb-proclass *,
	.eb-proclass *::before,
	.eb-proclass *::after {
		animation: none !important;
		transition: none !important;
	}
}

/* =========================================================== Responsive */

@media (max-width: 860px) {
	.eb-pc-columns {
		grid-template-columns: minmax(0, 1fr);
		gap: 28px;
	}

	.eb-pc-panel-inner {
		padding: 24px 20px 30px;
	}

	.eb-pc-panel-head {
		padding: 24px 20px 22px;
	}

	.eb-pc-panel-head.has-image {
		padding-top: 90px;
	}

	.eb-pc-title-card {
		font-size: 22px;
	}
}

@media (max-width: 600px) {
	.eb-pc-dialog.is-open {
		width: 100vw;
		max-height: 100vh;
		top: 0;
		left: 0;
		transform: none;
	}

	.eb-pc-panel {
		max-height: 100vh;
		border-radius: 0;
	}

	@keyframes eb-pc-zoom {
		from {
			opacity: 0;
		}
	}

	.eb-pc-card {
		display: block;
		padding: 18px 40px 18px 12px;
	}

	.eb-pc-datebox {
		display: inline-block;
		width: auto;
		min-width: 52px;
		margin-bottom: 10px;
		padding: 6px 10px;
	}

	.eb-pc-date-day {
		font-size: 22px;
	}

	.eb-pc-title {
		font-size: 17px;
	}

	.eb-pc-meta {
		font-size: 13px;
	}
}
