/* ==========================================================================
   LAS VEGAS DEALS — SHARED ENTITY STYLES

   Frontend styles shared across Hotels, Shows, Attractions, Venues,
   entity archives, taxonomy/location pages, offer cards, hero layouts,
   responsive behavior, and related UI components.

   Keep comments only where they explain non-obvious overrides,
   responsive exceptions, or integration behavior.
   ========================================================================== */

.lvd-card-button {
    display: block;
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light));
    color: #000 !important;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.25);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.lvd-card-button:focus-visible {
    outline: 3px solid #1e73be;
    outline-offset: 2px;
}

@media (hover:hover) {
    .lvd-card-button:hover {
        background: linear-gradient(135deg, #ffd56a, #ffe9b1);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(255, 215, 0, 0.45);
    }
}


.lvd-star-rating-row {    
    margin: 0.4rem 0 0.2rem;
    font-size: 0.95rem;
}

.lvd-star-rating-stars,
.lvd-star-rating-stars-card {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
}

.lvd-star-rating-base {
    color: #d0d0d0;
}

.lvd-star-rating-fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: #f5b301;
    white-space: nowrap;
}

.lvd-star-rating-text {
    font-size: 0.9rem;
    color: #555;
}


.lvd-meta-label {
    font-weight: 600;
    color: #444;
    margin-right: 4px;
}


.lvd-pill,
.lvd-amenity-pill,
.lvd-location-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #333;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}


/* Generic pill hover; some contexts override this below. */
.lvd-pill:hover,
.lvd-amenity-pill:hover {
    background: #f3efe2;
    border-color: var(--lvd-gold);
    color: #111;
}


.lvd-pill.active,
.lvd-amenity-pill.active,
.lvd-location-pill.active,
.lvd-location-pill-current {
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light));
    border-color: #c8a12f;
    color: #000 !important;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}


/* GeneratePress button overrides for pill-style controls. */
button.lvd-pill,
button.lvd-amenity-pill {
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #333;
    box-shadow: none;    
}

button.lvd-pill.active,
button.lvd-amenity-pill.active,
button.lvd-location-pill.active {
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light)) !important;
    border-color: #c8a12f !important;
    color: #000 !important;
    font-weight: 600 !important;    
}


.lvd-location-pill {
    text-decoration: none !important;
}

.lvd-location-pill-card {    
    margin-bottom: 0.75rem !important;
}

/* Align attraction archive card metadata pills. */
.post-type-archive-attraction
.lvd-card-body > .lvd-entity-badge--attraction {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 12px;
    margin-bottom: 0.75rem;
    vertical-align: top;
}

.lvd-location-pill:hover {
	background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light)) !important;
	border-color: var(--lvd-gold) !important;
	color: #000 !important;
}


.lvd-location-pill-current {
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light)) !important;
    border-color: var(--lvd-gold) !important;
    color: #000 !important;    
}


.tax-lvd_location .lvd-amenity-pill {
    margin: 0 0.45rem 0.5rem 0 !important;
}


html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .lvd-card-button,
    .lvd-hotel-card-v2,
    .lvd-offer-item,
    .lvd-offer-button-small,
    .lvd-offer-button {
        transition: none;
    }

    .lvd-card-button:hover,
    .lvd-hotel-card-v2:hover,
    .lvd-offer-item:hover,
    .lvd-offer-button-small:hover,
    .lvd-offer-button:hover {
        transform: none;
    }
}

.lvd-hotel-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lvd-hotel-gallery-item img {
    width: 180px;
    border-radius: 6px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lvd-hotel-gallery-item img:hover {
    opacity: 0.85;
}

.lvd-hotel-gallery-item a:focus-visible {
    outline: 2px solid #111;
    outline-offset: 3px;
    border-radius: 6px;
}

.lvd-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.85);
	padding: 40px 20px;
	z-index: 10000;
	text-align: center;
}

.lvd-lightbox:target {
	display: block;
}

.lvd-lightbox img {
	max-width: 95%;
	max-height: 80vh;
	border-radius: 8px;
}

.lvd-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 32px;
	line-height: 1;
	color: #fff;
	text-decoration: none;
}

.lvd-lightbox-close:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}


.lvd-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lvd-faq-item {
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
}


.lvd-faq-item summary {
    padding: 0.75rem 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;    
}

.lvd-faq-item summary:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
}

.lvd-faq-answer {
    padding: 0 1rem 0.75rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}


.lvd-card-faq {
	margin-top: 2.5rem;
}

.lvd-faq-accordion summary::after {
	content: none !important;
	display: none !important;
}

.lvd-faq-accordion summary::-webkit-details-marker {
	display: none;
}

.lvd-faq-accordion summary::marker {
	content: "";
}


.lvd-card-verdict {
	background: transparent;
	border: none;
	padding: 1.2rem 1.4rem;
}

.lvd-card-snapshot-verdict .lvd-snapshot-verdict-list,
.lvd-card-verdict .lvd-snapshot-list {
	margin: 0;
	padding-left: 1.2rem;
}

.lvd-card-snapshot-verdict .lvd-snapshot-verdict-list li,
.lvd-card-verdict .lvd-snapshot-list li {
	margin-bottom: 0.4rem;
}

.lvd-card-snapshot-verdict .lvd-snapshot-verdict-list li:last-child,
.lvd-card-verdict .lvd-snapshot-list li:last-child {
	margin-bottom: 0;
}


   
.lvd-card-inbody-cta {
	text-align: center;
	padding: 1.75rem 1.25rem;
}

.lvd-card-inbody-cta h2 {
	margin-bottom: 0.4rem;
	font-size: 1.6rem;
}

.lvd-inbody-cta-text {
	margin: 0 auto 0.75rem;
	max-width: 560px;
	line-height: 1.5;
}

.lvd-inbody-cta-more {
	margin-top: 0.85rem;
	font-size: 0.95rem;
}


.lvd-archive-header h1,
.lvd-hotel-archive h1 {
    font-size: 2.25rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin: 0 0 0.5rem !important;
    color: #222;
}


.lvd-hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 2.2rem;
    margin-top: 2rem;
}

.lvd-hotel-card-v2 {
    background: #ffffff;
    border: 1px solid #e9e3d2;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover:hover) {
    .lvd-hotel-card-v2:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
        border-color: #d4af37;
    }
}

.lvd-card-thumb img {
	height: 230px;
}

