/* Produktų palyginimai – front-end */

.bbpc-page__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 24px 16px 64px;
}

.bbpc-page__title {
	margin: 0 0 16px;
}

.bbpc-text {
	max-width: 880px;
}

.bbpc-text--bottom {
	margin-top: 40px;
}

.bbpc-sr {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* Root ---------------------------------------------------------------- */

.bbpc {
	--bbpc-bg: #fff;
	--bbpc-line: #e6e6e6;
	--bbpc-soft: #f6f6f5;
	--bbpc-muted: #6b6b6b;
	--bbpc-text: inherit;
	--bbpc-yes: #1f8a4c;
	--bbpc-no: #b8b8b8;
	--bbpc-col-w: var(--bbpc-col-min, 220px);
	--bbpc-lw: var(--bbpc-label-w, 240px);
	--bbpc-view-w: 100%;
	--bbpc-radius: 10px;
	--bbpc-ease: cubic-bezier(.22, .72, .2, 1);
	position: relative;
	margin: 28px 0 40px;
	font-size: 15px;
	line-height: 1.45;
}

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

.bbpc [hidden] {
	display: none !important;
}

.bbpc .is-off {
	display: none !important;
}

.bbpc-spacer {
	height: 0;
}

.bbpc col.is-off {
	display: table-column !important;
	width: 0 !important;
}

.bbpc .bbpc-table col.bbpc-col-label {
	width: var(--bbpc-lw);
}

.bbpc .bbpc-table col.bbpc-col {
	width: var(--bbpc-col-w);
}

/* Sticky head --------------------------------------------------------- */

.bbpc-head {
	position: relative;
	z-index: 30;
	background: var(--bbpc-bg);
	border-bottom: 1px solid var(--bbpc-line);
}

/* Fixed while scrolling through the table (positioned by JS, works even
   when the theme sets overflow:hidden on a wrapper). */
.bbpc.is-stuck .bbpc-head {
	position: fixed;
	z-index: 90;
	box-shadow: 0 8px 18px -12px rgba(0, 0, 0, .25);
	will-change: transform;
}

.bbpc-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	min-height: 48px;
	padding: 8px 0;
	border-bottom: 1px solid var(--bbpc-line);
}

/* Toggle switch (button role="switch", immune to theme checkbox styles) */

.bbpc .bbpc-switch {
	all: unset;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 4px 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: normal;
	text-transform: none;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}

.bbpc .bbpc-switch:hover,
.bbpc .bbpc-switch:focus,
.bbpc .bbpc-switch:active {
	background: none;
	color: inherit;
	box-shadow: none;
	transform: none;
	outline: none;
}

.bbpc .bbpc-switch::before,
.bbpc .bbpc-switch::after {
	content: none !important;
	display: none !important;
}

.bbpc .bbpc-switch__ui {
	position: relative;
	display: block;
	flex: none;
	width: 40px;
	height: 22px;
	margin: 0;
	border: 0;
	border-radius: 22px;
	background: #cfcfcf;
	transition: background .2s ease;
}

.bbpc .bbpc-switch__ui::after {
	content: "";
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .25);
	transition: transform .2s var(--bbpc-ease);
}

