.wmw-adventuro-section {
	--wmw-ink: #0a284f;
	--wmw-meta: #68778b;
	--wmw-line: #e4e1dc;
	--wmw-action: #ff9200;
	--wmw-action-hover: #ed7f00;
	--wmw-star: #9bcf62;
	margin: 2.75rem 0;
}

.wmw-adventuro-heading { margin: 0 0 1.25rem; }

.wmw-adventuro-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 1.25rem;
}

.wmw-adventuro-card {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--wmw-line);
	border-radius: 16px;
	box-shadow: 0 3px 12px rgba(10, 40, 79, .08);
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wmw-adventuro-card:hover,
.wmw-adventuro-card:focus-within {
	transform: translateY(-3px);
	border-color: rgba(10, 40, 79, .28);
	box-shadow: 0 13px 30px rgba(10, 40, 79, .15);
}

.wmw-adventuro-card-link {
	display: flex;
	height: 100%;
	flex-direction: column;
	color: inherit !important;
	text-decoration: none !important;
	background: #fff;
}

.wmw-adventuro-card-link:focus-visible {
	outline: 3px solid rgba(255, 146, 0, .55);
	outline-offset: -3px;
}

.wmw-adventuro-media {
	position: relative;
	height: 205px;
	flex: 0 0 205px;
	overflow: hidden;
	background: linear-gradient(135deg, #eef2f4, #dfe6ea);
}

.wmw-adventuro-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}

.wmw-adventuro-card:hover .wmw-adventuro-image,
.wmw-adventuro-card:focus-within .wmw-adventuro-image { transform: scale(1.045); }

.wmw-adventuro-image-placeholder {
	display: grid;
	height: 100%;
	place-items: center;
	font-size: 3rem;
	color: #9aa8b6;
}

.wmw-adventuro-content {
	display: flex;
	flex: 1;
	min-width: 0;
	flex-direction: column;
	padding: 14px 16px 16px;
}

.wmw-adventuro-kicker {
	margin: 0 0 4px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: var(--wmw-meta);
}

.wmw-adventuro-title {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	min-height: 2.65em;
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.32;
	letter-spacing: -.012em;
	color: var(--wmw-ink);
}

.wmw-adventuro-summary {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 9px;
	margin: 8px 0 10px;
	font-size: .8rem;
	color: var(--wmw-meta);
}

.wmw-adventuro-location {
	display: flex;
	min-width: 0;
	flex: 1;
	align-items: center;
	gap: 4px;
	margin: 0;
}

.wmw-adventuro-location svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	fill: currentColor;
}

.wmw-adventuro-location span {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.wmw-adventuro-rating {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 2px;
	font-weight: 700;
	color: var(--wmw-ink);
}

.wmw-adventuro-rating b { font-size: 1rem; color: var(--wmw-star); }
.wmw-adventuro-rating small { font-size: .75rem; font-weight: 500; color: var(--wmw-meta); }

.wmw-adventuro-reveal {
	display: grid;
	grid-template-rows: 1fr;
	opacity: 1;
	transition: grid-template-rows .23s ease, opacity .23s ease;
}

.wmw-adventuro-reveal-inner {
	min-height: 0;
	overflow: hidden;
	padding: 10px 0 8px;
	border-top: 1px solid var(--wmw-line);
}

.wmw-adventuro-description {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin: 0;
	font-size: .82rem;
	font-weight: 400;
	line-height: 1.45;
	color: #26384b;
}

.wmw-adventuro-detail {
	margin: 4px 0 0;
	font-size: .72rem;
	line-height: 1.35;
	color: var(--wmw-meta);
}

.wmw-adventuro-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--wmw-line);
}

.wmw-adventuro-price-wrap { min-width: 0; }

.wmw-adventuro-price {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.015em;
	color: var(--wmw-ink);
}

.wmw-adventuro-price-note { margin: 5px 0 0; font-size: .68rem; color: var(--wmw-meta); }

.wmw-adventuro-button {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	padding: 7px 15px;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1;
	color: #1c2a38;
	background: var(--wmw-action);
	border-radius: 999px;
	transition: background-color .2s ease, color .2s ease;
}

.wmw-adventuro-card:hover .wmw-adventuro-button,
.wmw-adventuro-card:focus-within .wmw-adventuro-button { color: #fff; background: var(--wmw-action-hover); }

.wmw-adventuro-disclosure { margin: .9rem 0 0; font-size: .75rem; line-height: 1.45; color: var(--wmw-meta); }
.wmw-adventuro-empty, .wmw-adventuro-error { padding: .8rem 1rem; }
.wmw-adventuro-error { color: #8a1f11; background: #fff3f0; border-left: 4px solid #c83520; }

@media (hover: hover) and (pointer: fine) {
	.wmw-adventuro-reveal { grid-template-rows: 0fr; opacity: 0; }
	.wmw-adventuro-card:hover .wmw-adventuro-reveal,
	.wmw-adventuro-card:focus-within .wmw-adventuro-reveal { grid-template-rows: 1fr; opacity: 1; }
}

@media (max-width: 900px) {
	.wmw-adventuro-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
	.wmw-adventuro-grid { grid-template-columns: 1fr; }
	.wmw-adventuro-media { height: 220px; flex-basis: 220px; }
}

@media (prefers-reduced-motion: reduce) {
	.wmw-adventuro-card,
	.wmw-adventuro-image,
	.wmw-adventuro-reveal,
	.wmw-adventuro-button { transition: none; }
}
