/**
 * Explore864 homepage and DMO section components.
 *
 * @package Explore864
 */

.explore864-homepage,
.explore864-attractions-archive {
	--dmo-color-primary: var(--explore864-color-primary, #0f3d4e);
	--dmo-color-secondary: var(--explore864-color-secondary, #e8b923);
	--dmo-color-accent: var(--explore864-color-accent, #145a6e);
	--dmo-color-forest: var(--explore864-color-forest, #1b3b2b);
	--dmo-color-surface: var(--explore864-color-surface, #fafafa);
	--dmo-color-elevated: var(--explore864-color-elevated, #fff);
	--dmo-color-text: var(--explore864-color-text, #1f2937);
	--dmo-color-muted: var(--explore864-color-muted, #6b7280);
	--dmo-color-border: var(--explore864-color-border, #e5e7eb);
	--dmo-color-gold-bar: var(--explore864-color-gold-bar, #fff);
	--dmo-radius: var(--explore864-radius-md, 14px);
	--dmo-radius-lg: var(--explore864-radius-lg, 20px);
	--dmo-section-gap: var(--explore864-section-gap, 5rem);
	--dmo-container-max: var(--explore864-container-max, 1280px);
}

.dmo-section-header {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 0.5rem 2rem;
	align-items: center;
	max-width: var(--dmo-container-max);
	margin: 0 auto 2.5rem;
	padding: 0 1.25rem;
	text-align: left;
}

.dmo-section-header h2 {
	grid-column: 1;
	margin-bottom: 0;
}

.dmo-section-header p {
	grid-column: 1;
}

.dmo-section-header h2 {
	color: var(--dmo-color-text);
	font-family: var(--explore864-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	margin: 0 0 0.65rem;
	text-transform: none;
	letter-spacing: -0.02em;
}

.dmo-section-header p {
	color: var(--dmo-color-muted);
	margin: 0;
	max-width: 36rem;
	font-size: 1.0625rem;
	line-height: 1.6;
}

.dmo-section-header__actions {
	grid-column: 2;
	grid-row: 1 / span 2;
	margin-top: 0;
	align-self: center;
}

.dmo-section-header__actions a {
	font-weight: 600;
	text-decoration: none;
	color: var(--dmo-color-primary);
	background: transparent;
	border: 1px solid var(--dmo-color-border);
	border-radius: 999px;
	padding: 0.55rem 1.15rem;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.dmo-section-header__actions a:hover {
	background: var(--dmo-color-primary);
	border-color: var(--dmo-color-primary);
	color: #fff;
}

.explore864-home-section {
	margin-bottom: 0;
	padding: 0 1.25rem;
}

.explore864-home-section--band {
	background: var(--dmo-color-elevated);
	padding-top: clamp(3rem, 6vw, 5rem);
	padding-bottom: clamp(3rem, 6vw, 5rem);
	margin-bottom: 0;
}

.explore864-block-preview {
	border: 1px dashed var(--explore864-color-border, #e5e7eb);
	border-radius: 12px;
	padding: 1.25rem;
	background: #fff;
}

.explore864-block-preview h2,
.explore864-block-preview h3 {
	margin-top: 0;
}

.explore864-home-section--hero {
	padding: 0;
}

.explore864-home-section + .explore864-home-section:not(.explore864-home-section--hero) {
	padding-top: clamp(3rem, 6vw, 5rem);
}

.explore864-home-section__inner {
	max-width: var(--dmo-container-max);
	margin: 0 auto;
}

.explore864-home-section__inner--full {
	max-width: none;
}

.explore864-home-section--newsletter {
	padding-left: 0;
	padding-right: 0;
}

/* Hero — Wayfarer vertical flow */
.explore864-hero-dmo {
	background: var(--dmo-color-elevated);
	padding: clamp(2rem, 5vw, 3rem) 1.25rem clamp(4rem, 7vw, 5rem);
}

.explore864-hero-dmo__inner {
	max-width: var(--dmo-container-max);
	margin: 0 auto;
}

.explore864-hero-dmo__top {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.explore864-hero-dmo__headline h1 {
	color: var(--dmo-color-text);
	font-family: var(--explore864-font-heading);
	font-size: clamp(2.75rem, 7vw, 4.25rem);
	font-weight: 800;
	line-height: 1.02;
	margin: 0;
	letter-spacing: -0.04em;
}

.explore864-hero-dmo__lede p {
	color: var(--dmo-color-muted);
	font-size: 1rem;
	line-height: 1.65;
	margin: 0 0 1.25rem;
	max-width: 28rem;
}

.explore864-hero-dmo__cta {
	font-size: 0.875rem;
	padding: 0.55rem 1.15rem;
}

.explore864-hero-dmo__stage {
	position: relative;
}

.explore864-hero-dmo__media {
	border-radius: var(--dmo-radius-lg);
	box-shadow: var(--explore864-shadow-lg);
	min-height: clamp(320px, 42vw, 480px);
	overflow: hidden;
	position: relative;
}

.explore864-hero-dmo__media img {
	display: block;
	height: 100%;
	min-height: clamp(320px, 42vw, 480px);
	object-fit: cover;
	width: 100%;
}

.explore864-hero-dmo__media--default {
	background:
		linear-gradient(180deg, rgba(15, 61, 78, 0.08) 0%, rgba(15, 61, 78, 0.28) 100%),
		linear-gradient(135deg, #3d9eb8 0%, var(--dmo-color-primary) 55%, #0a2a35 100%);
}

.explore864-hero-dmo__finder {
	left: 50%;
	max-width: min(920px, calc(100% - 2rem));
	position: absolute;
	top: calc(100% - 2.75rem);
	transform: translateX(-50%);
	width: 100%;
	z-index: 2;
}

.explore864-hero-dmo__links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: center;
	margin-top: 3.5rem;
}

.explore864-hero-dmo__links a {
	color: var(--dmo-color-muted);
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
}

.explore864-hero-dmo__links a:hover {
	color: var(--dmo-color-primary);
	text-decoration: underline;
}

/* Trip finder */
.explore864-trip-finder {
	display: grid;
	grid-template-columns: repeat(3, 1fr) auto;
	gap: 0.75rem;
	align-items: end;
	background: var(--dmo-color-elevated);
	padding: 1.1rem 1.25rem;
	border-radius: var(--dmo-radius-lg);
	box-shadow: var(--explore864-shadow-lg);
	border: 1px solid var(--dmo-color-border);
	width: 100%;
}

.explore864-trip-finder__field label {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.4rem;
	color: var(--dmo-color-muted);
}

.explore864-trip-finder__field select,
.explore864-trip-finder__field input {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--dmo-color-border);
	border-radius: var(--dmo-radius);
	background: var(--dmo-color-surface);
	font-family: var(--explore864-font-body);
	font-size: 0.9375rem;
}

.explore864-trip-finder__submit {
	white-space: nowrap;
	border-radius: 50%;
	width: 52px;
	height: 52px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	background: var(--dmo-color-primary);
}

.explore864-trip-finder__submit::after {
	content: "";
	width: 18px;
	height: 18px;
	background: currentColor;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-4.35-4.35M11 18a7 7 0 100-14 7 7 0 000 14z'/%3E%3C/svg%3E") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 21l-4.35-4.35M11 18a7 7 0 100-14 7 7 0 000 14z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 768px) {
	.explore864-hero-dmo__top {
		grid-template-columns: 1fr;
	}

	.explore864-hero-dmo__finder {
		position: static;
		transform: none;
		margin-top: 1rem;
		max-width: none;
	}

	.explore864-hero-dmo__links {
		margin-top: 1.5rem;
		justify-content: flex-start;
	}

	.explore864-trip-finder {
		grid-template-columns: 1fr;
	}
}

/* Category grid */
.explore864-category-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 180px;
	gap: var(--explore864-masonry-gap, 1rem);
}

.explore864-category-tile {
	position: relative;
	display: block;
	border-radius: var(--dmo-radius-lg);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-color: var(--dmo-color-primary);
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.explore864-category-tile:hover {
	transform: translateY(-3px);
	box-shadow: var(--explore864-shadow-lg);
}

.explore864-category-tile--0 { grid-column: span 3; grid-row: span 2; }
.explore864-category-tile--1 { grid-column: span 3; }
.explore864-category-tile--2 { grid-column: span 2; }
.explore864-category-tile--3 { grid-column: span 2; }
.explore864-category-tile--4 { grid-column: span 2; }

.explore864-category-tile__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.65) 100%);
}

.explore864-category-tile__content {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.explore864-category-tile__content strong {
	font-size: 1.125rem;
	font-family: var(--explore864-font-heading);
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.explore864-category-tile__cta {
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	opacity: 0.85;
}

@media (max-width: 768px) {
	.explore864-category-grid {
		grid-template-columns: 1fr 1fr;
		grid-auto-rows: 160px;
	}
	.explore864-category-tile--0,
	.explore864-category-tile--1,
	.explore864-category-tile--2,
	.explore864-category-tile--3,
	.explore864-category-tile--4 {
		grid-column: span 1;
		grid-row: span 1;
	}
	.explore864-category-tile--0 { grid-column: span 2; }
}

/* Carousel / tour packages */
.explore864-carousel__track {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}

.explore864-carousel__track .explore864-tour-card {
	flex: 0 0 min(300px, 82vw);
	scroll-snap-align: start;
}

.explore864-carousel__track .explore864-tour-card.is-featured {
	flex-basis: min(340px, 88vw);
}

.explore864-carousel__card {
	display: block;
	background: var(--dmo-color-elevated);
	border-radius: var(--dmo-radius-lg);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--explore864-shadow-sm);
	border: 1px solid var(--dmo-color-border);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	flex: 0 0 min(300px, 82vw);
	scroll-snap-align: start;
}

.explore864-carousel__card:hover {
	transform: translateY(-4px);
	box-shadow: var(--explore864-shadow-lg);
}

.explore864-carousel__card img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	display: block;
}

.explore864-carousel__card-body {
	padding: 1.15rem;
}

.explore864-carousel__card-body strong {
	display: block;
	font-family: var(--explore864-font-heading);
	font-size: 1.0625rem;
	color: var(--dmo-color-primary);
	margin-bottom: 0.35rem;
}

.explore864-carousel__card-body p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--dmo-color-muted);
	line-height: 1.5;
}

.explore864-carousel__nav {
	display: flex;
	justify-content: flex-end;
	gap: 0.5rem;
	margin-top: 1rem;
}

.explore864-carousel__nav button {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--dmo-color-border);
	background: var(--dmo-color-elevated);
	font-size: 1.25rem;
	cursor: pointer;
	box-shadow: var(--explore864-shadow-sm);
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

.explore864-carousel__nav button:hover {
	background: var(--dmo-color-primary);
	border-color: var(--dmo-color-primary);
	color: #fff;
}

@media (max-width: 768px) {
	.explore864-carousel__track .explore864-tour-card,
	.explore864-carousel__track .explore864-tour-card.is-featured,
	.explore864-carousel__card {
		flex-basis: min(280px, 88vw);
	}
}

/* Featured slider */
.explore864-featured-slider {
	position: relative;
	border-radius: var(--dmo-radius-lg);
	overflow: hidden;
	min-height: 360px;
}

.explore864-featured-slider__image {
	width: 100%;
	height: 360px;
	object-fit: cover;
	display: block;
}

.explore864-featured-slider__overlay {
	position: absolute;
	inset: auto 0 0 0;
	padding: 2rem;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
	color: #fff;
}

.explore864-featured-slider__controls {
	position: absolute;
	top: 1rem;
	right: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.9);
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
}

/* Events strip */
.explore864-events-strip {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.explore864-events-strip__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.explore864-events-strip__list a {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 0.75rem;
	padding: 0.85rem 0;
	border-bottom: 1px solid var(--dmo-color-border);
	text-decoration: none;
	color: inherit;
}

.explore864-events-strip__date {
	font-weight: 700;
	color: var(--dmo-color-secondary);
}

.explore864-events-strip__featured {
	display: block;
	background: var(--dmo-color-forest);
	color: #fff;
	border-radius: var(--dmo-radius-lg);
	overflow: hidden;
	text-decoration: none;
}

.explore864-events-strip__featured img {
	width: 100%;
	height: 180px;
	object-fit: cover;
}

.explore864-events-strip__featured div {
	padding: 1.25rem;
}

.explore864-events-strip__badge {
	display: inline-block;
	background: var(--dmo-color-secondary);
	color: #1a1a1a;
	font-size: 0.75rem;
	font-weight: 700;
	padding: 0.2rem 0.5rem;
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
	.explore864-events-strip { grid-template-columns: 1fr; }
}

/* Map */
.explore864-map-section {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 1.5rem;
	align-items: stretch;
}

.explore864-map-section__visual img,
.explore864-map-section__visual iframe {
	width: 100%;
	min-height: 320px;
	border: 0;
	border-radius: var(--dmo-radius-lg);
}

.explore864-map-section__card {
	background: var(--dmo-color-forest);
	color: #fff;
	border-radius: var(--dmo-radius-lg);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.75rem;
}

.explore864-map-section__card .dmo-btn--primary {
	align-self: flex-start;
	background: var(--dmo-color-secondary);
	color: #1a1a1a;
	border: 0;
}

@media (max-width: 768px) {
	.explore864-map-section { grid-template-columns: 1fr; }
}

/* Compact feed */
.explore864-compact-feed__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
}

.explore864-compact-feed__track {
	display: flex;
	gap: 1rem;
	overflow-x: auto;
	padding-bottom: 0.5rem;
	scroll-snap-type: x mandatory;
}

.explore864-compact-feed__card {
	flex: 0 0 260px;
	scroll-snap-align: start;
	background: var(--dmo-color-elevated);
	border: 1px solid var(--dmo-color-border);
	border-radius: var(--dmo-radius);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: var(--explore864-shadow);
}

.explore864-compact-feed__card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
}

.explore864-compact-feed__body {
	padding: 0.85rem;
}

.explore864-compact-feed__body p {
	font-size: 0.875rem;
	color: var(--dmo-color-muted);
	margin: 0.35rem 0 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Social wall */
.explore864-social-wall__header {
	text-align: center;
	margin-bottom: 1.5rem;
}

.explore864-social-wall__grid {
	column-count: 4;
	column-gap: 1rem;
}

.explore864-social-wall__tile {
	break-inside: avoid;
	width: 100%;
	margin-bottom: 1rem;
	padding: 0;
	border: 0;
	border-radius: var(--dmo-radius);
	overflow: hidden;
	cursor: pointer;
	background: transparent;
}

.explore864-social-wall__tile img {
	width: 100%;
	display: block;
	border-radius: var(--dmo-radius);
}

.explore864-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 2rem;
	color: #fff;
}

.explore864-lightbox img {
	max-width: min(90vw, 720px);
	max-height: 70vh;
	border-radius: var(--dmo-radius);
}

@media (max-width: 768px) {
	.explore864-social-wall__grid { column-count: 2; }
}

/* Newsletter — full-bleed bar */
.explore864-newsletter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	background: var(--dmo-color-primary);
	color: #fff;
	padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 3rem);
	border-radius: 0;
	box-shadow: none;
	width: 100%;
}

.explore864-newsletter-bar h2,
.explore864-newsletter-bar p {
	margin: 0;
}

.explore864-newsletter-bar h2 {
	font-family: var(--explore864-font-heading);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
}

.explore864-newsletter-bar__form {
	display: flex;
	gap: 0.5rem;
	flex: 1;
	min-width: 280px;
	max-width: 480px;
}

.explore864-newsletter-bar__form input[type="email"] {
	flex: 1;
	padding: 0.75rem 1rem;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.explore864-newsletter-bar__form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.explore864-newsletter-bar__form button {
	border-radius: 999px;
	background: var(--dmo-color-secondary);
	color: var(--dmo-color-primary);
	border: 0;
	padding: 0.75rem 1.35rem;
	font-weight: 700;
	cursor: pointer;
}

.explore864-hp {
	position: absolute;
	left: -9999px;
	opacity: 0;
}

/* Effortless Travel section */
.explore864-home-section--effortless {
	background: var(--dmo-color-surface);
}

.explore864-effortless-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.explore864-effortless-block__visual {
	min-height: 420px;
	position: relative;
}

.explore864-effortless-block__photo {
	background-position: center;
	background-size: cover;
	border-radius: var(--dmo-radius-lg);
	box-shadow: var(--explore864-shadow-lg);
	position: absolute;
}

.explore864-effortless-block__photo--primary {
	background-image: linear-gradient(135deg, #3d9eb8 0%, var(--dmo-color-accent) 100%);
	inset: 0 18% 10% 0;
}

.explore864-effortless-block__photo--secondary {
	background-image: linear-gradient(135deg, var(--dmo-color-primary) 0%, #0a2a35 100%);
	border: 4px solid var(--dmo-color-elevated);
	bottom: 0;
	height: 52%;
	right: 0;
	width: 42%;
}

.explore864-effortless-block__chip {
	font-size: 0.8125rem;
	left: 0;
	padding: 0.55rem 1rem;
	position: absolute;
	top: 0.75rem;
	z-index: 2;
}

.explore864-effortless-block__content h2 {
	color: var(--dmo-color-text);
	font-family: var(--explore864-font-heading);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	margin: 0 0 0.75rem;
}

.explore864-effortless-block__content > p {
	color: var(--dmo-color-muted);
	line-height: 1.65;
	margin: 0 0 1.5rem;
}

.explore864-effortless-list {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.explore864-effortless-list__item a {
	background: var(--dmo-color-elevated);
	border: 1px solid var(--dmo-color-border);
	border-radius: var(--dmo-radius);
	color: inherit;
	display: block;
	padding: 1rem 1.15rem;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.explore864-effortless-list__item a strong {
	color: var(--dmo-color-text);
	display: block;
	font-family: var(--explore864-font-heading);
	font-size: 0.9375rem;
	margin-bottom: 0.2rem;
}

.explore864-effortless-list__item a span {
	color: var(--dmo-color-muted);
	display: block;
	font-size: 0.875rem;
	line-height: 1.45;
}

.explore864-effortless-list__item.is-active a,
.explore864-effortless-list__item a:hover {
	background: var(--dmo-color-primary);
	border-color: var(--dmo-color-primary);
}

.explore864-effortless-list__item.is-active a strong,
.explore864-effortless-list__item.is-active a span,
.explore864-effortless-list__item a:hover strong,
.explore864-effortless-list__item a:hover span {
	color: #fff;
}

.explore864-intro-block__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.5rem;
}

.explore864-intro-block__badges img {
	max-height: 48px;
	width: auto;
}

/* Community compact strip */
.explore864-community-feed-strip {
	background: var(--dmo-color-elevated);
	padding-bottom: 1.5rem !important;
	padding-top: 1.5rem !important;
}

.explore864-community-feed-strip .explore864-compact-feed__header h2 {
	font-size: 1.125rem;
}

@media (max-width: 900px) {
	.explore864-effortless-block {
		grid-template-columns: 1fr;
	}

	.explore864-effortless-block__visual {
		min-height: 300px;
	}
}

/* Experience book row */
.explore864-experience-row {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}

.explore864-experience-row .explore864-card--media {
	padding: 0;
	overflow: hidden;
}

.explore864-experience-row .explore864-card__image img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.explore864-experience-row .explore864-card__body {
	padding: 1rem;
}
