/* BP Preuves & Documents widget styles
 *
 * Résultats page "LES PREUVES DERRIÈRE LES RÉSULTATS" section.
 *
 * Width architecture (HARD CONSTRAINT):
 *   .bp-pd            full-viewport section (cream BG + faded photo)
 *     .bp-pd__bg      absolute, full-bleed agricultural photo
 *     .bp-pd__bg-tint absolute, cream wash
 *     .bp-pd__decor   2 screen-edge botanicals (LEFT / RIGHT)
 *     .bp-pd__inner   max-inline-size 1140px, centered
 *       .bp-pd__header   eyebrow + serif title + paragraph
 *       .bp-pd__cards    vertical stack of horizontal document cards
 *         .bp-pd__card   3-col grid: cover | content | action
 *       .bp-pd__proof   bottom proof strip
 *
 * Approved palette ONLY:
 *   #374F37  deep green
 *   #FBF6EC  cream
 *   #B8B25A  olive / gold
 *   #FFFFFF  white
 *   + existing neutrals (#1F2A1F, #5C6A5C, #E4DCCB).
 */

.bp-pd {
	--bp-pd-green:        #374F37;
	--bp-pd-olive:        #B8B25A;
	--bp-pd-cream:        #FBF6EC;
	--bp-pd-white:        #FFFFFF;
	--bp-pd-text:         #1F2A1F;
	--bp-pd-text-muted:   #5C6A5C;
	--bp-pd-border:       #E4DCCB;

	--bp-pd-inner-max:    1140px;
	--bp-pd-card-radius:  18px;
	--bp-pd-cover-w:      190px;
	--bp-pd-btn-w:        180px;
	--bp-pd-gap:          20px;

	--bp-pd-font-body:    var(--bp-font-body, 'Manrope', system-ui, sans-serif);
	--bp-pd-font-display: var(--bp-font-display, 'DM Serif Display', Georgia, serif);

	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	inline-size: 100vw;
	margin-inline: calc(50% - 50vw);
	padding-block: 70px;
	padding-inline: 0;
	background-color: transparent;
	color: var(--bp-pd-text);
	font-family: var(--bp-pd-font-body);
	overflow: hidden;
}

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

/* =========================================================
 * FULL-WIDTH BACKGROUND IMAGE + CREAM TINT
 * (these are absolute siblings of .bp-pd__inner, NOT inside
 * the 1140px layer)
 * ========================================================= */
.bp-pd__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	opacity: 0.18;
	pointer-events: none;
}

.bp-pd__bg-tint {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: transparent;
	pointer-events: none;
}

/* =========================================================
 * BOTANICAL DECORATIONS — anchored to SCREEN EDGE
 * (never to the 1140px inner)
 * ========================================================= */
.bp-pd__decor {
	--bp-pd-decor-x: 0px;
	--bp-pd-decor-y: 0px;
	--bp-pd-decor-rot: 0deg;

	position: absolute;
	z-index: 1;
	pointer-events: none;
	display: none;
	color: #374F37;
	inline-size: 260px;
	block-size: auto;
	transform: translate(var(--bp-pd-decor-x), var(--bp-pd-decor-y)) rotate(var(--bp-pd-decor-rot));
	transform-origin: center center;
}

.bp-pd__decor.is-on {
	display: block;
}

.bp-pd__decor-img,
.bp-pd__decor-svg {
	display: block;
	inline-size: 100%;
	block-size: auto;
	object-fit: contain;
	color: currentColor;
}

.bp-pd__decor--left {
	inset-block-start: 40px;
	left: 0;
	right: auto;
}
.bp-pd__decor--right {
	inset-block-start: 60px;
	right: 0;
	left: auto;
}

/* =========================================================
 * INNER WRAPPER (1140px content)
 * ========================================================= */
