/* PCB-3926 Start */

.fp-section {
    max-width: 100%;
    padding: 40px 0;
    margin: 0;
}

.fp-section .fp-section__heading {
    font-size: 28px;
    line-height: 33.6px;
}
.fp-section-property.one-card img{
    height: 399px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.fp-section-property.two-cards img {
    height: 344.83px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.fp-section-property.three-or-more-cards img {
    height: 225px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.fp-section .fp-section-subheading {
    font-size: 18px;
    line-height: 25.2px;
    margin-top: 24px;
}
.fp-section .prl-container__heading {
    padding: 0;
}

.fp-cta-button .prl-btn--secondary {
    
    font-weight: 700;
    align-items: center;
    display: inline-flex;
    padding: 0;
    font-size: 0.75rem;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    justify-content: flex-start;
    text-decoration: none;
}

.fp-cta-button .prl-btn--secondary:hover {
    text-shadow: none;
}

.fp-cta-button .prl-btn--secondary:hover .arrow-icon--circle {
    stroke-dashoffset: 0;
    stroke: currentColor;
}

.fp-cta-button .prl-btn--secondary .arrow-icon {
    fill: currentColor;
    flex: 0 0 2rem;
    height: 2rem;
    width: 2rem;
    margin-left: 0.25rem;
    position: relative;
    transition: transform 0.3s ease;
}

.fp-cta-button .prl-btn--secondary .arrow-icon:hover {
    transform: translate3d(5px, 0, 0);
}

.fp-cta-button .prl-btn--secondary .arrow-icon--circle {
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 95;
    stroke-dashoffset: 95;
    stroke-width: 1.5;
}

@media only screen and (min-width: 1199px) {
    .fp-cta-button .palette-secondary {
        display: none;
    }
}

@media (max-width: 1199px) {
    .fp-section .fp-section__heading {
        font-size: 22px;
        line-height: 26.4px;
    }

    .fp-section .fp-section-subheading {
        font-size: 18px;
        line-height: 25.2px;
        margin-top: 24px;
    }

    .fp-cta-button {
        display: block;
        margin-top: 24px;
    }
}

@media (min-width: 1199px) {
    .fp-cta-button {
        display: none;
    }
}

/* PCB-3926 End */
/* PCB-3928 Start */
/* Default grid layout for mobile and tablets */
.fp-section-property {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr)); /* Default to 1 column */
    grid-row-gap: 1.5rem; /* Space between rows */
    margin-top: 40px;
}

/* Styles for individual image cards */
.fp-external-image-card {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure image card takes full width of the grid column */
    margin-bottom: 16px;
    flex-direction: column;
}

/* Flexbox layout for image card elements */
.fp-image-wrapper {
    flex: 0 0 50%;
}

.fp-content-wrapper {
    flex: 1;
    padding-left: 20px;
}

/* Title styling */
.fp-section-property .fp-title {
    margin-top: 24px;
    color: #191B1D;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 110%; /* 26.4px */
}

/* Tertiary palette styles for SVG icons */
.fp-section-property .palette-tertiary svg {
    opacity: 0;
    position: relative;
    left: 0;
    transition: left 300ms ease-in, opacity 300ms ease-in;
}

.fp-section-property .palette-tertiary:hover svg {
    opacity: 1;
    left: 16px;
}

.fp-section-property a.fp-section-cta {
    font-size: 16px;
    margin-top: 16px;
    text-transform: none;
}

/* Title styling for size items */
.fp-size-item__title {
    color: var(--White, #FFF);
    text-align: center;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

/* Card caption styles */
.fp-external-image-card .fp-card-caption {
    padding: 8px 16px;
    margin-top: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/* Dynamic grid column adjustments based on the number of cards */
.fp-section-property.one-card {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.fp-section-property.two-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
}

.fp-section-property.three-or-more-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 24px;
}

.fp-section-property .fp-location svg,
.fp-section-property .fp-space svg {
    width: 32px;
    height: 32px;
}

.fp-section-property .fp-location-address,
.fp-section-property .fp-space-data {
    display: flex;
    align-items: center;
    margin-left: 8px;
}

.fp-section-property .fp-space-val {
    margin-left: 8px;
}

.fp-address,
.fp-space {
    display: flex;
    align-items: center; /* Vertically align items in the center */
    margin-top: 16px;
    color: #5F5F5F;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    letter-spacing: 0.32px;
}

/* Responsive adjustments for tablets and mobile devices */
@media (max-width: 1199px) {
    .fp-section-property.two-cards,
    .fp-section-property.three-or-more-cards,
    .fp-section-property.one-card { 
        margin-top: 40px;
        grid-template-columns: repeat(1, minmax(0, 1fr)); /* 1 column for mobile */
        grid-row-gap: 36px;
        width: 100%;
    }

    .fp-section-property .fp-title {
        font-size: 18px;
        line-height: 115%; /* 20.7px */
    }
    .fp-section .prl-container__heading {
        font-size: 22px;
    }
    .fp-section-property.one-card img, .fp-section-property.two-cards img, .fp-section-property.three-or-more-cards img {
        height: 399px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }   
    
}

@media (max-width: 767px) {
    .fp-section-property.one-card img, .fp-section-property.two-cards img, .fp-section-property.three-or-more-cards img {
        height: 192.08px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }   

    .fp-section-property .fp-title {
        font-size: 18px;
        line-height: 115%; /* 20.7px */
    }
    .fp-section  .palette-tertiary{
        font-size: 12px;
    }

}

/* PCB-3928 End */
