/* Genomada Accommodations — Ficha individual. */

.gacc-single-header {
	margin: 1.5rem 0 1.2rem;
}

.gacc-single-location {
	color: #575760;
	font-size: 0.95rem;
	margin: 0 0 0.2em;
}

.gacc-single-location a {
	color: #575760;
	text-decoration: none;
	border-bottom: 1px solid #B7B597;
}

.gacc-single-title {
	font-size: clamp(1.9rem, 5vw, 2.6rem);
	margin: 0 0 0.3em;
	color: #222;
	line-height: 1.15;
}

.gacc-single-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-bottom: 0.6rem;
}

.gacc-single-date {
	color: #575760;
	font-size: 0.9rem;
}

/* Galería */
.gacc-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin: 1.4rem 0 2rem;
}

.gacc-gallery a {
	position: relative;
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #DAD3BE;
}

.gacc-gallery .gacc-gallery-lead {
	grid-column: 1 / -1;
	aspect-ratio: 16 / 9;
}

.gacc-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.gacc-gallery a:hover img {
	transform: scale(1.03);
}

.gacc-gallery figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: #fff;
	font-size: 0.8rem;
	padding: 18px 12px 8px;
}

@media (min-width: 700px) {
	.gacc-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Layout contenido + aside (como single-trips del tema) */
.gacc-single-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 2.5rem;
	align-items: start;
}

.gacc-single-content {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #222;
}

.gacc-single-content h2 {
	margin-top: 2rem;
	margin-bottom: 0.8rem;
	font-size: 1.4rem;
	color: #254336;
}

.gacc-single-content p {
	margin-bottom: 1.3rem;
}

.gacc-single-aside {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.gacc-booking-card {
	background: #f7f8f9;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 18px;
}

.gacc-btn-booking {
	display: flex;
	width: 100%;
	background: #254336;
	color: #fff;
	border-color: #254336;
	text-align: center;
	font-size: 1.05rem;
}

.gacc-btn-booking:hover,
.gacc-btn-booking:focus {
	background: #1d3128;
	border-color: #1d3128;
	color: #fff;
}

.gacc-booking-note {
	color: #575760;
	font-size: 0.78rem;
	text-align: center;
	margin: 8px 0 0;
}

.gacc-price {
	margin: 14px 0 0;
	font-size: 0.95rem;
}

.gacc-price span {
	color: #575760;
}

.gacc-aside-title {
	font-size: 1rem;
	margin: 18px 0 8px;
	color: #254336;
}

.gacc-services-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gacc-services-list li {
	font-size: 0.95rem;
	color: #222;
}

.gacc-address {
	margin: 0;
	font-size: 0.95rem;
}

.gacc-related-trip .gacc-btn-secondary {
	width: 100%;
	text-align: center;
}

/* Relacionados ("Otros alojamientos en…") */
.gacc-related {
	margin: 2.5rem 0 1rem;
}

.gacc-related > h2 {
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

/* Mini-mapa */
.gacc-single-map {
	margin: 2.5rem 0 1rem;
}

.gacc-single-map h2 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	color: #254336;
}

.gacc-minimap {
	height: 320px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #e5e7eb;
	z-index: 0;
}

.gacc-map-links {
	margin-top: 12px;
}

/* Responsive: apilar */
@media (max-width: 900px) {
	.gacc-single-layout {
		grid-template-columns: 1fr;
	}
	.gacc-single-aside {
		position: static;
	}
	.gacc-minimap {
		height: 260px;
	}
}