.bp-pd__inner {
	position: relative;
	z-index: 2;
	inline-size: 100%;
	max-inline-size: var(--bp-pd-inner-max);
	margin-inline: auto;
	padding-inline: 0;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

/* =========================================================
 * HEADER
 * ========================================================= */
.bp-pd__header {
	inline-size: 100%;
	max-inline-size: 760px;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

.bp-pd__eyebrow {
	margin: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: var(--bp-pd-green);
	font-family: var(--bp-pd-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	line-height: 1;
}

.bp-pd__eyebrow-leaf {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 18px;
	block-size: 18px;
	color: #374F37;
}

.bp-pd__eyebrow-leaf svg {
	display: block;
	inline-size: 100%;
	block-size: 100%;
}

.bp-pd__eyebrow-line {
	display: inline-block;
	inline-size: 56px;
	block-size: 1.5px;
	background: var(--bp-pd-olive);
	opacity: 0.85;
}

.bp-pd__eyebrow-text {
	white-space: nowrap;
}

.bp-pd__title {
	margin: 0;
	max-inline-size: 760px;
	font-family: var(--bp-pd-font-display);
	font-weight: 400;
	font-size: 44px;
	line-height: 1.1;
	letter-spacing: -0.005em;
	color: var(--bp-pd-green);
}

.bp-pd__subtitle {
	margin: 0;
	max-inline-size: 620px;
	font-family: var(--bp-pd-font-body);
	font-size: 15px;
	line-height: 1.7;
	color: var(--bp-pd-text);
}

/* =========================================================
 * DOCUMENT CARDS LIST
 * ========================================================= */
.bp-pd__cards {
	display: flex;
	flex-direction: column;
	gap: var(--bp-pd-gap);
	inline-size: 100%;
}

.bp-pd__card {
	display: grid;
	grid-template-columns: var(--bp-pd-cover-w) minmax(0, 1fr) var(--bp-pd-btn-w);
	align-items: center;
	gap: 28px;
	inline-size: 100%;
	padding: 24px 28px;
	background-color: var(--bp-pd-cream);
	border: 1px solid var(--bp-pd-border);
	border-radius: var(--bp-pd-card-radius);
	box-shadow:
		0 1px 2px rgba(31, 42, 31, 0.04),
		0 14px 30px -12px rgba(31, 42, 31, 0.18);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.bp-pd__card:hover {
	box-shadow:
		0 1px 2px rgba(31, 42, 31, 0.05),
		0 22px 40px -14px rgba(31, 42, 31, 0.22);
}

/* =========================================================
 * COVER (3D physical-report look)
 * ========================================================= */
.bp-pd__cover {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	block-size: 250px;
	inline-size: 100%;
	padding: 16px 14px;
	background:
		linear-gradient(180deg, #ffffff 0%, #fbf6ec 100%);
	border: 1px solid rgba(31, 42, 31, 0.08);
	border-radius: 4px;
	box-shadow:
		0 2px 4px rgba(31, 42, 31, 0.08),
		0 18px 28px -10px rgba(31, 42, 31, 0.22);
	transform: rotate(-4deg);
	transform-origin: center center;
	overflow: hidden;
	color: var(--bp-pd-text);
	font-family: var(--bp-pd-font-body);
}

.bp-pd__cover-eyebrow {
	display: block;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bp-pd-green);
	line-height: 1.2;
}

.bp-pd__cover-brand {
	display: block;
	margin-block-start: 2px;
	font-size: 8.5px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bp-pd-text);
	line-height: 1.2;
}

.bp-pd__cover-country {
	display: block;
	margin-block-start: 10px;
	font-family: var(--bp-pd-font-display);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.18;
	color: var(--bp-pd-green);
	letter-spacing: -0.005em;
}

.bp-pd__cover-image {
	position: absolute;
	inset: 0;
	margin: auto;
	display: block;
	inline-size: 100%;
	block-size: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 4px;
	z-index: 0;
}

.bp-pd__cover-eyebrow,
.bp-pd__cover-brand,
.bp-pd__cover-country,
.bp-pd__cover-year,
.bp-pd__cover-extra {
	position: relative;
	z-index: 1;
}

.bp-pd__cover-year {
	display: block;
	font-size: 9.5px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--bp-pd-text);
	line-height: 1.3;
}

.bp-pd__cover-extra {
	display: block;
	margin-block-start: 4px;
	font-size: 8.5px;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: var(--bp-pd-text-muted);
	line-height: 1.4;
}

/* =========================================================
 * DOCUMENT CONTENT
 * ========================================================= */
.bp-pd__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-inline-size: 0;
}

.bp-pd__type {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--bp-pd-green);
	font-family: var(--bp-pd-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
}

.bp-pd__type-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 16px;
	block-size: 16px;
	color: var(--bp-pd-green);
}

.bp-pd__type-icon i,
.bp-pd__type-icon svg {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	color: inherit;
}

.bp-pd__type-text {
	white-space: nowrap;
}

.bp-pd__doc-title {
	margin: 0;
	font-family: var(--bp-pd-font-display);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: var(--bp-pd-green);
}

.bp-pd__desc {
	margin: 0;
	font-family: var(--bp-pd-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: var(--bp-pd-text);
}

/* =========================================================
 * METADATA CHIPS
 * ========================================================= */
.bp-pd__chips {
	margin: 6px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
}

.bp-pd__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background-color: var(--bp-pd-white);
	border: 1px solid var(--bp-pd-border);
	border-radius: 999px;
	font-family: var(--bp-pd-font-body);
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1;
	color: var(--bp-pd-green);
	white-space: nowrap;
}