.bbpc .bbpc-switch[aria-checked="true"] .bbpc-switch__ui {
	background: var(--bbpc-accent, #2b2b2b);
}

.bbpc .bbpc-switch[aria-checked="true"] .bbpc-switch__ui::after {
	transform: translateX(18px);
}

.bbpc .bbpc-switch:focus-visible .bbpc-switch__ui {
	outline: 2px solid var(--bbpc-accent, #2b2b2b);
	outline-offset: 2px;
}

.bbpc .bbpc-addmore {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.bbpc .bbpc-addmore:hover span {
	text-decoration: underline;
}

/* Hidden products chips */

.bbpc-hidden {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	font-size: 13px;
}

.bbpc-hidden__label {
	color: var(--bbpc-muted);
}

.bbpc-hidden__list {
	display: contents;
}

.bbpc .bbpc-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	max-width: 220px;
	margin: 0;
	padding: 4px 10px;
	border: 1px solid var(--bbpc-line);
	border-radius: 20px;
	background: var(--bbpc-soft);
	color: inherit;
	font: inherit;
	font-size: 13px;
	line-height: 1.3;
	cursor: pointer;
	box-shadow: none;
	text-transform: none;
}

.bbpc .bbpc-chip span {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.bbpc .bbpc-chip:hover {
	border-color: var(--bbpc-accent, #2b2b2b);
	background: #fff;
}

.bbpc .bbpc-link {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	font-size: 13px;
	text-decoration: underline;
	cursor: pointer;
	box-shadow: none;
}

/* Nav arrows */

.bbpc-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.bbpc-nav__count {
	min-width: 56px;
	text-align: center;
	font-size: 13px;
	color: var(--bbpc-muted);
	font-variant-numeric: tabular-nums;
}

.bbpc .bbpc-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin: 0;
	padding: 0;
	border: 1px solid var(--bbpc-line);
	border-radius: 50%;
	background: #fff;
	color: inherit;
	cursor: pointer;
	box-shadow: none;
}

.bbpc .bbpc-nav__btn:hover:not(:disabled) {
	border-color: var(--bbpc-accent, #2b2b2b);
	background: var(--bbpc-accent, #2b2b2b);
	color: #fff;
}

.bbpc .bbpc-nav__btn:disabled {
	opacity: .35;
	cursor: default;
}

/* Cards
 * Compact header is scroll-linked: JS sets --p (0 = full, 1 = compact) while
 * the visitor scrolls, so photos shrink into mini thumbnails exactly as fast
 * as the page moves. --bbpc-top-h / --bbpc-more-h are measured natural heights.
 */

.bbpc {
	--p: 0;
	--bbpc-mini: 52px;
}

.bbpc-head__scroll {
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.bbpc-head__scroll::-webkit-scrollbar {
	display: none;
}

.bbpc-head__track {
	display: flex;
	width: max-content;
	min-width: 100%;
}

.bbpc-head__label {
	position: sticky;
	left: 0;
	z-index: 2;
	flex: 0 0 var(--bbpc-lw);
	width: var(--bbpc-lw);
	display: flex;
	align-items: flex-end;
	padding: calc(14px - 6px * var(--p)) 14px calc(14px - 6px * var(--p)) 0;
	background: var(--bbpc-bg);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--bbpc-muted);
}

.bbpc-card {
	position: relative;
	flex: 0 0 var(--bbpc-col-w);
	width: var(--bbpc-col-w);
	display: flex;
	flex-direction: column;
	padding: calc(14px - 6px * var(--p)) calc(14px + 34px * var(--p)) calc(14px - 6px * var(--p)) 14px;
	border-left: 1px solid var(--bbpc-line);
}

/* Big photo: the visible box collapses from the top while the photo shrinks
   into the bottom-left corner, where the mini thumbnail then appears. */
.bbpc-card__top {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: calc(var(--bbpc-top-h) * (1 - var(--p)));
	overflow: hidden;
}

.bbpc-card__top .bbpc-fold__in {
	flex: none;
	padding-bottom: 10px;
	transform-origin: 0 100%;
	transform: scale(calc(1 - var(--p)));
	opacity: calc((1 - var(--p)) * 3.5);
}

/* Price, description, buttons: slide under the title row. */
.bbpc-card__more {
	flex: 1 1 auto;
	max-height: calc(var(--bbpc-more-h) * (1 - var(--p)));
	overflow: hidden;
	opacity: calc(1 - var(--p) * 1.3);
}

.bbpc.is-compact .bbpc-card__more,
.bbpc.is-compact .bbpc-card__top {
	visibility: hidden;
}

.bbpc-card__more .bbpc-fold__in {
	display: flex;
	flex-direction: column;
	gap: 6px;
	height: 100%;
	padding-top: 6px;
}

.bbpc .bbpc-card__hide {
	position: absolute;
	top: calc(20px + (50% - 20px) * var(--p));
	right: calc(20px - 8px * var(--p));
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: 1px solid var(--bbpc-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: #444;
	cursor: pointer;
	box-shadow: none;
	transform: translateY(calc(-50% * var(--p)));
	transition: background .15s, color .15s;
}

.bbpc .bbpc-card__hide:hover {
	background: var(--bbpc-accent, #2b2b2b);
	border-color: var(--bbpc-accent, #2b2b2b);
	color: #fff;
}

.bbpc.is-single .bbpc-card__hide {
	display: none;
}

.bbpc-card__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	border-radius: var(--bbpc-radius);
	background: var(--bbpc-soft);
	overflow: hidden;
}

.bbpc .bbpc-card__img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: contain;
	mix-blend-mode: multiply;
	transition: transform .25s;
}

.bbpc-card__media:hover .bbpc-card__img {
	transform: scale(1.04);
}

.bbpc-card__badge {
	position: absolute;
	bottom: 8px;
	left: 8px;
	z-index: 1;
	max-width: calc(100% - 16px);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 3px 8px;
	border-radius: 4px;
	background: var(--bbpc-accent, #2b2b2b);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .02em;
	text-transform: uppercase;
}

/* Title row with a mini thumbnail that grows in when compact. */
.bbpc-card__head {
	display: flex;
	align-items: center;
	gap: calc(10px * clamp(0, (var(--p) - .55) * 2.3, 1));
	min-width: 0;
}

.bbpc-card__mini {
	flex: none;
	display: block;
	width: calc(var(--bbpc-mini) * clamp(0, (var(--p) - .55) * 2.3, 1));
	height: calc(var(--bbpc-mini) * clamp(0, (var(--p) - .55) * 2.3, 1));
	border-radius: 6px;
	background: var(--bbpc-soft);
	overflow: hidden;
	opacity: calc(var(--p) * 3.5 - 2.5);
}

.bbpc .bbpc-card__mini img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	margin: 0;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.bbpc .bbpc-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-width: 0;
	overflow: hidden;
	overflow-wrap: normal;
	word-break: normal;
	color: inherit;
	font-weight: 700;
	font-size: calc(15px - 2px * var(--p));
	line-height: 1.3;
}

.bbpc .bbpc-card__title,
.bbpc .bbpc-btn,
.bbpc .bbpc-addmore,
.bbpc .bbpc-card__media {
	text-decoration: none !important;
}

.bbpc .bbpc-card__title:hover,
.bbpc .bbpc-addmore:hover span {
	text-decoration: underline !important;
	text-underline-offset: 3px;
}

.bbpc-card__price {
	font-weight: 700;
	font-size: 16px;
}

.bbpc-card__price del {
	margin-right: 4px;
	color: var(--bbpc-muted);
	font-weight: 400;
	font-size: 13px;
}

.bbpc-card__price ins {
	text-decoration: none;
}

.bbpc-card__desc {
	color: var(--bbpc-muted);
	font-size: 13px;
	line-height: 1.4;
}

.bbpc-card__actions {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: auto;
	padding-top: 6px;
}

.bbpc .bbpc-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin: 0;
	padding: 8px 12px;
	border: 1px solid var(--bbpc-accent, #2b2b2b);
	border-radius: 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .03em;
	text-align: center;
	text-transform: uppercase;
	white-space: normal;
	cursor: pointer;
	transition: background .15s, color .15s;
}

.bbpc .bbpc-btn--primary {
	background: var(--bbpc-accent, #2b2b2b);
	color: #fff;
}

.bbpc .bbpc-btn--primary:hover {
	background: #fff;
	color: var(--bbpc-accent, #2b2b2b);
}

.bbpc .bbpc-btn--ghost {
	background: transparent;
	color: var(--bbpc-accent, #2b2b2b);
}

.bbpc .bbpc-btn--ghost:hover {
	background: var(--bbpc-accent, #2b2b2b);
	color: #fff;
}

.bbpc .bbpc-btn.loading {
	opacity: .6;
}

.bbpc .bbpc-btn.added::after {
	content: " ✓";
	margin-left: 4px;
}

.bbpc .added_to_cart {
	display: block;
	font-size: 12px;
	text-align: center;
	color: inherit;
}

/* Body / table -------------------------------------------------------- */

.bbpc-body {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.bbpc .bbpc-table {
	width: auto;
	max-width: none;
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	background: transparent;
}

.bbpc .bbpc-table th,
.bbpc .bbpc-table td {
	margin: 0;
	padding: 13px 14px;
	border: 0;
	border-bottom: 1px solid var(--bbpc-line);
	background: var(--bbpc-bg);
	color: inherit;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	vertical-align: top;
	overflow-wrap: anywhere;
}

.bbpc .bbpc-table td {
	width: var(--bbpc-col-w);
	border-left: 1px solid var(--bbpc-line);
}

.bbpc .bbpc-table td p,
.bbpc .bbpc-table td ul,
.bbpc .bbpc-table td ol {
	margin: 0 0 .4em;
}

.bbpc .bbpc-table td ul,
.bbpc .bbpc-table td ol {
	padding-left: 1.1em;
}

.bbpc .bbpc-table td a {
	color: inherit;
	text-decoration: underline;
}

.bbpc .bbpc-table .bbpc-row__label {
	position: sticky;
	left: 0;
	z-index: 2;
	width: var(--bbpc-lw);
	padding-left: 0;
	font-weight: 600;
}

.bbpc-row__label-in {
	display: inline;
}

.bbpc .bbpc-tip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin: -2px 0 0 4px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: none;
	color: var(--bbpc-muted);
	vertical-align: middle;
	cursor: pointer;
	box-shadow: none;
}

.bbpc .bbpc-tip:hover,
.bbpc .bbpc-tip[aria-expanded="true"] {
	color: var(--bbpc-accent, #2b2b2b);
}

.bbpc-note {
	display: block;
	margin-top: 4px;
	color: var(--bbpc-muted);
	font-size: 13px;
	font-weight: 400;
	line-height: 1.4;
}

.bbpc .bbpc-table tr.bbpc-row:hover > * {
	background: #fafaf9;
}

.bbpc .bbpc-table tr.is-highlight > * {
	background: color-mix(in srgb, var(--bbpc-accent, #2b2b2b) 5%, #fff);
}

.bbpc .bbpc-table tr.is-highlight > td {
	font-weight: 600;
}

/* Groups */

.bbpc .bbpc-table .bbpc-group th {
	padding: 0;
	border-bottom: 1px solid var(--bbpc-line);
	background: var(--bbpc-soft);
}

.bbpc .bbpc-group__btn {
	position: sticky;
	left: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	width: auto;
	max-width: 100%;
	margin: 0;
	padding: 12px 14px 12px 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
}

.bbpc .bbpc-group__btn svg {
	transition: transform .15s;
}

.bbpc .bbpc-group.is-collapsed .bbpc-group__btn svg {
	transform: rotate(-90deg);
}

.bbpc tr.is-folded {
	display: none;
}

/* Values */

.bbpc-empty {
	color: #b5b5b5;
}

.bbpc-bool {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin: -4px 0;
	border-radius: 50%;
}

.bbpc-bool--yes {
	color: var(--bbpc-yes);
	background: color-mix(in srgb, var(--bbpc-yes) 12%, #fff);
}

.bbpc-bool--no {
	color: var(--bbpc-no);
}

@media (prefers-reduced-motion: reduce) {
	.bbpc,
	.bbpc * {
		transition: none !important;
	}
}

/* Only differences */

.bbpc.is-diff tr.is-same {
	display: none;
}

/* Desktop: first column aligned with page edge */

@media (min-width: 768px) {
	.bbpc .bbpc-table .bbpc-row__label,
	.bbpc-head__label {
		box-shadow: inset -1px 0 0 var(--bbpc-line);
	}
}

/* Mobile -------------------------------------------------------------- */

@media (max-width: 767px) {
	.bbpc {
		font-size: 14px;
	}

	.bbpc-bar {
		gap: 8px 12px;
		min-height: 44px;
	}

	.bbpc .bbpc-switch {
		flex: 1 1 auto;
		min-width: 0;
		font-size: 13px;
	}

	.bbpc-nav {
		flex: none;
		gap: 4px;
	}

	.bbpc-nav__count {
		min-width: 40px;
		font-size: 12px;
	}

	.bbpc .bbpc-nav__btn {
		width: 32px;
		height: 32px;
	}

	.bbpc-hidden,
	.bbpc .bbpc-addmore {
		order: 3;
		flex-basis: 100%;
	}

	.bbpc-head__label {
		display: none;
	}

	.bbpc-head__scroll,
	.bbpc-body {
		scroll-snap-type: x mandatory;
	}

	.bbpc-card {
		padding: 10px;
		scroll-snap-align: start;
	}

	.bbpc-card:first-of-type {
		border-left: 0;
	}

	.bbpc .bbpc-card__hide {
		top: 16px;
		right: 16px;
		width: 28px;
		height: 28px;
	}

	.bbpc-card__price {
		font-size: 15px;
	}

	.bbpc .bbpc-btn {
		min-height: 36px;
		padding: 6px 8px;
		font-size: 12px;
		letter-spacing: .01em;
	}

	.bbpc {
		--bbpc-mini: 40px;
	}

	.bbpc-card {
		padding: calc(10px - 4px * var(--p)) 10px calc(10px - 4px * var(--p)) calc(10px - 2px * var(--p));
	}

	.bbpc .bbpc-card__hide {
		opacity: calc(1 - var(--p) * 2);
	}

	.bbpc.is-stuck .bbpc-card__hide {
		pointer-events: none;
	}

	.bbpc .bbpc-card__title {
		font-size: calc(14px - 2px * var(--p));
	}

	.bbpc-bar {
		min-height: calc(44px - 4px * var(--p));
		padding: calc(8px - 4px * var(--p)) 0;
	}

	/* Table becomes stacked rows: label line + value cells. */
	.bbpc .bbpc-table,
	.bbpc .bbpc-table tbody {
		display: block;
	}

	.bbpc .bbpc-table tr {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
	}

	.bbpc .bbpc-table .bbpc-row__label {
		position: static;
		display: block;
		flex: 0 0 100%;
		width: 100%;
		padding: 9px 12px 7px;
		border-bottom: 0;
		background: var(--bbpc-soft);
		font-size: 13px;
		box-shadow: none;
	}

	.bbpc .bbpc-table tr.bbpc-row:hover > * {
		background: var(--bbpc-bg);
	}

	.bbpc .bbpc-table tr.bbpc-row:hover > .bbpc-row__label {
		background: var(--bbpc-soft);
	}

	.bbpc-row__label-in {
		position: sticky;
		left: 12px;
		display: inline-block;
		max-width: calc(var(--bbpc-view-w) - 24px);
	}

	.bbpc .bbpc-table td {
		display: block;
		flex: 0 0 var(--bbpc-col-w);
		padding: 10px 12px 12px;
		scroll-snap-align: start;
	}

	.bbpc .bbpc-table td[data-col="0"],
	.bbpc .bbpc-table th + td {
		border-left: 0;
	}

	.bbpc .bbpc-table .bbpc-group th {
		display: block;
		flex: 0 0 100%;
		width: 100%;
		background: var(--bbpc-bg);
		border-bottom: 2px solid var(--bbpc-accent, #2b2b2b);
	}

	.bbpc .bbpc-group__btn {
		padding: 18px 12px 8px;
		width: var(--bbpc-view-w);
	}

	.bbpc .bbpc-table tr.is-highlight > .bbpc-row__label {
		background: color-mix(in srgb, var(--bbpc-accent, #2b2b2b) 9%, #fff);
	}
}

/* FAQ ----------------------------------------------------------------- */

.bbpc-faq {
	max-width: 880px;
	margin: 48px 0 24px;
}

.bbpc-faq__title {
	margin: 0 0 16px;
}

.bbpc-faq__item {
	border-bottom: 1px solid #e6e6e6;
}

.bbpc-faq__item:first-child {
	border-top: 1px solid #e6e6e6;
}

.bbpc-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	list-style: none;
}

.bbpc-faq__q::-webkit-details-marker {
	display: none;
}

.bbpc-faq__q svg {
	flex: none;
	transition: transform .15s;
}

.bbpc-faq__item[open] .bbpc-faq__q svg {
	transform: rotate(180deg);
}

.bbpc-faq__a {
	padding: 0 0 16px;
	color: #444;
}

.bbpc-faq__a > :last-child {
	margin-bottom: 0;
}

/* Archive ------------------------------------------------------------- */

.bbpc-archive {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
	margin: 24px 0;
}

.bbpc-archive__item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: inherit;
	text-decoration: none;
}

.bbpc-archive__media {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	aspect-ratio: 4 / 3;
	padding: 12px;
	background: #f6f6f5;
	border-radius: 10px;
	overflow: hidden;
}

.bbpc-archive__media img {
	flex: 1 1 0;
	min-width: 0;
	height: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.bbpc-archive__title {
	font-weight: 700;
	font-size: 17px;
}

.bbpc-archive__item:hover .bbpc-archive__title {
	text-decoration: underline;
}

.bbpc-archive__excerpt {
	color: #6b6b6b;
	font-size: 14px;
}