.lvd-card-body {
    padding: 1.35rem 1.5rem 1.2rem;
    flex: 1;
}

.lvd-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: #222;
}

.lvd-card-title a {
    color: inherit;
    text-decoration: none;
}

.lvd-card-title a:hover {
    color: #6b5600;
}

.lvd-card-rating {
    margin: 0.25rem 0 0.5rem;
    font-size: 0.95rem;
    color: #444;
}

.lvd-card-price {
    margin: 0.25rem 0 0.75rem;
    font-size: 0.95rem;
    color: #444;
}

.lvd-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.15rem;
}


.lvd-card-amenities::before {
    content: "Amenities:";
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e1e1e !important;
    margin-bottom: 7px;
    letter-spacing: 0.1px;
}


.lvd-card-amenities span {
    display: inline-block;
    padding: 6px 14px;
    margin: 4px 6px 0 0;
    background: #fffdf7 !important;
    border: 1px solid #d4af37 !important;
    color: #333 !important;
    border-radius: 18px;
    font-size: 0.85rem;
    line-height: 1;
    pointer-events: none !important;
    transition: none !important;
}

.lvd-card-footer {
    border-top: 1px solid #eee5cc;
    padding: 1.15rem 1.4rem;
    text-align: center;
}


.post-type-archive-hotel main.site-main {
	margin-top: 0;
}


.lvd-location-archive {
    padding: 2.5rem 0;
}

.lvd-location-archive .lvd-hotel-grid {
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 2rem;
	margin-top: 30px;
}

@media (min-width: 1024px) {
	.lvd-location-archive .lvd-hotel-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.lvd-location-header {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.lvd-location-header .lvd-page-title {
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.lvd-location-intro {
    font-size: 1.05rem;
    color: #444;
    margin: 0 0 1.75rem;
    line-height: 1.7;
}

.lvd-amenity-pills {
    margin-bottom: 0.75rem;
}

.lvd-location-pills {
    margin-bottom: 1rem;
}


.lvd-location-archive .lvd-pagination {
	margin-bottom: 1rem;
}


.tax-lvd_location #primary {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


.post-type-archive-attraction .lvd-location-archive,
.post-type-archive-show .lvd-location-archive,
.post-type-archive-hotel .lvd-location-archive {
	padding-top: 0 !important;
}


.lvd-filter-wrap > * {
	margin-bottom: 1.25rem;
}

.lvd-pill-row {
	margin-top: 0;
}


@media (max-width: 768px) {

	.lvd-location-archive .lvd-card-faq {
		margin-top: 2rem;
	}

	.lvd-location-archive .lvd-filter-wrap,
	.lvd-hotel-archive .lvd-filter-wrap {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}


.lvd-hotel-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
    margin-bottom: 0.5rem;
}

.lvd-hotel-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
}

.lvd-hotel-hero-text {
    padding: 0 20px;
}

.lvd-hotel-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b5600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.lvd-hotel-hero-text h1.entry-title {
    font-size: 2.4rem;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.lvd-hotel-excerpt {
    font-size: 1.15rem;
    color: #444;
    max-width: 550px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.lvd-hotel-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

.lvd-hotel-meta li {
    margin: 4px 0;
}

.lvd-hotel-hero-image {
    width: 100%;
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.lvd-hotel-main {
    padding: 1.25rem 0 2.5rem;
}

.lvd-hotel-main-inner {
    gap: 2.5rem;    
    position: relative;
}

.lvd-hotel-sidebar {    
    max-width: 360px;
}

.lvd-hotel-main-content {    
    min-width: 0;
}


.lvd-highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    row-gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lvd-highlights-list li {
    position: relative;
    padding-left: 1.55rem;
    margin: 0.4rem 0;
    font-size: 1.05rem;
    line-height: 1.45;
}

.lvd-highlights-list li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1.15rem;
    color: #d4af37;
}


.single-hotel .entry-content,
.single-hotel .lvd-card-overview {
    margin-top: 0.25rem !important;
}


.lvd-offers-list {
    list-style: none;
    margin: 0;
    padding: 0;
}


.lvd-offers-mobile-top {
	display: none;
	min-height: 0;
}


/* Mobile/tablet offer layout replaces the sidebar through 1024px. */
@media (max-width: 1024px) {
    .lvd-offers-mobile-top {
        display: block !important;
        margin: 1.5rem 0 2rem;
    }

    .lvd-offers-sidebar {
        display: none !important;
    }
}


/* Short viewports also use the mobile offer layout. */
@media (max-height: 600px) {
    .lvd-offers-mobile-top {
        display: block !important;
    }

    .lvd-offers-sidebar {
        display: none !important;
    }
}


.lvd-offer-item {
    background: #0f0f0f;
    background-image:
        radial-gradient(circle at top left, rgba(255, 215, 0, 0.08), transparent 70%),
        radial-gradient(circle at bottom right, rgba(255, 215, 0, 0.08), transparent 70%),
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.03) 0px,
            rgba(255, 255, 255, 0.03) 2px,
            transparent 2px,
            transparent 6px
        );
    border: 1px solid rgba(255, 215, 0, 0.35);
    border-radius: 14px;
    padding: 1.35rem 1.75rem;
    margin-bottom: 1.35rem;
    box-shadow:
        0 0 8px rgba(255, 215, 0, 0.14),
        inset 0 0 10px rgba(255, 215, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.2s ease;
    color: #fff;
}

@media (hover: hover) {
    .lvd-offer-item:hover {
        transform: translateY(-4px);
        border-color: rgba(255, 215, 0, 0.75);
        box-shadow:
            0 0 18px rgba(255, 215, 0, 0.25),
            inset 0 0 14px rgba(255, 215, 0, 0.08);
    }
}


.lvd-offer-type-small,
.lvd-offer-type {
	font-size: 1rem;
	font-weight: 700;
	color: #f7de83;
	margin: 0 0 0.45rem;
	letter-spacing: 0.02em;
}

.lvd-offer-type {
	text-transform: uppercase;
}

.lvd-offer-title-small {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.45rem;
    color: #fff;
}

.lvd-offer-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.55rem;
    color: #fff;
}

.lvd-offer-price-small,
.lvd-offer-price-text {
    font-size: 1rem;
    font-weight: 700;
    color: #ffeba7;
    margin: 0 0 0.5rem;
}

.lvd-offer-desc {
    font-size: 0.95rem;
    color: #f5f5f5;
    line-height: 1.5;
    margin: 0 0 1rem;
}


.lvd-offer-button-small,
.lvd-offer-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light));
    color: #000 !important;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.lvd-offer-button:focus-visible {
    outline: 3px solid #1e73be;
    outline-offset: 2px;
}