.bp-pd__chip-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 12px;
	block-size: 12px;
	color: var(--bp-pd-green);
}

.bp-pd__chip-icon i,
.bp-pd__chip-icon svg {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	color: inherit;
}

.bp-pd__chip-text {
	color: var(--bp-pd-text);
}

/* =========================================================
 * ACTION (download button column)
 * ========================================================= */
.bp-pd__action {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	inline-size: 100%;
}

.bp-pd__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	inline-size: var(--bp-pd-btn-w);
	padding: 12px 10px;
	background-color: rgba(0, 0, 0, 0);
	color: var(--bp-pd-green);
	border: 1.5px solid var(--bp-pd-green);
	border-radius: 12px;
	font-family: var(--bp-pd-font-body);
	font-size: 12.5px;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.25;
	text-align: start;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color  0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.bp-pd__btn:hover,
.bp-pd__btn:focus-visible {
	background-color: var(--bp-pd-green);
	color: var(--bp-pd-cream);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px -8px rgba(55, 79, 55, 0.45);
	outline: none;
}

/* Hardened: download arrow turns cream on hover regardless
 * of the icon color control. */
.bp-pd__btn:hover .bp-pd__btn-icon,
.bp-pd__btn:hover .bp-pd__btn-icon i,
.bp-pd__btn:hover .bp-pd__btn-icon svg,
.bp-pd__btn:hover .bp-pd__btn-icon svg *,
.bp-pd__btn:focus-visible .bp-pd__btn-icon,
.bp-pd__btn:focus-visible .bp-pd__btn-icon i,
.bp-pd__btn:focus-visible .bp-pd__btn-icon svg,
.bp-pd__btn:focus-visible .bp-pd__btn-icon svg * {
	color: var(--bp-pd-cream);
	stroke: var(--bp-pd-cream);
}

.bp-pd__btn-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 18px;
	block-size: 18px;
	flex-shrink: 0;
}

.bp-pd__btn-icon i,
.bp-pd__btn-icon svg {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	color: inherit;
}

.bp-pd__btn-text {
	white-space: nowrap;
}

/* =========================================================
 * BOTTOM PROOF STRIP
 * ========================================================= */
.bp-pd__proof {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto minmax(0, 1.2fr) auto;
	align-items: center;
	gap: 24px;
	inline-size: 100%;
	padding: 24px 32px;
	background-color: var(--bp-pd-cream);
	border: 1px solid var(--bp-pd-olive);
	border-radius: 18px;
	box-shadow:
		0 1px 2px rgba(31, 42, 31, 0.04),
		0 14px 30px -12px rgba(31, 42, 31, 0.18);
}

.bp-pd__proof-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 56px;
	block-size: 56px;
	border-radius: 50%;
	background-color: rgba(55, 79, 55, 0.08);
	color: var(--bp-pd-green);
	flex-shrink: 0;
}

.bp-pd__proof-icon i,
.bp-pd__proof-icon svg {
	display: block;
	inline-size: 28px;
	block-size: 28px;
	color: inherit;
}

.bp-pd__proof-title {
	margin: 0;
	font-family: var(--bp-pd-font-display);
	font-weight: 400;
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: -0.005em;
	color: var(--bp-pd-green);
}

.bp-pd__proof-divider {
	display: inline-block;
	inline-size: 1px;
	block-size: 64px;
	background-color: var(--bp-pd-olive);
	opacity: 0.45;
}

.bp-pd__proof-body {
	margin: 0;
	font-family: var(--bp-pd-font-body);
	font-size: 13.5px;
	line-height: 1.6;
	color: var(--bp-pd-text);
}

.bp-pd__proof-illu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 72px;
	block-size: 88px;
	color: #374F37;
	flex-shrink: 0;
	opacity: 0.85;
}

.bp-pd__proof-illu-img,
.bp-pd__proof-illu-svg {
	display: block;
	inline-size: 100%;
	block-size: 100%;
	object-fit: contain;
	color: inherit;
}

/* =========================================================
 * ICON COLOR — FORCED #374F37
 * Every icon in this section is pinned to the Barbary
 * dark green with !important to override:
 *   - inherited currentColor from a wrong parent
 *   - inline style="fill=...;stroke=..." attributes
 *   - presentation attributes (fill="#000" / stroke="#000")
 *   - Elementor / FA injected color
 * Scoped to .bp-pd only; no global leak.
 *
 * Rules summary:
 *   1. Icon wrappers + SVG roots       → color #374F37
 *   2. SVG graphic primitives          → stroke #374F37
 *   3. Filled primitives (fill attr)   → fill #374F37
 *   4. Outline-only (fill="none")      → fill none, stroke #374F37
 *   5. Clipboard clip background rect  → fill #FBF6EC (preserved)
 * ========================================================= */

