/*==================================================
Hero
==================================================*/

.pp-container{
    width:100%;
    max-width:var(--global-content-width);
    margin:0 auto;
    padding:0 30px;
    box-sizing:border-box;
}

.pp-hero{
    padding:70px 0 0px;
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 38% 60%;
    gap: 2%;
    align-items: stretch;
}

.pp-hero-left {
	display: grid;
	grid-auto-rows: 1fr;
}

.pp-hero-right {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}


.pp-hero-content {
	margin-bottom: 25px;
	background: #fff;
	padding: 25px 15px;
	text-align: center;
	display: grid;
	align-content: center;
}

.pp-title{
    font-size:25px;
    line-height:1.08;
    font-weight:700;
    margin:0 0 18px;
}

.pp-address{
    font-size:20px;
    line-height:1.7;
    margin-bottom:18px;
    color:#666;
}
.pp-address::after {
	content: "";
	border-bottom: 2px solid #d8917d;
	width: 100px;
	height: 1px;
	display: block;
	margin: 10px auto 0;
}

.pp-type,
.pp-location{
    font-size:17px;
    line-height:1.8;
    color:#666;
}
.pp-hero-content .pp-location {
	font-size: 16px;
	color: #666;
	margin-bottom: 0;
}

.pp-featured-image{
	margin-top: auto; /* Optional: pushes image to the bottom of the left column */
    overflow:hidden;
}

.pp-featured-image img{
    width:100%;
    height:auto;
    display:block;
    aspect-ratio:16/9;
    object-fit:cover;
}

/*==================================================
Gallery
==================================================*/

.pp-gallery-slider{
    position:relative;
    overflow:hidden;
	aspect-ratio: 13/9 !important;
	height: 100%;
}


.pp-gallery-slider img{
    width:100%;
    display:block;
    aspect-ratio:13/9;
    object-fit:cover;
}

.pp-gallery-prev,
.pp-gallery-next{

    position:absolute;
    top:50%;

    width:48px;
    height:48px;

    transform:translateY(-50%);

    background:rgba(255,255,255,.95);

    cursor:pointer;

    opacity:0;

    transition:.25s;

    z-index:20;

}

.pp-gallery-prev{

    left:20px;

}

.pp-gallery-next{

    right:20px;

}

.pp-gallery-slider:hover .pp-gallery-prev,
.pp-gallery-slider:hover .pp-gallery-next{

    opacity:1;

}

.pp-gallery-prev::before{

    content:"←";

    display:flex;

    justify-content:center;

    align-items:center;

    height:48px;

}

.pp-gallery-next::before{

    content:"→";

    display:flex;

    justify-content:center;

    align-items:center;

    height:48px;

}
.pp-gallery-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.pp-gallery-slider .swiper-wrapper {
    align-items: stretch;
}

.pp-gallery-slider .swiper-slide {
    width: 100%;
    flex-shrink: 0;
}

.pp-gallery-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pp-hero-right .pp-status.space-available {
	color: #fff !important;
	background: #d8917d;
	width: 100%;
	margin-bottom: 0;
	padding: 10px;
	text-align: center;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
}
