/* ===== WRAPPER ===== */
.alb-pl1-wrapper {
	display: flex;
	flex-direction: column;
	row-gap: 0;
}

.alb-pl1-item-hidden {
	display: none!important;
}

/* ===== CARD: flex row (like competitor) ===== */
.alb-card {
	display: flex;
	flex-wrap: nowrap;
	padding: 18px 0;
	border-top: 2px solid #f2f2f2;
}

.alb-card:last-child {
	border-bottom: 2px solid #f2f2f2;
}

/* IMAGE: fixed width, left side */
.alb-card-image {
	flex: 0 0 auto;
	width: 8rem;
	height: 72px;
	order: 1;
}

.alb-card-image a {
	display: block;
	height: 100%;
	text-decoration: none;
}

.alb-card-image img {
	object-fit: scale-down;
	max-height: 100%;
	height: auto;
	max-width: 100%;
	display: block;
}

/* MIDDLE: info + jump, flex row on desktop */
.alb-card-middle {
	display: flex;
	flex-direction: row;
	flex-grow: 1;
	width: 66.6667%;
	order: 1;
	padding-right: 16px;
}

/* Info: hook + title, grows to fill */
.alb-card-info {
	flex-grow: 1;
}

.alb-product-hook {
	font-size: 12px;
	line-height: 16px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--contrast, #1a1a1a);
}

.alb-product-title {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}