/* 1. Icon wrappers + SVG roots */
.bp-pd i,
.bp-pd i::before,
.bp-pd svg,
.bp-pd .bp-pd__eyebrow-leaf,
.bp-pd .bp-pd__eyebrow-leaf svg,
.bp-pd .bp-pd__type-icon,
.bp-pd .bp-pd__type-icon i,
.bp-pd .bp-pd__type-icon svg,
.bp-pd .bp-pd__chip-icon,
.bp-pd .bp-pd__chip-icon i,
.bp-pd .bp-pd__chip-icon svg,
.bp-pd .bp-pd__btn-icon,
.bp-pd .bp-pd__btn-icon i,
.bp-pd .bp-pd__btn-icon svg,
.bp-pd .bp-pd__proof-icon,
.bp-pd .bp-pd__proof-icon i,
.bp-pd .bp-pd__proof-icon svg,
.bp-pd .bp-pd__proof-illu,
.bp-pd .bp-pd__proof-illu svg,
.bp-pd .bp-pd__decor,
.bp-pd .bp-pd__decor-svg,
.bp-pd .bp-pd__decor-img {
	color: #374F37 !important;
	fill: #374F37 !important;
}

/* 2. SVG graphic primitives — force stroke #374F37 */
.bp-pd svg path,
.bp-pd svg circle,
.bp-pd svg line,
.bp-pd svg polyline,
.bp-pd svg polygon,
.bp-pd svg rect,
.bp-pd svg g,
.bp-pd svg use {
	stroke: #374F37 !important;
}

/* 3. Filled primitives (fill attribute present, not "none")
 *    → force fill to #374F37. This explicitly handles
 *      `fill="currentColor"`, `fill="#000"`, etc. */
.bp-pd svg path[fill]:not([fill="none"]),
.bp-pd svg circle[fill]:not([fill="none"]),
.bp-pd svg line[fill]:not([fill="none"]),
.bp-pd svg polyline[fill]:not([fill="none"]),
.bp-pd svg polygon[fill]:not([fill="none"]),
.bp-pd svg g[fill]:not([fill="none"]),
.bp-pd svg use[fill]:not([fill="none"]) {
	fill: #374F37 !important;
}

/* 4. Outline-only elements (fill="none") — preserve outline,
 *    force stroke to #374F37. */
.bp-pd svg [fill="none"] {
	fill: none !important;
	stroke: #374F37 !important;
}

/* 5. Clipboard clip background rect — keep cream, force stroke */
.bp-pd svg rect[fill="#FBF6EC"] {
	fill: #FBF6EC !important;
	stroke: #374F37 !important;
}

/* Hardened: download button arrow on hover → cream.
 * Kept from the previous turn; this guarantees the arrow
 * flips to cream regardless of the icon-color rules above. */
.bp-pd__btn:hover .bp-pd__btn-icon,
.bp-pd__btn:hover .bp-pd__btn-icon i,
.bp-pd__btn:hover .bp-pd__btn-icon svg,
.bp-pd__btn:hover .bp-pd__btn-icon svg *,
.bp-pd__btn:focus-visible .bp-pd__btn-icon,
.bp-pd__btn:focus-visible .bp-pd__btn-icon i,
.bp-pd__btn:focus-visible .bp-pd__btn-icon svg,
.bp-pd__btn:focus-visible .bp-pd__btn-icon svg * {
	color: var(--bp-pd-cream) !important;
	fill: var(--bp-pd-cream) !important;
	stroke: var(--bp-pd-cream) !important;
}

/* =========================================================
 * RESPONSIVE
 * ========================================================= */

/* Tablet (1024px and below): cover stays but action can move. */
@media (max-width: 1024px) {
	.bp-pd {
		--bp-pd-cover-w: 160px;
		--bp-pd-btn-w:   160px;
		--bp-pd-gap:     16px;
		padding-block: 54px;
	}

	.bp-pd__inner {
		gap: 36px;
	}

	.bp-pd__title {
		font-size: 36px;
	}

	.bp-pd__card {
		gap: 20px;
		padding: 20px 22px;
	}

	.bp-pd__cover {
		block-size: 220px;
	}

	.bp-pd__doc-title {
		font-size: 20px;
	}

	.bp-pd__desc {
		font-size: 13px;
	}

	.bp-pd__proof {
		gap: 18px;
		padding: 20px 24px;
	}

	.bp-pd__proof-title {
		font-size: 18px;
	}

	.bp-pd__decor--left {
		inset-block-start: 24px;
	}
	.bp-pd__decor--right {
		inset-block-start: 32px;
	}
	.bp-pd__decor {
		inline-size: 180px;
	}
}