@media (hover:hover) {
    .lvd-offer-button-small:hover,
    .lvd-offer-button:hover {
        background: linear-gradient(135deg, #ffd56a, #ffe9b1);
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(255, 215, 0, 0.45);
    }
}


@media (max-width: 480px) {
    .lvd-offer-item {
        padding: 1.15rem 1.25rem;
    }

    .lvd-offer-title-small {
        font-size: 1.15rem;
    }

    .lvd-offer-button-small {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
}


.lvd-show-more-deals,
.lvd-hotel-more-deals {
	margin-top: 0.75rem;
	padding-top: 0.25rem;
}


.lvd-sticky-cta {
	display: none;
}

@media (max-width: 768px) {

	.lvd-sticky-cta {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #1a2238;
		padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
		text-align: center;
		z-index: 9999;
		box-shadow: 0 -6px 18px rgba(0,0,0,0.25);
		border-top: 1px solid rgba(255,255,255,0.08);
	}

	.lvd-sticky-cta a {
		display: block;
		color: #f5d27a;
		font-weight: 600;
		text-decoration: none;
		font-size: 1rem;
		letter-spacing: 0.2px;
		padding: 0.6rem 0;
	}

	.lvd-sticky-cta a:focus-visible {
		outline: 2px solid #ffffff;
		outline-offset: 3px;
	}

	.lvd-sticky-cta a::after {
		content: " →";
	}

	body.single-hotel:has(.lvd-sticky-cta),
	body.single-show:has(.lvd-sticky-cta) {
		padding-bottom: calc(70px + env(safe-area-inset-bottom));
	}
}


.lvd-offer-mobile .lvd-offer-pill--highlight {	
	margin: 0.35rem 0 0.65rem;
}

@media (max-width: 768px) {

	.lvd-offers-mobile-top,
	.lvd-offers-mobile-list {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	.lvd-offers-mobile-list .lvd-offer-item {
		margin-bottom: 1.25rem !important;
		border-radius: 14px !important;
		overflow: hidden;
	}

	.lvd-offers-mobile-list .lvd-offer-item img {
		border-radius: 12px;
	}

	.lvd-offers-mobile-list .lvd-offer {
		padding: 1.25rem !important;
	}

	.lvd-offers-mobile-list .lvd-offer-title {
		text-align: center;
	}

	.lvd-offers-mobile-list .lvd-offer > * + * {
		margin-top: 0.65rem;
	}
}


.lvd-offer-item.lvd-offer--attraction {
    background: linear-gradient(145deg, #004f68 0%, #008fb4 45%, #00c2e8 100%);
    border-color: rgba(0, 194, 232, 0.7);
    box-shadow:
        0 0 10px rgba(0, 194, 232, 0.25),
        inset 0 0 10px rgba(0, 0, 0, 0.15);    
}

.lvd-offer-item.lvd-offer--attraction .lvd-offer-desc {
    color: rgba(255, 255, 255, 0.94);
}


.lvd-offer-item.lvd-offer--attraction .lvd-offer-price-small,
.lvd-offer-item.lvd-offer--attraction .lvd-offer-price-text {
    color: #fff9c4; 
}


.lvd-offer-property-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;    
    padding: 0.45rem 0.85rem;
    margin: -0.15rem 0 0.75rem;   
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}


.lvd-offer-property-label--hotel {
    background: linear-gradient(135deg, #151008 0%, #3b2c0a 60%, #5a430f 100%);
    border-color: rgba(255, 215, 0, 0.6);
}

.lvd-offer-property-label--attraction {
    background: linear-gradient(135deg, #00475f 0%, #006d8e 55%, #00a7cd 100%);
    border-color: rgba(0, 199, 232, 0.6);
}

.lvd-offer-property-label--show {
    background: linear-gradient(135deg, #48217a 0%, #6b32c9 55%, #9a63ff 100%);
    border-color: rgba(180, 144, 255, 0.7);
}


.lvd-offer-property-emoji {
    font-size: 1.1rem;
    line-height: 1;
    flex: 0 0 auto;
}

.lvd-offer-property-text {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;  
}


/* Preserve spacing when an offer has no property-label bar. */
.lvd-offer-item .lvd-offer-type-small {
    margin-top: 0.1rem;
}


@media (max-width: 768px) {
    .lvd-offer-property-label {
        font-size: 0.82rem;
        padding: 0.4rem 0.75rem;
        margin-bottom: 0.65rem;
    }
}

@media (max-width: 480px) {
    .lvd-offer-property-label {
        font-size: 0.78rem;
        padding: 0.38rem 0.6rem;
        border-radius: 7px;
    }

    .lvd-offer-property-emoji {
        font-size: 1rem;
    }
}


@media (max-width: 1024px) {
    .lvd-hotel-hero {
        padding: 45px 0;
    }

    .lvd-hotel-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lvd-hotel-hero-image {
        height: 280px;
        max-width: 620px;
        margin: 0 auto;
    }

    .single-hotel .lvd-hotel-hero-image {
		width: calc(100% - 32px);
		max-width: 720px;
		height: auto;		
	}

	.single-attraction .lvd-hotel-hero-image {
        width: calc(100% - 32px);
        max-width: 720px;        
    }

    .lvd-hotel-main-inner {
        gap: 2rem;
    }

    .lvd-hotel-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.75rem;
    }
}


@media (max-width: 900px) {
    .lvd-hotel-gallery-item img {
        width: 31%;
    }
}


@media (max-height: 600px) {
    .lvd-hotel-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lvd-hotel-hero-image {
        height: 220px;
    }
}


@media (max-width: 768px) {
    
    .lvd-hotel-hero {
        padding: 35px 0 25px;
    }

    .lvd-hotel-hero-text {
        padding-left: 10px;
        padding-right: 10px;
    }

    .lvd-hotel-hero-text h1.entry-title {
        font-size: 2rem;
    }

    .lvd-hotel-excerpt {
        font-size: 1.05rem;
    }

    
    .lvd-hotel-main {
        padding: 2rem 0;
    }

    .lvd-highlights-list {
        grid-template-columns: 1fr;
    }

    .lvd-hotel-grid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .lvd-hotel-card-v2 {
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        margin-bottom: 1.75rem;        
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    }

    .lvd-hotel-card-v2 .lvd-card-body,
    .lvd-hotel-card-v2 .lvd-card-footer {
        padding: 1rem;
    }

    .tax-lvd_location .lvd-page-title {
        font-size: 1.9rem !important;
        line-height: 1.25;
        margin-top: 0.4rem !important;
        margin-bottom: 0.4rem !important;
    }

    .tax-lvd_location .lvd-location-intro {
        margin-top: 0.2rem !important;
        margin-bottom: 1.25rem !important;
        font-size: 1rem !important;
    }

    .tax-lvd_location .lvd-pill-row {
        margin-top: 0.75rem !important;
        margin-bottom: 1rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    
    /* Remove GeneratePress horizontal padding on hotel/amenity archives. */
    body.tax-hotel_amenity .site-container,
    body.tax-hotel_amenity .site-content,
    body.tax-hotel_amenity .inside-article,
    body.post-type-archive-hotel .site-container,
    body.post-type-archive-hotel .site-content,
    body.post-type-archive-hotel .inside-article {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    
    .post-type-archive-hotel h1.lvd-page-title {
        font-size: 1.9rem !important;
        line-height: 1.25 !important;
        margin-top: 0.4rem !important;
        margin-bottom: 0.4rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .tax-hotel_amenity .lvd-amenity-intro,
    .post-type-archive-hotel .lvd-amenity-intro {
        font-size: 1rem !important;
        line-height: 1.45 !important;
        margin-top: 0.2rem !important;
        margin-bottom: 1.25rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .single-hotel .lvd-card-faq,
	.single-attraction .lvd-card-faq,
	.single-show .lvd-card-faq {
		margin-bottom: 1.5rem !important;
	}

    
    /* Restore intentional gutters on archive headings and intro content. */
    .lvd-archive-header,    
    .lvd-amenity-intro {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    
    .single-hotel .lvd-hotel-main,    
    .single-hotel .lvd-hotel-main .lvd-section-title,
    .single-hotel .lvd-offers-mobile-top,
    .single-hotel .lvd-offers-list,
    .single-hotel .lvd-hotel-hero,
    .single-hotel .lvd-hotel-hero-text {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    


    
    .tax-lvd_location .lvd-location-archive {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
	
	/* Restore mobile gutters on custom Show/Attraction location headers. */
	body:not(.tax-lvd_location) .lvd-location-header {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
	
    .tax-lvd_location .lvd-location-header,
    .tax-lvd_location .lvd-location-intro {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    
    .tax-lvd_location .lvd-amenity-pills {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    
    .tax-lvd_location .lvd-location-pills .lvd-location-pill {
        margin-right: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    
    .tax-lvd_location .lvd-hotel-grid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}


@media (max-width: 480px) {
    .lvd-hotel-gallery-item img {
        width: 48%;
    }

    .lvd-card-title {
        font-size: 1.2rem;
    }

    .lvd-card-thumb img {
        height: 200px;
    }

    .lvd-card-body {
        padding: 1.2rem 1.15rem;
    }

    .lvd-card-footer {
        padding: 1rem 1.1rem;
    }
}


.lvd-amenity-pill:not(.active):hover {
    background: #f8f8f8 !important;
    border-color: #ddd !important;
    color: #333 !important;
}


.lvd-amenity-pill.active {
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light)) !important;
    border-color: var(--lvd-gold) !important;
    color: #000 !important;
}


.grid-container.lvd-location-archive {
    padding-top: 0 !important;
    margin-top: 0 !important;
}


.single-hotel .lvd-hotel-hero-text .lvd-location-pill,
.single-attraction .lvd-hotel-hero-text .lvd-location-pill {
    margin-bottom: 0.75rem !important;    
}


@media (max-width: 768px) {

    .lvd-pill-row.lvd-amenity-pills {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 0.75rem;
        margin-bottom: 1.25rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .lvd-pill-row.lvd-amenity-pills::-webkit-scrollbar {
        display: none;
    }

    .lvd-pill-row.lvd-amenity-pills .lvd-pill {
        scroll-snap-align: start;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }

    .lvd-pill-scroll-outer {
        position: relative;
        margin-left: -0.25rem;
        margin-right: -0.25rem;
        padding: 0 0.25rem;
    }

    .lvd-pill-scroll-outer::before,
    .lvd-pill-scroll-outer::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 18px;
        pointer-events: none;
        z-index: 2;
    }

    .lvd-pill-scroll-outer::before {
        left: 0;
        background: linear-gradient(to right, #fafafa, rgba(250,250,250,0));
    }

    .lvd-pill-scroll-outer::after {
        right: 0;
        background: linear-gradient(to left, #fafafa, rgba(250,250,250,0));
    }
	
	.lvd-pill-row.lvd-location-pills {
        display: block;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .lvd-pill-row.lvd-location-pills::-webkit-scrollbar {
        display: none;
    }

    .lvd-pill-row.lvd-location-pills .lvd-pill {
        scroll-snap-align: start;
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
}


.lvd-pill-label,
.lvd-pill-label--secondary {
    font-weight: 600;
    margin-bottom: 0.35rem;
    display: block;
}


.lvd-pill-row .lvd-pill {    
    padding: 9px 16px;
    border-radius: 999px;
    background: #f5f5f5;
    border: 1px solid #e1e1e1;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    transition: background .15s ease, border-color .15s ease,
                box-shadow .15s ease, color .15s ease;
}

.lvd-pill-row .lvd-pill:not([aria-current="page"]):hover {
    background: #eeeeee;
    border-color: #d6d6d6;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}


.lvd-pill-row .lvd-amenity-pill.active,
.lvd-pill-row .lvd-location-pill-current {
    background: linear-gradient(135deg, var(--lvd-gold), var(--lvd-gold-light));
    border-color: var(--lvd-gold);
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.18);
}

.single-attraction .lvd-hotel-hero-image img {
    height: 100%;
}


.single-attraction .entry-content,
.single-attraction .lvd-card-overview {
    margin-top: 0.25rem !important;
}

@media (max-width: 768px) {

    .single-attraction .lvd-hotel-main h2,
    .single-attraction .lvd-hotel-main h3,
    .single-attraction .lvd-hotel-main h4,
    .single-attraction .lvd-hotel-main .wp-block-heading,
    .single-attraction .lvd-hotel-main .lvd-section-title,
    .single-hotel .lvd-hotel-main h2 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .single-attraction .lvd-hotel-hero-inner {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .single-attraction .lvd-hotel-main-content {
        background: #ffffff;
        padding: 1.5rem;
        border-radius: 12px;
    }

    .single-attraction .lvd-hotel-main-content .lvd-card:last-child {
        margin-bottom: 0;
    }

    .single-show .lvd-hotel-hero-image {
        height: 280px;
    }

    .single-show .lvd-hotel-hero-image img {
        height: 100%;
    }
}


.single-attraction .lvd-offers-mobile-top {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.single-attraction .lvd-offers-mobile-list .lvd-offer-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
    border-radius: 12px !important;
}


/* Prevent hotel offer cards from touching tablet viewport edges. */
@media (max-width: 1024px) {

    .single-hotel .lvd-offers-mobile-top {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .single-hotel .lvd-offers-mobile-list .lvd-offer-item {
        margin-left: 0 !important;
        margin-right: 0 !important;
        border-radius: 12px !important;
    }
}


@media (max-width: 900px) {
    .single-hotel .lvd-offers-mobile-top,
    .single-attraction .lvd-offers-mobile-top {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}


.lvd-offer-type-small {
    font-family: inherit, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";    
}


@media (max-width: 768px) {

  .single-hotel .inside-article,
  .single-attraction .inside-article {
    background: transparent !important;
    padding: 0 !important;
    box-shadow: none !important;
  }

  .single-hotel .entry-content,
  .single-attraction .entry-content {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .single-hotel .lvd-hotel-main-inner,
  .single-attraction .lvd-hotel-main-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}


.lvd-hotel-amenities-card {
    padding: 1.5rem;
}

.lvd-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
}

.lvd-amenities-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
}

.lvd-amenity-icon {
    color: var(--lvd-gold);
    font-size: 0.9rem;
    line-height: 1.2;
    margin-top: 0.15rem;
}

.lvd-amenity-text {
    flex: 1;
}

.lvd-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lvd-sidebar-list li {
    margin-bottom: 0.5rem;
}

.lvd-sidebar-list a {
    text-decoration: none;
    font-weight: 500;
}


.lvd-offer-pill--highlight {
	display: inline-block;
	margin-bottom: 6px;
}


.lvd-offer-pill--highlight + .lvd-offer-title-small,
.lvd-offer-pill--highlight + .lvd-offer-title{
	margin-top: 4px;
}


@media (max-width: 768px) {

  
  .single-hotel .lvd-hotel-main-content,
  .single-hotel .lvd-hotel-main-content .inside-article {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  
  .single-hotel .lvd-hotel-main-content .inside-article > .lvd-card:last-of-type {
    margin-bottom: 0 !important;
  }

  
  .single-hotel .lvd-hotel-sidebar {
    margin-top: 1.25rem !important;
  }
}


.lvd-star-rating-row,
.lvd-card-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
}

.lvd-rating-details {
	position: relative;
	display: inline-block;
	margin-left: 2px;
}

.lvd-rating-details summary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	color: #555;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	list-style: none;
}

.lvd-rating-details summary::-webkit-details-marker {
	display: none;
}

.lvd-rating-details summary:hover {
	color: #111;
}

.lvd-rating-details summary:focus-visible {
	color: #111;
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.lvd-rating-details__content {
	position: absolute;
	z-index: 100;
	right: 0;
	top: calc(100% + 8px);
	width: 290px;
	max-width: calc(100vw - 40px);
	padding: 10px 12px;
	border: 1px solid #d8d8d8;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
	color: #222;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
}


/* Rating tooltips must be allowed to escape archive-card bounds. */
.lvd-hotel-archive .lvd-hotel-card-v2 {
	position: relative;
	overflow: visible;
}


/* Raise the active rating tooltip above neighboring cards. */
.lvd-hotel-archive .lvd-hotel-card-v2:focus-within,
.lvd-hotel-archive .lvd-hotel-card-v2:has(.lvd-rating-details[open]) {
	z-index: 100;
}


/* Default rating-tooltip direction for archive cards. */
.lvd-hotel-archive .lvd-card-rating .lvd-rating-details__content {
	right: auto;
	left: 0;
}


/* Flip the tooltip inward in the final desktop grid column. */
@media (min-width: 901px) {
	.lvd-hotel-archive
	.lvd-hotel-card-v2:nth-child(3n)
	.lvd-rating-details__content {
		right: 0;
		left: auto;
	}
}


/* Keep rating tooltips within the mobile container/screen. */
@media (max-width: 600px) {
	.lvd-hotel-card-v2 .lvd-card-rating {
		position: relative;
	}

	.lvd-hotel-card-v2 .lvd-rating-details {
		position: static;
	}

	.lvd-hotel-card-v2 .lvd-rating-details__content {
		right: auto;
		left: 0;
		width: min(290px, 100%);
		max-width: 100%;
		box-sizing: border-box;
	}

	.single-hotel .lvd-star-rating-row {
		position: relative;
	}

	.single-hotel .lvd-rating-details {
		position: static;
	}

	.single-hotel .lvd-rating-details__content {
		right: auto;
		left: 0;
		width: min(290px, 100%);
		max-width: 100%;
		box-sizing: border-box;
	}
}


.lvd-entry-content .wp-block-buttons + h2 {
	margin-top: 24px;
}


.lvd-rating-details__content a {
	display: inline-block;
	margin-top: 5px;
	font-weight: 600;
}


.lvd-sidebar-rating__rationale,
.lvd-sidebar-rating__tradeoff {
	margin: 0 0 12px;
}

.lvd-sidebar-rating__tradeoff {
	color: #333;
}

.lvd-sidebar-rating__meta {
	margin: 16px 0 0;
	padding-top: 12px;
	border-top: 1px solid #e1e6ea;
	color: #56616b;
	font-size: 0.8125rem;
	line-height: 1.5;
}

.lvd-sidebar-rating__meta a {
	font-weight: 600;
}

.lvd-sidebar-offers-intro {
	margin-bottom: 6px;
}

.lvd-sidebar-affiliate-note {
	margin: 0 0 10px;
	color: #606970;
	font-size: 0.75rem;
	line-height: 1.4;
	font-style: italic;
}


/* Sidebar rating duplicates the mobile verdict, so hide it on smaller screens. */
@media (max-width: 900px) {
	.single-hotel .lvd-sidebar-rating {
		display: none;
	}
}

.lvd-sidebar-venue-context {
	margin: 0 0 14px;
	color: #56616b;
	font-size: 0.9rem;
	line-height: 1.5;
}

.lvd-inline-affiliate-note {
	margin: 8px 0 14px;
	color: #606970;
	font-size: 0.75rem;
	font-style: italic;
	line-height: 1.4;
}

.lvd-hotel-byline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	margin: 12px 0 10px;
	color: #4f5660;
	font-size: 13px;
	line-height: 1.45;
}

.lvd-hotel-byline a {
	color: inherit;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

.lvd-hotel-byline a:hover,
.lvd-hotel-byline a:focus {
	color: #1f5f9e;
}

@media (max-width: 480px) {
	.lvd-hotel-byline {
		gap: 4px;
		margin-top: 10px;
		font-size: 12.5px;
	}
}


.single-venue .lvd-venue-characteristics {
  margin: 2rem 0 2.25rem;
  padding: 1.1rem 1.4rem;
  background: #f8f9fb;
  border-radius: 12px;
}


.single-venue .lvd-venue-characteristics-title {
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #666;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.single-venue .lvd-venue-characteristics-list {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: .75rem;
  row-gap: 0.5rem;
}


.single-venue .lvd-venue-characteristics-row {
  display: contents;  
}


.single-venue .lvd-venue-characteristics-row dt {
  font-weight: 600;
  color: #222;
  white-space: nowrap;  
}


.single-venue .lvd-venue-characteristics-row dd {
  margin: 0;
  font-weight: 500;
  color: #555;
  text-align: right;
}


@media (max-width: 600px) {

	.single-venue .lvd-venue-layout {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.single-venue .lvd-venue-characteristics {
		padding: 1rem 1.1rem;
	}

	.single-venue .lvd-venue-characteristics-list {
		grid-template-columns: 1fr;
	}

	.single-venue .lvd-venue-characteristics-row dd {		
		text-align: left;
		font-size: 0.95rem;
	}
}


.single-venue .lvd-sidebar-card {  
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  margin-top: 1.25rem;
}

.single-venue .lvd-sidebar-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 700;
}

.single-venue .lvd-sidebar-emoji {
  font-size: 1.2rem;  
}

.single-venue .lvd-sidebar-strong {
	margin: 0.25rem 0 0;
	font-weight: 600;
}

.single-venue .lvd-sidebar-muted {
	margin: 0.25rem 0 0;
	color: #555;
	font-size: 0.95rem;
}


.single-venue .lvd-venue-hero {
  margin-bottom: 1.25rem;
}


.single-venue .lvd-venue-hero img {
  display: block;
  width: 100%;
  border-radius: 6px; 
}


.single-venue .lvd-venue-hero::after {
  content: "";
  display: block;
  margin-top: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}


.single-venue .lvd-venue-hero + header.lvd-archive-header {
  margin-top: 1.25rem;
}


.single-venue .lvd-venue-body {
  line-height: 1.75;
}

.single-venue .lvd-venue-body > * + * {
  margin-top: 1.25rem;
}


/* Venue section headings are intentionally understated. */
.single-venue .lvd-venue-body h2 {
	font-size: 1.4rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.single-venue .lvd-venue-body p {
  margin: 0;
}

.single-venue .lvd-venue-body h2:first-of-type {
  margin-top: 1.25rem;
}


.single-venue .lvd-venue-location {
	max-width: 760px;
	margin-bottom: 1.25rem;
	background: #fafafa;
	border: 1px solid #eee;
}

.single-venue .lvd-venue-location p {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.single-venue .lvd-venue-location a {
	font-weight: 600;
	text-decoration: none;
}

.single-venue .lvd-venue-location a:hover {
	text-decoration: underline;
}


.single-venue .lvd-venue-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .single-venue .lvd-venue-layout {
    grid-template-columns: 1fr;
  }
}


.single-venue .lvd-venue-main {
  max-width: 760px;
  padding-right: 0.5rem;
}


.single-venue .lvd-venue-sidebar {	
	padding: 0;
	background: none;
}

.single-venue .lvd-venue-sidebar h2 {
  font-size: 1.35rem;  
}


body.single-venue .site-content {
	padding: 0;
}

body.single-venue .widget-area {
	display: none !important;
}


.single-venue .lvd-grid-title {
	margin: 1.5rem 0 1.25rem;
	font-size: 2rem;
	line-height: 1.2;
}


.lvd-show-highlights ul {
	list-style: none;        
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem 1.5rem;
}

.lvd-show-highlights li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	line-height: 1.5;
}


@media (max-width: 768px) {
	.lvd-show-highlights ul {
		grid-template-columns: 1fr;
	}
}


.lvd-related-shows-list {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	column-gap: 1.75rem;
	row-gap: 0.35rem;
}


.lvd-related-shows-list li {
	position: relative;
	padding-left: 0.9rem;
	margin: 0;
}


.lvd-related-shows-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	top: 0.1em;
	color: #999;
	font-size: 1rem;
	line-height: 1;
}


.lvd-related-shows-list a {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--lvd-link, #1d4ed8);
	text-decoration: none;
}

.lvd-related-shows-list a:hover {
	text-decoration: underline;
}


@media (max-width: 640px) {
	.lvd-related-shows-list {
		grid-template-columns: 1fr;
		row-gap: 0.4rem;
	}
}


.lvd-related-shows-more {
    margin-top: 0.75rem;
}

.lvd-related-shows-more a {
    font-size: 0.9rem;
    font-weight: 400;
    text-decoration: underline;
}


body.single-show .lvd-related-shows-list,
body.single-show .lvd-related-shows-list a {
	color: var(--accent);
}

body.single-show .lvd-related-shows-list a {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}

@media (min-width: 768px) {
	body.single-show section.lvd-card-related-shows {
		margin-top: 0;
	}

	body.single-show section.lvd-card-related-shows h2 {
		margin-top: 0;
	}
}


body.single-show
.lvd-offer-item.lvd-offer--show {
  background: linear-gradient(
    135deg,
    #0f172a,
    #020617
  ) !important;

  border: 1px solid rgba(56, 189, 248, 0.35) !important;
  box-shadow: 0 14px 32px rgba(2, 6, 23, 0.55) !important;
  color: #e5e7eb !important;

  border-radius: 18px;
  overflow: hidden;
}

body.single-show
.lvd-offer-item.lvd-offer--show
.lvd-offer-type {
  color: #38bdf8 !important;  
}

body.single-show
.lvd-offer-item.lvd-offer--show h3 {
  color: #ffffff !important;
}

body.single-show
.lvd-offer-item.lvd-offer--show p {
  color: #cbd5e1 !important;
}

body.single-show
.lvd-offer-item.lvd-offer--show a {
	background: linear-gradient(
		180deg,
		#38bdf8,
		#0ea5e9
	) !important;

	color: #020617 !important;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(14, 165, 233, 0.35);
	font-weight: 700 !important;
	padding: 0.85rem 1rem !important;
	letter-spacing: 0.02em;
}

body.single-show
.lvd-offer-item.lvd-offer--show a:hover {
  background: linear-gradient(
    180deg,
    #7dd3fc,
    #38bdf8
  ) !important;

  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.45);
}


@media (min-width: 769px) {

  
  body.single-show .lvd-hotel-main-content {
	background: #ffffff;
	padding: 0.25rem;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
	max-width: none;
  }

  body.single-show .lvd-hotel-main {
    padding-top: 0;
  }

  body.single-show .lvd-hotel-sidebar {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
  }
	
  .single-show .lvd-hotel-sidebar .lvd-offer {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  }

  body.single-show .lvd-hotel-sidebar .lvd-offer {
    margin-bottom: 1.25rem;
  }

  body.single-show .lvd-hotel-main-content p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  body.single-show .lvd-hotel-main-content .lvd-entry-content h2 {
    margin-top: 2.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
	body.single-show .lvd-hotel-sidebar {
		position: static;
	}
}


@media (max-width: 768px) {

  body.single-show .lvd-hotel-hero,
  body.single-show .lvd-hotel-main {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.single-show .lvd-hotel-hero .grid-container,
  body.single-show .lvd-hotel-main .grid-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  body.single-show .lvd-hotel-main {
    padding-top: 0 !important;
    padding-bottom: 2rem !important;
  }

  body.single-show .inside-article,
  body.single-show #primary,
  body.single-show .site-content {
    background: #fff !important;
  }

  body.single-show {
    background: #fafafa;
  }
  
  body.single-show .lvd-hotel-main-content {
	background: #ffffff;
	padding: 1.5rem;	
  }
}


.single-show .lvd-sidebar-location {
	margin-top: 0;
	border: 1px solid var(--lvd-border-soft);
	background: #fafafa;
}

.single-show .lvd-offers-sidebar + .lvd-sidebar-location {
	margin-top: 1.5rem;
}

body.single-show .lvd-hotel-main-content,
.single-show .lvd-hotel-sidebar .lvd-sidebar-location {
  border-radius: 6px;
}

.single-show .lvd-sidebar-location {
	padding: 1.25rem;
}

.single-show .lvd-sidebar-location .lvd-sidebar-title {
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.25;	
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.single-show .lvd-sidebar-location-text {
	margin: 0 0 0.75rem;
	line-height: 1.6;
	font-size: 0.95rem;
}

.single-show .lvd-sidebar-location-text:last-of-type {
	margin-bottom: 1rem;
}


@media (max-width: 900px) {

	body.single-show .lvd-hotel-main-content {
		padding-bottom: 0 !important;
	}

	body.single-show .lvd-hotel-main-content .inside-article {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
	}

	body.single-show .lvd-hotel-main-content .inside-article > .lvd-card:last-child {
		margin-bottom: 0 !important;
	}

	body.single-show .lvd-hotel-sidebar {
		margin-top: 1rem !important;
		padding-top: 0 !important;
	}

	body.single-show .lvd-hotel-sidebar > :first-child {
		margin-top: 0 !important;
	}
}


.single-show .lvd-location-pill {  
  margin-bottom: 0.45rem; 
}


body.single-show .lvd-hotel-main {
  margin-top: 2.25rem;
}


   
body.single-show .wp-block-buttons {
  margin-bottom: 1.5rem;
}


.lvd-hero-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 12px 0 8px;
}

.lvd-hero-pills .lvd-pill,
.lvd-hero-pills .lvd-location-pill,
.lvd-hero-pills span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	padding: 6px 12px;
	border-radius: 999px;
	white-space: nowrap;
}

.lvd-hero-pills .lvd-pill--free {
	font-weight: 600;
}

.lvd-hero-pills .lvd-pill--setting {
	background: #f3f4f6;
	color: #374151;
	border: 1px solid #e5e7eb;
}


body:is(.single-show, .single-attraction)
.wp-block-buttons:has(+ p.lvd-affiliate-note) {
	margin-bottom: 6px !important;
	margin-block-end: 6px !important;
}

body:is(.single-show, .single-attraction)
p.lvd-affiliate-note {
	margin: 0 0 18px !important;
	margin-block-start: 0 !important;
	margin-block-end: 18px !important;

	color: #606970 !important;
	font-size: 0.75rem !important;
	line-height: 1.4 !important;
	font-style: italic !important;
}

body:is(.single-show, .single-attraction)
p.lvd-affiliate-note + h2 {
	margin-top: 0 !important;
}


body:is(.single-show, .single-attraction)
:is(.lvd-offers-sidebar, .lvd-offers-mobile-top)
p.lvd-deals-trust {
	margin: 0 0 4px !important;
	margin-block-start: 0 !important;
	margin-block-end: 4px !important;
}

body:is(.single-show, .single-attraction)
:is(.lvd-offers-sidebar, .lvd-offers-mobile-top)
p.lvd-sidebar-affiliate-note {
	margin: 0 0 10px !important;
	margin-block-start: 0 !important;
	margin-block-end: 10px !important;

	color: #606970 !important;
	font-size: 0.75rem !important;
	line-height: 1.4 !important;
	font-style: italic !important;
}


.lvd-anchor-target {
	display: block;
	visibility: hidden;
	scroll-margin-top: 80px;
}


.lvd-hero-cta {
	min-height: 92px;
}

@media (max-width: 768px) {
	.lvd-hero-cta {
		display: none;
	}
}


.single-hotel .lvd-hotel-hero,
.single-attraction .lvd-hotel-hero,
.single-show .lvd-hotel-hero {
	padding-bottom: 2rem;
}


.single-hotel .lvd-hotel-main-inner,
.single-attraction .lvd-hotel-main-inner,
.single-show .lvd-hotel-main-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	column-gap: 2.5rem;
	align-items: start;
}

@media (max-width: 900px) {

	.single-hotel .lvd-hotel-main-inner,
	.single-attraction .lvd-hotel-main-inner,
	.single-show .lvd-hotel-main-inner {
		grid-template-columns: 1fr;
	}

	.single-hotel .lvd-hotel-sidebar,
	.single-attraction .lvd-hotel-sidebar,
	.single-show .lvd-hotel-sidebar {
		max-width: 100%;
	}
}


   
.lvd-hotel-hero-image img {
	display: block;
	width: 100%;	
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 14px;
}

@media (max-width: 900px) {

	.single-hotel .lvd-hotel-hero-image,
	.single-show .lvd-hotel-hero-image,
	.single-attraction .lvd-hotel-hero-image {
		width: 100%;
		max-width: 100%;
		margin-top: 1.25rem;
	}

}


.single-show .lvd-hotel-label {
	margin-top: 0.15rem;
	margin-bottom: 0.4rem;
	opacity: 0.85;
}


.single-show h1.entry-title {
	margin-bottom: 0.5rem;
	letter-spacing: -0.01em;
}


.single-show .lvd-hotel-excerpt {
	font-size: 1.05rem;	
	max-width: 42rem;
	margin-bottom: 0.85rem;
}


.lvd-hero-meta-row {
	margin-top: 0.5rem;
}

.lvd-show-status {
	font-size: 0.95rem;
	margin-top: 0.25rem;
}


@media (max-width: 768px) {
	.lvd-hero-meta-row,
	.lvd-show-status {
		margin-bottom: 0.75rem;
	}
}


.single-venue .lvd-venue-shows .lvd-grid-title {
	padding-left: var(--lvd-grid-gap, 1rem);
	padding-right: var(--lvd-grid-gap, 1rem);
}


@media (max-width: 768px) {

	.single-venue header.lvd-archive-header {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}

	.single-venue header.lvd-archive-header .archive-title {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	body.single-venue #primary .site-main {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.single-venue .lvd-venue-layout {
		margin-left: 0;
		margin-right: 0;
	}
}


.single-show .lvd-hotel-hero-text {
	max-width: 640px;
}


.lvd-sidebar-shows .lvd-sidebar-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.45rem;
}

.lvd-sidebar-shows .lvd-sidebar-list li::before {
	content: "•";
	color: var(--lvd-muted);
	font-size: 1.2rem;
	line-height: 1;
	margin-top: 0.15rem;
}


.lvd-location-archive .lvd-location-intro {
	max-width: 960px;
}


.tax-lvd_location .lvd-location-intro {
	max-width: 1100px; 
}


.tax-show_type .lvd-location-intro {
	max-width: 720px;
}


.lvd-notice--hiatus {
	margin: 1.5rem 0;
	padding: 1rem 1.25rem;
	border-left: 4px solid #f59e0b;
	background: #fff7ed;
	color: #78350f;
	border-radius: 4px;
}

.lvd-notice--hiatus strong {
	display: block;
	margin-bottom: 0.25rem;
}


.lvd-sidebar-special-rates {
	display: none;
}

@media (min-width: 1024px) {
	.lvd-sidebar-special-rates {
		display: block;
	}
}


@media (max-width: 768px) {

	.single-hotel .lvd-hotel-sidebar {
		margin-bottom: 0 !important;
		padding-bottom: 0 !important;
	}

	.single-hotel #content,
	.single-hotel .site-content {
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
	}

	.single-hotel .lvd-site-footer {
		margin-top: 0.5rem !important;
	}
}


.lvd-inline-deals-list {
	column-count: 2;
	column-gap: 2rem;
	margin: 0;
	padding-left: 1.25rem;
}

.lvd-inline-deals-list li {
	break-inside: avoid;
	margin-bottom: 0.4rem;
	list-style: disc;
}

.lvd-inline-deals-list a {
	font-weight: 600;
	text-decoration: underline;
}

.lvd-inline-deal-price {
	color: #1a1a1a;
	font-weight: 600;
	margin-left: 0.25rem;
}

.lvd-inline-deal-highlight {
	color: #b45309;
	font-weight: 600;
	margin-left: 0.25rem;
}

.lvd-deals-note {
	font-size: 0.85rem;
	color: #666;
	margin-top: 0.5rem;
	line-height: 1.4;
	font-style: italic;
}

@media (max-width: 768px) {
	.lvd-inline-deals-list {
		column-count: 1;
	}
}


.lvd-show-type-link {
	margin: 0.25rem 0 0;
	font-size: 0.95rem;
	color: #555;
}

.lvd-show-type-link a {
	font-weight: inherit;
}

.lvd-show-type-link::before {
	content: "Category:";
	font-weight: 700;
	margin-right: 0.25rem;	
}


.lvd-audience-pill {
	display: inline-block;
	padding: 0.35rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
	letter-spacing: 0.02em;
	line-height: 1;
}

.lvd-audience-pill--family {
	background: #e9f7ef;
	color: #137333;
	border: 1px solid #c6ebd8;
}

.lvd-audience-pill--adult {
	background: #fdecea;
	color: #b3261e;
	border: 1px solid #f5c2c0;
}


.lvd-show-type-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 8px;
	overflow-x: visible;
	padding-left: 0.75rem;
}


.lvd-location-description {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--lvd-border-soft);
	color: #444;
}

.lvd-location-description-inner {
	line-height: 1.65;
}

.lvd-location-description-inner p {
	margin: 0 0 1rem;
	line-height: 1.7;
}

.lvd-location-description-inner h2,
.lvd-location-description-inner h3 {
	margin: 1.5rem 0 0.75rem;
}

.lvd-intro-links {
	margin-top: 0.75rem;
}

@media (max-width: 768px) {
	.lvd-location-description {
		margin-top: 1rem;
		padding-top: 1rem;
	}
}


@media (max-width: 768px) {

	.lvd-hotel-main-inner .inside-article {
		padding-left: 0;
		padding-right: 0;
	}

	.lvd-hotel-main-content .lvd-card {
		margin-left: -1rem;
		margin-right: -1rem;
		border-radius: 0;
	}

	.lvd-hotel-main {
		margin-top: 1.5rem;
	}
}