.alb-product-title a {
	font-size: 18px;
	line-height: 28px;
	color: var(--accent, #5046e5);
	font-weight: 700;
	display: block;
	text-decoration: none;
}

.alb-product-title a:hover {
	text-decoration: underline;
}

/* Jump link: fixed width, centered vertically */
.alb-card-jump {
	width: 8rem;
    flex: none;
    margin-bottom: 1rem;
    margin-top: 1rem;
	align-items: center;
	letter-spacing: 0.3px;
	font-weight: 700;
	font-size: 12px;
	line-height: 16px;
}

.alb-jump-link {
	cursor: pointer;
	color: var(--contrast, #1a1a1a);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.alb-jump-link:hover {
	text-decoration: underline;
}

.alb-arrow-svg {
	width: 0.75rem;
	height: 12px;
	display: inline-block;
	margin-left: 4px;
	margin-bottom: 2px;
	vertical-align: middle;
}

/* BUTTON AREA: fixed width, right side */
.alb-card-btn {
	flex: 0 0 auto;
	width: 11rem;
	white-space: nowrap;
	order: 2;
	display: flex;
	align-items: flex-start;
}

.alb-affiliate-button {
	letter-spacing: 0.4px;
	line-height: 24px;
	font-weight: 700;
	font-size: 16px;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	text-align: center;
	padding: 8px;
	background-color: var(--accent, #5046e5);
	text-overflow: ellipsis;
	overflow: hidden;
	width: 100%;
	color: #ffffff!important;
	text-decoration: none;
	display: inline-block;
	border-radius: 0;
}

.alb-affiliate-button:hover {
	opacity: 0.9;
	color: #ffffff;
}

/* SEE MORE link */
.alb-pl1-show-more {
	margin-top: 10px;
	padding: 0;
	border: none;
	background: none;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	color: #001b3a;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.alb-pl1-show-more:hover {
	text-decoration: underline;
	color: unset !important;
    background-color: unset !important;
}

@media (min-width: 768px) {
    .alb-card-middle {
        margin-left: 1rem;
    }
}


/* ===== MOBILE ===== */
@media (max-width: 767px) {
	.alb-card {
		flex-wrap: wrap;
		padding: 12px 0;
	}

	/* Info: left side on mobile */
	.alb-card-middle {
		flex-direction: column;
		width: 66.6667%;
		padding-right: 16px;
		flex: 1 1 0%;
		padding-left: 0;
		order: 1;
	}
	.alb-card-image img {
	width: auto;
	max-height: 100px;
	object-fit: contain;
	}

	/* Image: right side on mobile */
	.alb-card-image {
		width: auto;
		height: auto;
		max-height: 100px;
		order: 2;
		overflow: hidden;
		display: flex;
		justify-content: flex-end;
		flex-shrink: 0;
	}

	/* Button: full width below */
	.alb-card-btn {
		width: 100%;
		order: 3;
		flex-grow: 1;
	}

	/* Jump link: no fixed width, stacks below info */
	.alb-card-jump {
		width: auto;
		margin-top: 16px;
		margin-bottom: 16px;
	}

	/* Button: 100% width, wraps to next row */
	.alb-card-btn {
		width: 100%;
		order: 2;
		flex-grow: 1;
	}

	.alb-affiliate-button {
		width: 100%;
	}
}
/* ===== PROS & CONS BLOCK ===== */
.alb-pros-cons-wrapper {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 1em;
	row-gap: 1em;
	margin-bottom: 1.5em;
}

@media (max-width: 767px) {
	.alb-pros-cons-wrapper {
		grid-template-columns: 1fr;
	}
}

.alb-pros-cons-box {
	border: 2px solid;
}

.alb-pros-cons-header {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5em;
	width: 100%;
	padding: 5px 0;
	color: #ffffff;
	font-size: 24px;
	font-weight: bold;
	font-family: Helvetica, Arial, sans-serif;
	text-align: center;
}

.alb-pros-cons-icon {
	display: inline-flex;
	align-items: center;
}

.alb-pros-cons-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.alb-pros-cons-title {
	line-height: 1;
}

.alb-pros-cons-list {
	margin: 0;
	padding: 16px 16px 16px 32px;
	list-style: disc;
}

.alb-pros-cons-list li {
	margin-bottom: 6px;
	font-size: 15px;
	line-height: 1.5;
	color: var(--contrast, #1a1a1a);
}

.alb-pros-cons-list li:last-child {
	margin-bottom: 0;
}

/* ===== PRODUCT DETAIL CARD ===== */
.alb-pdc-wrapper {
	border: 2px solid #f2f2f2;
	padding: 0 24px;
	margin-top: 48px;
	margin-bottom: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.alb-pdc-accent-bar {
	width: 3.5rem;
	height: 8px;
	margin-left: 16px;
	margin-top: 0;
}

/* Hero */
.alb-pdc-hero {
	display: flex;
	flex-wrap: nowrap;
	margin: 24px 16px;
	gap: 24px;
}

.alb-pdc-hero-image {
	width: 50%;
	flex: 0 0 auto;
}

.alb-pdc-hero-image img {
	width: 100%;
	height: auto;
	max-width: 100%;
	display: block;
	object-fit: scale-down;
}

.alb-pdc-hero-info {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 0;
}

.alb-pdc-title {
	text-decoration: none;
	display: block;
}

.alb-pdc-title-text {
	font-size: 30px;
	line-height: 36px;
	font-weight: 700;
	margin: 0;
	color: inherit;
}

.alb-pdc-hook {
	font-size: 14px;
	line-height: 20px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	color: var(--contrast, #1a1a1a);
}

.alb-pdc-hero-btn-wrap {
	margin-top: 24px;
}

.alb-pdc-button {
	letter-spacing: 0.4px;
	line-height: 24px;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	padding: 8px;
	text-overflow: ellipsis;
	overflow: hidden;
	color: #ffffff !important;
	text-decoration: none;
	display: inline-block;
	white-space: nowrap;
	min-width: 11rem;
}

.alb-pdc-button:hover {
	opacity: 0.9;
	color: #ffffff;
}

/* Sections */
.alb-pdc-section {
	padding: 24px 8px;
	border-top: 1.33px solid #f2f2f2;
}
.alb-pdc-details {
	border-bottom: 1.33px solid #f2f2f2;
}

.alb-pdc-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding-right: 8px;
}

.alb-pdc-section-header h3 {
	font-size: 24px;
	line-height: 32px;
	font-weight: 700;
	margin: 0;
}

.alb-pdc-toggle-icon {
	display: inline-flex;
	align-items: center;
}

.alb-pdc-chevron {
	width: 0.75rem;
	height: 12px;
}

/* Good & Bad grid */
.alb-pdc-goodbad-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 8px;
}

.alb-pdc-good-list,
.alb-pdc-bad-list {
	list-style: none;
	margin: 8px 0 0;
	padding: 0;
	line-height: 24px;
}

.alb-pdc-good-list li,
.alb-pdc-bad-list li {
	display: grid;
	grid-template-columns: 8% auto;
	align-items: baseline;
	padding: 2px 0;
}

.alb-pdc-icon-check {
	width: 1.25rem;
	height: 20px;
	color: #007938;
	display: block;
	padding-top: 4px;
}

.alb-pdc-icon-x {
	width: 1.25rem;
	height: 20px;
	color: #cd0404;
	display: block;
	padding-top: 4px;
}

/* Accordion body */
.alb-pdc-section-body {
	margin-top: 8px;
	font-size: 16px;
	line-height: 28px;
	color: var(--body-text, #0a1829);
}

.alb-pdc-section-body p {
	font-size: 18px;
	line-height: 28px;
	margin: 16px 0 0;
}

.alb-pdc-section-body p:first-child {
	margin-top: 8px;
}

/* Details list */
.alb-pdc-detail-list {
	list-style-type: disc;
	margin: 8px 0 0 32px;
	padding: 0;
}

.alb-pdc-detail-list li {
	padding: 2px 0;
}

/* Get It */
.alb-pdc-getit {
	padding: 32px 8px;
}

.alb-pdc-getit-label {
	font-weight: 700;
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	padding: 16px 0;
}

.alb-pdc-getit-btn-wrap {
	display: flex;
	justify-content: center;
}

/* Mobile */
@media (max-width: 767px) {
	.alb-pdc-hero {
		flex-direction: column;
	}

	.alb-pdc-hero-image,
	.alb-pdc-hero-info {
		width: 100%;
	}

	.alb-pdc-goodbad-grid {
		grid-template-columns: 1fr;
	}

	.alb-pdc-good-list li,
	.alb-pdc-bad-list li {
		grid-template-columns: 10% auto;
	}
}
/* ===== FAQ BLOCK ===== */
.alb-faq-outer {
	border: 1.33px solid #e8e8e8;
	padding: 24px 28px;
	margin-bottom: 1.5em;
}

.alb-faq-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 8px;
}

.alb-faq-heading {
	font-size: 22px;
	font-weight: 700;
	margin: 0;
	color: var(--contrast, #1a1a1a);
}
.alb-faq-collapse-all {
	display: none;
}

.alb-faq-collapse-all:hover {
	background: #f5f5f5 !important;
	color: inherit !important;
}

.alb-faq-collapse-all svg {
	width: 12px;
	height: 12px;
}

.alb-faq-wrapper {
	border: none;
}

.alb-faq-item {
	border-top: 1px solid #e8e8e8;
	padding: 20px 0;
}

.alb-faq-item:last-child {
	padding-bottom: 0;
}

/* Question row */
.alb-faq-question {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	padding: 0;
	gap: 0;
}

.alb-faq-question::before {
	content: '•';
	font-size: 28px;
	line-height: 20px;
	margin-right: 12px;
	color: var(--contrast, #1a1a1a);
	flex-shrink: 0;
}

.alb-faq-question h3 {
	font-size: 16px;
	line-height: 22px;
	font-weight: 700;
	margin: 0;
	flex: 1;
	color: var(--contrast, #1a1a1a);
}

.alb-faq-toggle-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	margin-left: 16px;
}

.alb-faq-chevron {
	width: 0.75rem;
	height: 12px;
}

/* Answer */
.alb-faq-answer {
	padding: 8px 0 0 22px;
}

.alb-faq-answer-inner {
	font-size: 15px;
	line-height: 24px;
	color: var(--contrast, #0a1829);
	position: relative;
}

.alb-faq-answer-inner.alb-faq-truncated {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	max-height: none !important;
}

.alb-faq-answer-inner p {
	margin: 0 0 12px;
}

.alb-faq-answer-inner p:last-child {
	margin-bottom: 0;
}

/* Show more link */
.alb-faq-show-more {
	margin-top: 6px;
	padding: 0 !important;
	border: none !important;
	background: none !important;
	font-size: 14px;
	font-weight: 400;
	color: var(--accent, #5046e5) !important;
	cursor: pointer;
	text-decoration: none;
	display: block;
}

.alb-faq-show-more:hover {
	text-decoration: underline;
	background: none !important;
	color: var(--accent, #5046e5) !important;
}

/* Mobile */
@media (max-width: 767px) {
	.alb-faq-outer {
		padding: 16px 20px;
	}

	.alb-faq-question h3 {
		font-size: 15px;
		line-height: 20px;
	}

	.alb-faq-answer-inner {
		font-size: 14px;
		line-height: 22px;
	}
}