/* Mobile (640px and below): cards stack vertically. */
@media (max-width: 640px) {
	.bp-pd {
		--bp-pd-cover-w: 140px;
		--bp-pd-btn-w:   100%;
		padding-block: 38px;
	}

	.bp-pd__inner {
		gap: 28px;
		padding-inline: 20px;
	}

	.bp-pd__title {
		font-size: 30px;
	}

	.bp-pd__eyebrow {
		letter-spacing: 0.16em;
	}

	.bp-pd__eyebrow-line {
		inline-size: 32px;
	}

	.bp-pd__card {
		grid-template-columns: 140px 1fr;
		grid-template-rows: auto auto;
		row-gap: 14px;
		column-gap: 14px;
		padding: 16px 18px;
	}

	.bp-pd__cover {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
		block-size: 200px;
	}

	.bp-pd__content {
		grid-row: 1 / 2;
		grid-column: 2 / 3;
	}

	.bp-pd__action {
		grid-row: 2 / 3;
		grid-column: 1 / 3;
		justify-content: stretch;
	}

	.bp-pd__btn {
		inline-size: 100%;
		justify-content: center;
	}

	.bp-pd__proof {
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto auto;
		row-gap: 14px;
		padding: 18px 20px;
	}

	.bp-pd__proof-icon {
		grid-row: 1 / 2;
		grid-column: 1 / 2;
		inline-size: 44px;
		block-size: 44px;
	}

	.bp-pd__proof-icon i,
	.bp-pd__proof-icon svg {
		inline-size: 22px;
		block-size: 22px;
	}

	.bp-pd__proof-title {
		grid-row: 1 / 2;
		grid-column: 2 / 3;
		font-size: 17px;
	}

	.bp-pd__proof-divider {
		display: none;
	}

	.bp-pd__proof-body {
		grid-row: 2 / 3;
		grid-column: 1 / 3;
	}

	.bp-pd__proof-illu {
		grid-row: 3 / 4;
		grid-column: 1 / 3;
		justify-self: center;
		inline-size: 60px;
		block-size: 74px;
	}

	.bp-pd__decor {
		inline-size: 130px;
		opacity: 0.7;
	}
	.bp-pd__decor--left {
		inset-block-start: 16px;
	}
	.bp-pd__decor--right {
		inset-block-start: 20px;
	}
}

/* Narrow-phone gutter scale (authoritative on this widget). */
@media ( max-width: 480px ) {
	.bp-pd__inner {
		padding-inline: 18px;
	}

	/* High-specificity mobile lock: card as single column,
	 * cover → content → action stacked, no 3-col bleed. */
	.elementor-22 .bp-pd__card {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) !important;
		grid-template-rows: auto auto auto !important;
		grid-auto-columns: minmax(0, 1fr) !important;
		grid-auto-flow: row !important;

		width: 100% !important;
		inline-size: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-inline-size: 0 !important;

		row-gap: 16px !important;
		column-gap: 0 !important;
		box-sizing: border-box !important;
	}

	.elementor-22 .bp-pd__card > .bp-pd__cover {
		grid-column: 1 !important;
		grid-row: 1 !important;
		width: 100% !important;
		inline-size: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-inline-size: 0 !important;
		margin: 0 !important;
	}
	.elementor-22 .bp-pd__card > .bp-pd__content {
		grid-column: 1 !important;
		grid-row: 2 !important;
		width: 100% !important;
		inline-size: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-inline-size: 0 !important;
		margin: 0 !important;
	}
	.elementor-22 .bp-pd__card > .bp-pd__action {
		grid-column: 1 !important;
		grid-row: 3 !important;
		width: 100% !important;
		inline-size: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		min-inline-size: 0 !important;
		margin: 0 !important;
	}
	.elementor-22 .bp-pd__action .bp-pd__btn {
		width: 100% !important;
		inline-size: 100% !important;
		max-width: 100% !important;
		box-sizing: border-box !important;
	}
}

@media ( max-width: 390px ) {
	.bp-pd__inner {
		padding-inline: 18px;
	}
}

@media ( max-width: 360px ) {
	.bp-pd__inner {
		padding-inline: 16px;
	}
}
