/* Front page TugaHostel — Admin Tugahostel (apenas portada) */

:root {
	--ath-bg-deep: #0b0f14;
	--ath-bg-panel: #121922;
	--ath-text: #e8eef5;
	--ath-muted: rgba(232, 238, 245, 0.78);
	--ath-accent: #1e6b6b;
	--ath-accent-bright: #2a9d8f;
	--ath-header-h: 4.25rem;
	--ath-radius: 14px;
	--ath-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

.ath-front-page-body {
	margin: 0;
	background: var(--ath-bg-deep);
	color: var(--ath-text);
	font-family: var(--ath-font);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

.ath-skip-link {
	position: absolute;
	left: -9999px;
	top: 0.75rem;
	z-index: 100000;
	padding: 0.5rem 1rem;
	background: #fff;
	color: #0b0f14;
	font-weight: 600;
	border-radius: 6px;
}

.ath-skip-link:focus {
	left: 0.75rem;
	outline: 2px solid var(--ath-accent-bright);
}

/* Cabeçalho fixo */
.ath-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--ath-header-h);
	display: flex;
	align-items: center;
	background: rgba(11, 15, 20, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.ath-header__inner {
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 clamp(1rem, 4vw, 1.75rem);
	display: flex;
	align-items: center;
	justify-content: center;
}

.ath-header__logo {
	display: block;
	height: clamp(2rem, 5vw, 2.65rem);
	width: auto;
	object-fit: contain;
}

.ath-header__brand {
	font-size: clamp(1.15rem, 3vw, 1.4rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #fff;
}

/* Conteúdo principal */
.ath-main {
	padding-top: var(--ath-header-h);
}

/* Hero */
.ath-hero {
	min-height: calc(100vh - var(--ath-header-h));
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(1.5rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
	background: linear-gradient(165deg, #0f1419 0%, #152028 42%, #0b0f14 100%);
}

#ath-lottie-hero {
	width: min(100%, 360px);
	height: min(40vw, 220px);
	max-height: 240px;
	margin: 0 auto 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ath-hero-title {
	font-size: clamp(1.65rem, 4.8vw, 2.55rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.03em;
	margin: 0 0 1rem;
	color: #fff;
	max-width: 22ch;
}

.ath-hero-sub {
	font-size: clamp(1rem, 2.3vw, 1.2rem);
	line-height: 1.6;
	margin: 0 0 2rem;
	color: var(--ath-muted);
	max-width: 36ch;
}

.ath-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 1.9rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	background: linear-gradient(135deg, var(--ath-accent-bright) 0%, var(--ath-accent) 100%);
	border: none;
	border-radius: 999px;
	box-shadow: 0 6px 28px rgba(42, 157, 143, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ath-cta:hover,
.ath-cta:focus-visible {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 10px 36px rgba(42, 157, 143, 0.5);
	outline: none;
}

.ath-cta:focus-visible {
	outline: 2px solid #7dd3c0;
	outline-offset: 3px;
}

/* Secções genéricas */
.ath-section {
	padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
}

.ath-section--alt {
	background: var(--ath-bg-panel);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ath-section__inner {
	max-width: 1120px;
	margin: 0 auto;
}

.ath-section__title {
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin: 0 0 0.35rem;
	color: #fff;
}

.ath-section__lead {
	margin: 0 0 2rem;
	color: var(--ath-muted);
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	max-width: 42ch;
}

/* Quartos — grelha (+ MotoPress [mphb_rooms]) */
.ath-rooms-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.25rem, 3vw, 1.75rem);
}

@media (min-width: 640px) {
	.ath-rooms-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 960px) {
	.ath-rooms-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* O shortcode envolve os cartões: display:contents para a grelha aplicar aos .mphb-room-type */
.ath-rooms-grid--mphb > .mphb_sc_rooms-wrapper {
	display: contents;
}

.ath-rooms-grid--mphb .mphb-room-type {
	background: rgba(255, 255, 255, 0.03);
	border-radius: var(--ath-radius);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ath-rooms-grid--mphb .mphb-room-type:hover {
	transform: translateY(-4px);
	border-color: rgba(42, 157, 143, 0.35);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.ath-rooms-grid--mphb .mphb-loop-room-thumbnail {
	margin: 0;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: linear-gradient(135deg, #1a3a52 0%, #0d2133 100%);
}

.ath-rooms-grid--mphb .mphb-loop-room-thumbnail a {
	display: block;
	height: 100%;
	line-height: 0;
}

.ath-rooms-grid--mphb .mphb-loop-room-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ath-rooms-grid--mphb .mphb-room-type-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0;
	padding: 1.15rem 1.25rem 0.35rem;
	line-height: 1.25;
	color: #fff;
	border: none;
}

.ath-rooms-grid--mphb .mphb-room-type-title a {
	color: inherit;
	text-decoration: none;
}

.ath-rooms-grid--mphb .mphb-room-type-title a:hover,
.ath-rooms-grid--mphb .mphb-room-type-title a:focus-visible {
	color: var(--ath-accent-bright);
}

.ath-rooms-grid--mphb .mphb-room-type > p:not(.mphb-loop-room-thumbnail):not(.mphb-regular-price):not(.mphb-view-details-button-wrapper) {
	margin: 0 1.25rem;
	font-size: 0.875rem;
	color: var(--ath-muted);
	line-height: 1.55;
}

.ath-rooms-grid--mphb .mphb-room-type-details-title {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 1rem 1.25rem 0.4rem;
	color: rgba(232, 238, 245, 0.55);
	border: none;
}

.ath-rooms-grid--mphb .mphb-loop-room-type-attributes {
	list-style: none;
	margin: 0 1.25rem;
	padding: 0;
	font-size: 0.8125rem;
	color: var(--ath-muted);
	line-height: 1.5;
}

.ath-rooms-grid--mphb .mphb-loop-room-type-attributes li {
	margin: 0 0 0.35rem;
}

.ath-rooms-grid--mphb .mphb-attribute-title {
	font-weight: 600;
	color: rgba(232, 238, 245, 0.88);
	margin-right: 0.25rem;
}

.ath-rooms-grid--mphb .mphb-regular-price {
	margin: 0.85rem 1.25rem 0;
	font-size: 0.95rem;
	color: var(--ath-accent-bright);
	font-weight: 700;
}

.ath-rooms-grid--mphb .mphb-regular-price strong {
	font-weight: 700;
	color: rgba(232, 238, 245, 0.9);
	margin-right: 0.35rem;
}

.ath-rooms-grid--mphb .mphb-price {
	color: var(--ath-accent-bright);
	font-weight: 800;
}

.ath-rooms-grid--mphb .mphb-price-period {
	font-weight: 600;
	font-size: 0.8rem;
	color: var(--ath-muted);
	border-bottom: none;
	cursor: default;
}

.ath-rooms-grid--mphb .mphb-view-details-button-wrapper {
	margin: auto 1.25rem 1.35rem;
	padding-top: 0.75rem;
	text-align: center;
}

.ath-rooms-grid--mphb .mphb-view-details-button.button,
.ath-rooms-grid--mphb a.mphb-view-details-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.35rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff !important;
	background: linear-gradient(135deg, var(--ath-accent-bright) 0%, var(--ath-accent) 100%) !important;
	border: none !important;
	border-radius: 999px;
	box-shadow: 0 4px 18px rgba(42, 157, 143, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ath-rooms-grid--mphb .mphb-view-details-button.button:hover,
.ath-rooms-grid--mphb a.mphb-view-details-button:hover,
.ath-rooms-grid--mphb .mphb-view-details-button.button:focus-visible,
.ath-rooms-grid--mphb a.mphb-view-details-button:focus-visible {
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 26px rgba(42, 157, 143, 0.45);
	outline: none;
}

.ath-rooms-grid--mphb .mphb-not-found {
	grid-column: 1 / -1;
	text-align: center;
	margin: 0;
	padding: 1.5rem;
	color: var(--ath-muted);
	font-size: 0.95rem;
}

.ath-rooms-grid--mphb .mphb-pagination {
	grid-column: 1 / -1;
	margin-top: 0.5rem;
	text-align: center;
}

.ath-rooms-grid--mphb .mphb-pagination a,
.ath-rooms-grid--mphb .mphb-pagination span {
	display: inline-block;
	margin: 0.2rem;
	padding: 0.35rem 0.65rem;
	border-radius: 8px;
	color: var(--ath-text);
	text-decoration: none;
}

.ath-rooms-grid--mphb .mphb-pagination a:hover {
	background: rgba(42, 157, 143, 0.2);
	color: #fff;
}

/* Disponibilidade — bloco destacado (MotoPress) */
#ath-disponibilidade {
	scroll-margin-top: calc(var(--ath-header-h) + 1rem);
}

.ath-booking {
	padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(42, 157, 143, 0.12), transparent 55%),
		linear-gradient(180deg, #0e1318 0%, #0b0f14 100%);
}

.ath-booking--pulse {
	animation: ath-booking-pulse 1.6s ease;
}

@keyframes ath-booking-pulse {
	0%,
	100% {
		box-shadow: inset 0 0 0 0 rgba(42, 157, 143, 0);
	}
	40% {
		box-shadow: inset 0 0 0 3px rgba(42, 157, 143, 0.45);
	}
}

.ath-booking__card {
	max-width: 720px;
	margin: 0 auto;
	padding: clamp(1.5rem, 4vw, 2.25rem);
	background: rgba(18, 25, 34, 0.95);
	border: 1px solid rgba(42, 157, 143, 0.25);
	border-radius: calc(var(--ath-radius) + 4px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.ath-booking__title {
	font-size: clamp(1.35rem, 3vw, 1.65rem);
	font-weight: 800;
	margin: 0 0 0.5rem;
	text-align: center;
	color: #fff;
}

.ath-booking__intro {
	margin: 0 0 1.5rem;
	text-align: center;
	color: var(--ath-muted);
	font-size: 0.95rem;
}

.ath-booking__form {
	color: var(--ath-text);
}

/* MotoPress Hotel Booking — formulário de pesquisa no cartão */
.ath-booking__form .mphb_sc_search-wrapper {
	width: 100%;
}

.ath-booking__form .mphb_sc_search-form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
	align-items: flex-end;
	justify-content: center;
}

.ath-booking__form .mphb_sc_search-form > p {
	flex: 1 1 140px;
	min-width: 0;
	margin: 0;
}

.ath-booking__form .mphb_sc_search-form label {
	display: inline-block;
	margin-bottom: 0.35rem;
	color: rgba(232, 238, 245, 0.92);
	font-size: 0.875rem;
	font-weight: 600;
}

.ath-booking__form .mphb_sc_search-form br {
	display: none;
}

.ath-booking__form input[type="text"],
.ath-booking__form input[type="number"],
.ath-booking__form select {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: 0.65rem 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(0, 0, 0, 0.25);
	color: var(--ath-text);
}

.ath-booking__form p.mphb_sc_search-submit-button-wrapper {
	flex: 1 1 100%;
	text-align: center;
	margin-top: 0.35rem;
}

.ath-booking__form input[type="submit"].button,
.ath-booking__form input[type="submit"],
.ath-booking__form button[type="submit"] {
	padding: 0.75rem 1.75rem;
	font-weight: 700;
	border-radius: 999px;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, var(--ath-accent-bright), var(--ath-accent)) !important;
	color: #fff !important;
}

.ath-booking__fallback {
	text-align: center;
	padding: 1rem;
	color: var(--ath-muted);
	font-size: 0.95rem;
}

/* Localização */
.ath-location__grid {
	display: grid;
	gap: clamp(1.5rem, 4vw, 2rem);
	align-items: start;
}

@media (min-width: 768px) {
	.ath-location__grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}

.ath-location__text p {
	margin: 0 0 1rem;
	color: var(--ath-muted);
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	line-height: 1.65;
}

.ath-location__text p:last-child {
	margin-bottom: 0;
}

.ath-location__highlights {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ath-location__highlights li {
	padding: 1rem 1.15rem;
	background: rgba(255, 255, 255, 0.04);
	border-radius: var(--ath-radius);
	border: 1px solid rgba(255, 255, 255, 0.08);
	font-weight: 600;
	color: #fff;
	font-size: 0.95rem;
}

/* Rodapé */
.ath-footer {
	padding: 1.5rem clamp(1rem, 4vw, 2rem);
	text-align: center;
	font-size: 0.85rem;
	color: rgba(232, 238, 245, 0.45);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ath-footer p {
	margin: 0;
}

/* MotoPress search results: highlight best match, keep alternatives compact. */
.tuga-search-results {
	--tuga-results-accent: #d9b74a;
	--tuga-results-border: #e7dfc9;
	--tuga-results-text: #202020;
	--tuga-results-muted: #626262;
	--tuga-results-surface: #fff;
	display: block;
}

.tuga-search-results .mphb-room-type {
	position: relative;
	background: var(--tuga-results-surface);
	border: 1px solid var(--tuga-results-border);
	border-radius: 8px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.07);
	color: var(--tuga-results-text);
	margin: 0 0 1.5rem;
	padding: clamp(1.25rem, 3vw, 1.75rem);
}

.tuga-search-results .mphb-room-type.tuga-primary-room {
	border-color: var(--tuga-results-accent);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
	padding-top: clamp(3rem, 5vw, 3.5rem);
}

.tuga-search-results .mphb-room-type.tuga-primary-room::before {
	content: "Recomendado";
	position: absolute;
	top: 1rem;
	left: clamp(1.25rem, 3vw, 1.75rem);
	display: inline-flex;
	align-items: center;
	min-height: 1.75rem;
	padding: 0 0.75rem;
	border-radius: 8px;
	background: var(--tuga-results-accent);
	color: #161616;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-room-type-title {
	font-size: clamp(1.55rem, 3vw, 2rem);
	line-height: 1.2;
	margin-top: 0;
}

.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-room-type-title a {
	color: var(--tuga-results-text);
}

.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-room-type-gallery-wrapper,
.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-flexslider,
.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-room-type-gallery,
.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-loop-room-thumbnail {
	margin-bottom: 1.25rem;
	max-width: 100%;
}

.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-flexslider img,
.tuga-search-results .mphb-room-type.tuga-primary-room .mphb-loop-room-thumbnail img {
	border-radius: 8px;
	max-height: 420px;
	object-fit: cover;
	width: 100%;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr) auto;
	gap: 0.85rem 1rem;
	align-items: center;
	box-shadow: none;
	margin-bottom: 1rem;
	padding: 0.85rem 1rem;
}

.tuga-search-results .mphb-room-type.tuga-room-duplicated-in-recommendation {
	display: none !important;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery-wrapper,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-thumbnail {
	display: none !important;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .tuga-secondary-thumb {
	display: block;
	grid-column: 1;
	grid-row: 1 / span 3;
	height: 96px;
	margin: 0;
	overflow: hidden;
	width: 132px;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .tuga-secondary-thumb img {
	border-radius: 8px;
	display: block;
	height: 96px;
	object-fit: cover;
	width: 132px;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery-wrapper,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-thumbnail {
	grid-column: 1;
	grid-row: 1 / span 3;
	height: 96px;
	margin: 0;
	overflow: hidden;
	width: 132px;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider .slides,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider .slides > li {
	height: 96px !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 132px !important;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider .slides > li:not(:first-child),
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .flex-control-nav,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .flex-direction-nav {
	display: none !important;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider img,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-thumbnail img {
	border-radius: 8px;
	height: 96px;
	object-fit: cover;
	width: 132px;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-title {
	grid-column: 2;
	grid-row: 1;
	font-size: 1.08rem;
	line-height: 1.25;
	margin: 0;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-title a {
	color: var(--tuga-results-text);
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-regular-price {
	grid-column: 3;
	grid-row: 1;
	margin: 0;
	text-align: right;
	white-space: nowrap;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-regular-price,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-price {
	font-weight: 800;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-reserve-room-section,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-to-book-btn-wrapper {
	grid-column: 3;
	grid-row: 2;
	margin: 0;
	text-align: right;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-to-book-btn,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .button {
	border-radius: 8px;
	padding: 0.55rem 0.8rem;
	white-space: nowrap;
}

.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .entry-summary,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-excerpt,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-excerpt,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-type-attributes,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-details-title,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-view-details-button-wrapper,
.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-view-details-button {
	display: none !important;
}

@media (max-width: 720px) {
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) {
		grid-template-columns: 96px minmax(0, 1fr);
	}

	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery-wrapper,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-gallery,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-thumbnail,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .tuga-secondary-thumb,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .tuga-secondary-thumb img,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider .slides,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider .slides > li,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-flexslider img,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-loop-room-thumbnail img {
		height: 74px !important;
		width: 96px !important;
	}

	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-room-type-title,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-regular-price,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-reserve-room-section,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-to-book-btn-wrapper {
		grid-column: 2;
		text-align: left;
	}

	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-regular-price {
		grid-row: 2;
		white-space: normal;
	}

	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-reserve-room-section,
	.tuga-search-results .mphb-room-type:not(.tuga-primary-room) .mphb-to-book-btn-wrapper {
		grid-row: 3;
	}
}
