/* ==========================================================================
   BtB Post Loop
   Base layout for every display style. Kept low-specificity on purpose so
   page-level CSS can restyle freely. Per-item accent colours arrive as
   --btb-loop-accent / --btb-loop-accent-contrast from the content type term.
   ========================================================================== */

.pca-btb-post-loop {
	--btb-loop-accent: var(--pca-light-blue, #6fd3f2);
	--btb-loop-accent-contrast: var(--pca-navy, #151026);
	--btb-loop-card-bg: var(--btb-lighter, #2D2646);
	--btb-loop-muted: var(--btb-muted, rgba(255, 255, 255, 0.65));
	--btb-loop-radius: var(--btb-border-radius, 15px);
	--btb-loop-gap: var(--btb-card-gap, 25px);
	--btb-loop-item-width: 320px; /* carousel slide width */
	position: relative;
	color: #fff;
}

.pca-btb-post-loop__viewport {
	position: relative;
}

/* --------------------------------------------------------------------------
   Track: grid mode
   -------------------------------------------------------------------------- */
.pca-btb-post-loop--grid .pca-btb-post-loop__track {
	display: grid;
	gap: 45px;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.pca-btb-post-loop--grid[data-columns="2"] .pca-btb-post-loop__track { grid-template-columns: repeat(2, 1fr); }
.pca-btb-post-loop--grid[data-columns="3"] .pca-btb-post-loop__track { grid-template-columns: repeat(3, 1fr); }
.pca-btb-post-loop--grid[data-columns="4"] .pca-btb-post-loop__track { grid-template-columns: repeat(4, 1fr); }
.pca-btb-post-loop--grid[data-columns="5"] .pca-btb-post-loop__track { grid-template-columns: repeat(5, 1fr); }
.pca-btb-post-loop--grid[data-columns="1"] .pca-btb-post-loop__track { grid-template-columns: 1fr; }

@media only screen and (max-width: 999px) {
	.pca-btb-post-loop--grid[data-columns="4"] .pca-btb-post-loop__track,
	.pca-btb-post-loop--grid[data-columns="5"] .pca-btb-post-loop__track,
	.pca-btb-post-loop--grid[data-columns="3"] .pca-btb-post-loop__track { grid-template-columns: repeat(2, 1fr); }
}

@media only screen and (max-width: 690px) {
	.pca-btb-post-loop--grid .pca-btb-post-loop__track { grid-template-columns: 1fr !important; }
}

/* --------------------------------------------------------------------------
   Track: carousel mode (native scroll-snap rail, arrows handled in JS)
   -------------------------------------------------------------------------- */
/*
 * Carousel instances break out of the page container to the full viewport
 * width - the same technique as the Related Content section on single BtB
 * posts. --btb-loop-inset re-aligns the heading, arrows and first card with
 * the standard BtB container, while the rail itself continues past the
 * screen edge instead of clipping at the container boundary.
 */
.pca-btb-post-loop--carousel {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none;
	margin-left: -50vw;
	--btb-loop-inset: var(--btb-rail-inset, calc(max((100vw - 1800px) / 2, 0px) + 80px));
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__header {
	padding-inline: var(--btb-loop-inset);
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__track {
	display: flex;
	gap: var(--btb-loop-gap);
	overflow-x: auto;
	scroll-snap-type: x proximity;
	overscroll-behavior-inline: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 5px;
	outline: none;
	padding-inline: var(--btb-loop-inset);
	scroll-padding-inline: var(--btb-loop-inset);
}

@media only screen and (max-width: 690px) {
	.pca-btb-post-loop--carousel {
		--btb-loop-inset: var(--btb-rail-inset-mobile, 20px);
	}
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__track.is-dragging {
	scroll-snap-type: none;
	cursor: grabbing;
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__track:focus-visible {
	outline: 2px solid rgba(255, 255, 255, .75);
	outline-offset: 4px;
	border-radius: 8px;
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__track::-webkit-scrollbar {
	display: none;
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__item {
	flex: 0 0 var(--btb-loop-item-width);
	max-width: 85vw;
	scroll-snap-align: start;
}

/* Header row: optional heading left, carousel arrows right. */
.pca-btb-post-loop__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.pca-btb-post-loop__heading {
	min-width: 0;
}

.pca-btb-post-loop__arrows {
	display: flex;
	gap: var(--btb-arrow-gap, 10px);
	justify-content: flex-end;
	margin-left: auto;
	flex: 0 0 auto;
}

/*
 * Arrows are always visible on carousels. They render disabled and the rail
 * script enables each side only when there is somewhere to scroll, so short
 * result sets show a calm disabled state rather than vanishing controls.
 * Sizing/colours come from the shared --btb-arrow-* tokens in btb.css.
 */
html body .pca-btb-post-loop__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--btb-arrow-size, 44px);
	height: var(--btb-arrow-size, 44px);
	padding: 0;
	border: 0;
	border-radius: 999px !important;
	background: var(--btb-arrow-bg, #fff);
	color: var(--btb-arrow-color, #111);
	cursor: pointer;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

html body .pca-btb-post-loop__arrow:hover:not(:disabled),
html body .pca-btb-post-loop__arrow:focus-visible {
	transform: scale(1.05);
}

html body .pca-btb-post-loop__arrow:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

html body .pca-btb-post-loop__arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

/* --------------------------------------------------------------------------
   Item base
   -------------------------------------------------------------------------- */
.pca-btb-post-loop__item {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 0;
	overflow: hidden;
	color: var(--btb-loop-text);
	transition: filter 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.pca-btb-post-loop__item:hover {filter: brightness(1.05) contrast(1.05) saturate(1.05);transition: filter 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;z-index: 9999;}

.pca-btb-post-loop__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--btb-border-radius);
	line-height: 0;
}

.pca-btb-post-loop__media img,
.pca-btb-post-loop__image {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.pca-btb-post-loop__item:hover .pca-btb-post-loop__image {
	transform: scale(1.04);
}

.pca-btb-post-loop__media-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.pca-btb-post-loop__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
	padding-top: 18px;
	flex-grow: 1;
}

/* Typography */
.pca-btb-post-loop__type {
	font-family: 'owners', sans-serif;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.2;
	color: var(--btb-loop-accent);
}

body .row .pca-btb-post-loop__title {
	margin: 0 !important;
	padding: 0 !important;
	font-family: 'owners-xnarrow';
	font-weight: 600;
	font-size: var(--btb-loop-title);
	line-height: 1;
}

.pca-btb-post-loop__title a {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #fff;
}

/* Stretch the title link so the whole card is clickable without nesting links */
.pca-btb-post-loop__title a::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}

.pca-btb-post-loop__punchy {
	font-family: 'owners-xwide';
	font-weight: 500;
	font-size: calc(var(--btb-text-small) + 1px);
	line-height: 1.1;
	max-width: 95%;
	color: var(--btb-loop-accent);
}

.pca-btb-post-loop--standard-listing .pca-btb-post-loop__punchy {
    margin-bottom: -2.5px;
    font-family: 'owners-narrow';
    font-weight: 500;
    line-height: 1;
    font-size: inherit;
}

body .row .pca-btb-post-loop--grid .pca-btb-post-loop__title {font-size: 35px;line-height: 1.2;margin-bottom: -5px !important;}
body .row .pca-btb-post-loop--grid span.pca-btb-post-loop__punchy {font-size: 18px;}

.pca-btb-post-loop__author {
	font-family: 'owners', sans-serif;
	font-size: 16px;
	color: var(--btb-loop-accent);
}

.pca-btb-post-loop--carousel .pca-btb-post-loop__excerpt {
	font-size: var(--btb-excerpt-small);
	max-width: calc(100% - 10px);
}

.pca-btb-post-loop__excerpt {
	margin: 0 !important;
	font-size: var(--btb-excerpt);
	line-height: 1.55;
	color: var(--btb-loop-muted);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-weight: 300;
	padding-bottom: 0;
	margin-bottom: 7.5px !important;
}

.btb-issue-2-col.pca-btb-post-loop--poster-tiles a.pca-btb-post-loop__media {aspect-ratio: unset !important;height: 190px;}
.btb-issue-2-col.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__content {text-align: left;display: flex;align-items: flex-start;}

/* Meta row: issue badge + date + duration/read time */
.pca-btb-post-loop__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 0px;
	font-size: var(--btb-text-small);
	line-height: 1;
	color: var(--btb-loop-muted);
}

.pca-btb-post-loop__issue, .pca-btb-tax-carousel__new-badge--card {
	background: var(--btb-loop-accent);
	color: var(--nectar-starting-dark-header-color);
	font-family: 'owners-narrow', 'owners', sans-serif;
	font-weight: 700;
	font-size: var(--btb-text-small) !important;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	padding: 6.5px 11px !important;
	border-radius: 5px !important;
}

.pca-btb-post-loop__date {
	text-transform: capitalize;
	margin-left: 5px;
}

.pca-btb-post-loop__time::before {
	content: '-';
	margin-right: 7px;
}

.pca-btb-post-loop__issue + .pca-btb-post-loop__time::before {
	content: none;
}

/* CTA button */
.pca-btb-post-loop__cta {
	position: relative;
	z-index: 2; /* above the stretched title link */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: var(--btb-loop-accent);
	color: var(--btb-loop-accent-contrast) !important;
	font-family: 'owners-narrow';
	font-weight: 700;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0px;
	line-height: 1;
	padding: 12px 22px;
	border-radius: 7px;
	margin-top: 10px;
	transition: filter 0.25s ease, transform 0.25s ease;
}

.pca-btb-post-loop__cta:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

/* Members-only lock treatment */
.pca-btb-post-loop__item--locked .pca-btb-post-loop__media-overlay {
	background: var(--btb-loop-accent);
	opacity: 0.75;
	mix-blend-mode: multiply;
}

.pca-btb-post-loop__item--locked .pca-btb-post-loop__media::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	border-radius: 50%;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2a5 5 0 0 0-5 5v3H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2h-1V7a5 5 0 0 0-5-5zm-3 8V7a3 3 0 1 1 6 0v3H9z'/%3E%3C/svg%3E") center / 26px no-repeat;
}

/* ==========================================================================
   Display style: STANDARD LISTING
   16:9 media, series/type line, title, meta row underneath.
   ========================================================================== */
.pca-btb-post-loop--standard-listing .pca-btb-post-loop__media {
	aspect-ratio: 16 / 9;
	background: #ffffff08;
}

/* ==========================================================================
   Display style: PODCAST ITEM
   Square artwork with the BtB microphone badge, title, meta row.
   ========================================================================== */
body div#ajax-content-wrap .pca-btb-post-loop--podcast-item .pca-btb-post-loop__media {
	aspect-ratio: 1 / 1;
}



/* Video badge: bottom-right of the featured image on video content. */
body div#ajax-content-wrap .pca-btb-post-loop__video-icon,
body div#ajax-content-wrap .pca-btb-post-loop__podcast-icon {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 40px !important;
	height: 40px !important;
	object-fit: contain;
	z-index: 2;
	filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
	margin: 0px;
}

.pca-btb-post-loop--poster-tiles img.pca-btb-post-loop__video-icon,
.pca-btb-post-loop--poster-tiles img.pca-btb-post-loop__podcast-icon {
    display: none;
}

/* ==========================================================================
   Display style: STACKED LIST
   Full-width card rows: content left, thumbnail right.
   ========================================================================== */
.pca-btb-post-loop--stacked-list.pca-btb-post-loop--grid .pca-btb-post-loop__track {
	grid-template-columns: 1fr !important;
	gap: 15px;
}

body div#ajax-content-wrap .pca-btb-post-loop--stacked-list .pca-btb-post-loop__video-icon,
body div#ajax-content-wrap .pca-btb-post-loop--stacked-list .pca-btb-post-loop__podcast-icon {width: 28px !important;height: 28px !important;right: 5px;bottom: 5px;}
body div#ajax-content-wrap .pca-btb-post-loop--stacked-list .pca-btb-post-loop__meta {margin-bottom: -5px;}

.pca-btb-post-loop--stacked-list .pca-btb-post-loop__item {
	flex-direction: row-reverse;
	align-items: center;
	gap: 25px;
	background: var(--btb-loop-card-bg);
	padding: 17px;
	border-radius: var(--btb-border-radius);
}

.pca-btb-post-loop--stacked-list .pca-btb-post-loop__content span.pca-btb-post-loop__punchy {font-size: calc(var(--btb-text-small) + 2px) !important;line-height: 0.8;font-family: 'owners-narrow';font-weight: 500;margin-bottom: 0px;}

.pca-btb-post-loop--stacked-list .pca-btb-post-loop__media {
	flex: 0 0 85px;
	aspect-ratio: 1 / 1;
	height: 85px;
	width: auto !important;
	border-radius: calc(var(--btb-border-radius) / 2);
}

.pca-btb-post-loop--stacked-list .pca-btb-post-loop__content {
	padding-top: 0;
	gap: 9px;
}

body .row .pca-btb-post-loop--stacked-list .pca-btb-post-loop__title {
	font-size: var(--btb-text-medium);
	line-height: 1.1;
	font-family: 'owners';
	font-weight: 500;
	margin-bottom: 0px !important;
}

@media only screen and (max-width: 1400px) {
	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__content span.pca-btb-post-loop__punchy {
	    font-size: 13px;
	}
}

@media only screen and (max-width: 850px) {
	body .btb-main-hero .pca-btb-post-loop--stacked-list.pca-btb-post-loop--grid .pca-btb-post-loop__track {grid-template-columns:1fr !important;}
}

@media only screen and (max-width: 690px) {
	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__item {
		gap: 18px;
		padding: 18px;
	}
.pca-btb-post-loop--standard-listing .pca-btb-post-loop__media {
	aspect-ratio: 12 / 9;
	background: #ffffff08;
	max-height: 250px;
}
	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__title {
		font-size: 19px;
	}
	body div#ajax-content-wrap .pca-btb-post-loop__video-icon,
	body div#ajax-content-wrap .pca-btb-post-loop__podcast-icon {width: 30px !important;height: 30px !important;}
}

@media only screen and (max-width: 479px) {
	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__item {
		gap: 15px;
		padding: 15px;
		background: #1f1933a6;
	}

	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__media {
	flex: 0 0 70px;
	height: 70px;
	}

	.pca-btb-post-loop--stacked-list .pca-btb-post-loop__title {
		font-size: 19px;
	}
}

/* ==========================================================================
   Display style: POSTER TILES
   Portrait imagery with content overlaid at the bottom, issue badge top-left.
   ========================================================================== */
.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__item {
	border-radius: var(--btb-border-radius);
}

.inner_row:first-child .pca-btb-post-loop {margin-top: 0px !important;}
.inner_row:last-child .pca-btb-post-loop {margin-bottom: 0px !important;}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__media {
	aspect-ratio: 3 / 4.4;
	border-radius: var(--btb-loop-radius) var(--btb-loop-radius) 0 0;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__media-overlay {
	background: linear-gradient(0deg, rgb(38 29 68) 10%, rgba(21, 16, 38, 0.35) 45%, transparent 65%);
	mix-blend-mode: multiply;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__content {
	position: absolute;
	inset: auto 0 0 0;
	align-items: center;
	text-align: center;
	padding: 20px;
	gap: 5px;
	z-index: 1;
	height: 100%;
	display: flex;
	justify-content: flex-end;
}

body .pca-btb-post-loop--poster-tiles .pca-btb-post-loop__title {
	font-family: 'owners-xnarrow';
	font-weight: 600;
	font-size: 38px;
	line-height: 0.9;
	text-transform: uppercase;
	margin-bottom: 0px !important;
	max-width: 260px;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__punchy {
	order: 1; /* punchy line sits under the title on posters */
	text-transform: uppercase;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__cta {
	order: 2;
	width: 100%;
}

/* Issue badge pulled out of the meta row and pinned to the poster artwork */
.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__meta {
	margin: 0;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__issue, .pca-btb-tax-carousel__new-badge--card {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;
}

.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__meta .pca-btb-post-loop__date,
.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__meta .pca-btb-post-loop__time {
	display: none;
}

/* ==========================================================================
   Display style: CONTENT UNDER FEATURED IMAGE
   Portrait imagery (e.g. book covers), author, title, excerpt, full CTA.
   ========================================================================== */
.pca-btb-post-loop--content-under-image .pca-btb-post-loop__media {
	aspect-ratio: 3 / 4.65;
}

.pca-btb-post-loop--content-under-image .pca-btb-post-loop__cta {
	width: 100%;
	margin-top: -7.5px;
}

.pca-btb-post-loop__item--books .pca-btb-post-loop__date {
    display: none;
}

.pca-btb-post-loop--content-under-image .pca-btb-post-loop__title {
	font-size: 22px;
	font-weight: 600;
}

/* ==========================================================================
   Display style: SINGLE LARGE FEATURED
   One tall hero card, content overlaid above a bottom gradient.
   ========================================================================== */
.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__item:hover {
	transform: none;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__media {
	aspect-ratio: 3.5 / 1.5;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__media-overlay {
	background: linear-gradient(22deg, rgba(13, 8, 27, .92) 0%, rgba(20, 12, 39, .76) 30%, rgba(20, 12, 39, .18) 50%, rgba(20, 12, 39, .08) 60%), linear-gradient(0deg, rgba(21, 16, 38, .2) 0%, rgba(21, 16, 38, .22) 20%, rgba(21, 16, 38, .02) 50%);
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__content {
	position: absolute;
	padding: 55px;
	gap: 10px;
	z-index: 1;
	max-width: 1000px;
	bottom: 0;
	height: 100%;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__type {
	position: relative;
	top: 0;
	left: 0;
	text-transform: uppercase;
	font-weight: 800;
	order: 1;
	margin-bottom: auto;
	border: 1.5px solid var(--btb-loop-accent);
	border-radius: 5px;
	padding: 8px 18px;
	font-size: 14px;
	color: #fff;
}

body .row .pca-btb-post-loop--single-large-featured .pca-btb-post-loop__title {
	font-family: 'owners-xwide', 'owners', sans-serif;
	font-weight: 800;
	font-size: 40px;
	text-transform: uppercase;
	line-height: 1;
	order: 3;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__punchy {
	letter-spacing: 0.05em;
	order: 4;
	text-transform: uppercase;
	font-size: 18px;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__excerpt {
	order: 5;
	max-width: 720px;
	font-size: 17px;
	color: var(--btb-loop-text);
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__meta {
	order: 2;
	margin: 0px !important;
	margin-bottom: 10px !important;
}

.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__cta {
	order: 6;
	padding: 18px 40px 17px;
	font-size: 20px;
	color: var(--nectar-font-color) !important;
	margin-top: 0px;
}

@media only screen and (max-width: 690px) {
	.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__content {
		padding: 20px;
	}

	.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__type {
		top: 20px;
		left: 20px;
	}

	.pca-btb-post-loop--single-large-featured .pca-btb-post-loop__title {
		font-size: 28px;
	}
}

/* --------------------------------------------------------------------------
   Decorative placeholder cards (carousel mode only).
   Purely visual balance for short result sets: no links, no hover, hidden
   from assistive technology in the markup.
   -------------------------------------------------------------------------- */
.pca-btb-post-loop__item--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: hsl(253deg 30% 21% / 40%);
	border: 1.5px solid hsl(0deg 0% 100% / 2%);
	pointer-events: none;
	user-select: none;
	border-radius: 20px;
	/* Stands alone in an empty carousel; stretches to match real cards otherwise. */
	min-height: 320px;
}

.pca-btb-post-loop__item--placeholder:hover {
	transform: none;
	box-shadow: none;
}

.pca-btb-post-loop__placeholder-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	max-width: 240px;
	opacity: 0.2;
	font-family: 'owners-xxwide';
	font-size: 20px;
	line-height: 0.8;
	text-align: center;
	text-transform: uppercase;
}

/* Each word carries its own weight: bold "COMING", light "SOON". */
.pca-btb-post-loop__placeholder-word {
	display: block;
	font-weight: 800;
}

.pca-btb-post-loop__placeholder-word + .pca-btb-post-loop__placeholder-word {
	font-weight: 200;
	font-family: 'owners-xxwide';
}

@media (prefers-reduced-motion: reduce) {
	.pca-btb-post-loop__item,
	.pca-btb-post-loop__image,
	.pca-btb-post-loop__cta {
		transition: none;
	}
}

/* Editor-only empty notice */
.pca-btb-post-loop-editor-notice {
	padding: 20px;
	border: 1px dashed rgba(125, 125, 125, 0.6);
	border-radius: 8px;
	font-size: 14px;
	opacity: 0.75;
}

/* Books */

.pca-btb-post-loop--carousel .pca-btb-post-loop__item.pca-btb-post-loop__item--books {flex: 0 0 calc(var(--btb-loop-item-width) / 1.3);}


/* ISSUE PAGE 2 COL SECTION */
body .btb-issue-2-col.pca-btb-post-loop--poster-tiles h3.pca-btb-post-loop__title {font-size: 37px;font-weight: 600;line-height: 0.9;font-family: 'owners-xnarrow';max-width: 100%;}
body .btb-issue-2-col.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__media-overlay {background: linear-gradient(7deg, rgb(38 29 68) 0%, rgba(21, 16, 38, 0.35) 45%, transparent 75%);}
body .btb-issue-2-col.pca-btb-post-loop--poster-tiles span.pca-btb-post-loop__punchy {font-size: 14px;}
body .btb-issue-2-col.pca-btb-post-loop--poster-tiles {margin: 0px !important;}








@media only screen and (max-width: 690px) {
	.pca-btb-post-loop {--btb-loop-item-width: 290px;}
	.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__issue, .pca-btb-tax-carousel__new-badge--card {padding: 8px 12px;top: 15px;left: 15px;}
	.pca-btb-post-loop__punchy {font-size: calc(var(--btb-text-small) + 1px);}
	body .pca-btb-post-loop--poster-tiles .pca-btb-post-loop__title {font-size: 32px;max-width: 90%;}
	.pca-btb-post-loop__cta {font-size: 15px;padding: 12px;}
	html body .pca-btb-post-loop__arrow, html body .pca-btb-tax-carousel__arrow, html body .pca-btb-club-carousel__arrow {width: var(--btb-arrow-size-mobile, 32px) !important;height: var(--btb-arrow-size-mobile, 32px) !important;}
	.pca-btb-post-loop__arrows, .pca-btb-tax-carousel__arrows, .pca-btb-club-carousel__arrows {gap: 5px !important;}
	html body .pca-btb-post-loop__arrow svg {width: 12px;height: 13px;}
	.pca-btb-post-loop__cta {font-size: 14px;padding: 10px;}
	.pca-btb-post-loop--carousel .pca-btb-post-loop__item.pca-btb-post-loop__item--books {max-width: 160px;}
}

@media only screen and (max-width: 479px) {
	.pca-btb-post-loop {--btb-loop-item-width: 270px;}
	/* POSTER TILES */
	.pca-btb-post-loop__punchy {font-size: calc(var(--btb-text-small) + 1px);}
	.pca-btb-post-loop--poster-tiles .pca-btb-post-loop__media {aspect-ratio: 3 / 4.1;}
	.pca-btb-post-loop__issue, .pca-btb-tax-carousel__new-badge--card {
    padding: 5.5px 9px !important;
}
	.pca-btb-post-loop--stacked-list.pca-btb-post-loop--grid .pca-btb-post-loop__track {gap:10px}
}