/* ==========================================================================
   Showcase Single-Property Platform - Stylesheet
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Brand palette */
    --molten-lava: #760000;
    --mahogany-red: #C0111F;
    --papaya-whip: #FFEDD4;
    --deep-space-blue: #023049;
    --steel-blue: #659ABA;
    --off-white: #FAFAF7;
    --dark-text: #1A1A1A;
    --medium-text: #4A4A4A;
    --light-text: #FFEDD4;

    --font-heading: 'futura-pt', 'Futura', 'Helvetica Neue', Arial, sans-serif;
    --font-body: 'adobe-garamond-pro', 'Garamond', 'Georgia', serif;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

    --radius: 4px;
    --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: #fff;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--steel-blue);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--mahogany-red);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--deep-space-blue);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-text);
}

/* --- Layout --- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.showcase-main {
    padding: 2rem 0;
}

/* --- Header --- */
.showcase-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
}

.showcase-header__top {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-header__logo {
    flex: 0 0 auto;
}

.showcase-logo {
    height: 80px;
    width: auto;
}

.showcase-header__login {
    flex: 0 0 auto;
}

.showcase-header__login-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: var(--mahogany-red);
    color: white;
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color var(--transition);
}

.showcase-header__login-btn:hover {
    background-color: var(--deep-space-blue);
    color: white;
}

.showcase-header__agent {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: right;
}

.showcase-header__agent-photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.showcase-header__agent-info {
    line-height: 1.35;
}

.showcase-header__agent-name {
    font-family: var(--font-heading);
    font-weight: bold;
    color: var(--deep-space-blue);
    font-size: 1rem;
}

.showcase-header__agent-brokerage {
    font-family: var(--font-heading);
    font-weight: bold;
    font-size: 0.85rem;
    color: var(--medium-text);
}

.showcase-header__agent-contact {
    font-size: 0.8rem;
    color: #666;
}

.showcase-header__agent-contact a {
    color: #666;
}

.showcase-header__agent-contact a:hover {
    color: var(--mahogany-red);
}

.showcase-header__agent-divider {
    margin: 0 0.35rem;
    color: #ccc;
}

/* --- Portal Navigation --- */
.portal-nav {
    background-color: var(--deep-space-blue);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
}

.portal-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.portal-nav__brand {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.5rem;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.portal-nav__brand:hover {
    color: white;
}

.portal-nav__links {
    display: flex;
    gap: 0;
    align-items: center;
    padding-right: 1.5rem;
}

.portal-nav__links a {
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color var(--transition), color var(--transition);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-decoration: none;
}

.portal-nav__links a:last-child {
    border-right: none;
}

.portal-nav__links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.portal-nav__links a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

@media (max-width: 768px) {
    .portal-nav { flex-wrap: wrap; }
    .portal-nav__inner { flex-wrap: wrap; }
    .portal-nav__links {
        flex-wrap: wrap;
        padding-right: 0;
        width: 100%;
    }
    .portal-nav__links a {
        flex: 1;
        text-align: center;
        padding: 0.75rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* --- Footer --- */
.showcase-footer {
    background-color: var(--deep-space-blue);
    color: var(--papaya-whip);
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 3px solid var(--mahogany-red);
}

.showcase-footer__content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.showcase-footer__logo {
    flex-shrink: 0;
}

.showcase-footer-logo {
    height: 50px;
    width: auto;
    opacity: 0.85;
}

.showcase-footer__info {
    flex: 1;
    text-align: center;
}

.showcase-footer p,
.showcase-footer__text {
    color: var(--papaya-whip);
    margin-bottom: 0.5rem;
}

.showcase-footer__text a {
    color: var(--papaya-whip);
}

.showcase-footer__text a:hover {
    text-decoration: underline;
}

.showcase-footer__copyright {
    color: rgba(255, 237, 212, 0.7);
    margin-bottom: 0;
    font-size: 0.85rem;
}

/* --- Hero Section --- */
.showcase-hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--deep-space-blue) 0%, var(--molten-lava) 100%);
}

.showcase-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-hero__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-space-blue) 100%);
}

.showcase-hero__banner {
    position: absolute;
    top: 40px;
    left: -60px;
    z-index: 10;
    background-color: var(--mahogany-red);
    color: white;
    font-family: 'futura-pt', 'Futura', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.6rem 30px 0.6rem 0;
    width: 300px;
    transform: rotate(-35deg);
    transform-origin: center center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.showcase-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: flex-end;
    padding: 3rem 2rem;
}

.showcase-hero__content {
    color: white;
    width: 100%;
}

.showcase-hero__address {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.showcase-hero__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: bold;
    color: var(--papaya-whip);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* --- Details Bar --- */
.showcase-details-bar {
    background: var(--off-white);
    padding: 2rem 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.showcase-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    text-align: center;
}

.showcase-detail-item {
    padding: 1rem;
}

.showcase-detail-label {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.showcase-detail-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--deep-space-blue);
}

/* --- Photo Gallery --- */
.showcase-gallery {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.showcase-gallery h2 {
    margin-bottom: 2rem;
}

.showcase-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.showcase-photo-item {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.showcase-photo-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.showcase-photo-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

/* --- Lightbox --- */
.showcase-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.showcase-lightbox.active {
    display: flex;
}

.showcase-lightbox__container {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

.showcase-lightbox__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.showcase-lightbox__close:hover {
    color: var(--mahogany-red);
}

.showcase-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.showcase-lightbox__prev {
    left: -60px;
}

.showcase-lightbox__next {
    right: -60px;
}

.showcase-lightbox__counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
}

/* --- Facade Styles (Lazy Loading) --- */
.showcase-facade {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-space-blue) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.showcase-facade--has-thumb {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.showcase-facade:hover {
    transform: scale(1.02);
}

.showcase-facade::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
}

.showcase-facade:hover::before {
    background: rgba(0, 0, 0, 0.15);
}

.showcase-facade__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.showcase-facade__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    opacity: 0.9;
}

.showcase-facade h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.showcase-facade p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- Matterport Section --- */
.showcase-matterport {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.showcase-matterport h2 {
    margin-bottom: 2rem;
}

.showcase-matterport__wrapper {
    position: relative;
    width: 100%;
}

.showcase-matterport__iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
}

/* --- Video Section --- */
.showcase-video {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.showcase-video h2 {
    margin-bottom: 2rem;
}

.showcase-video__wrapper {
    position: relative;
    width: 100%;
}

.showcase-video__iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius);
}

/* --- Floor Plan Section --- */
.showcase-floorplan {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.showcase-floorplan h2 {
    margin-bottom: 1rem;
}

/* --- Description Section --- */
.showcase-description {
    padding: 3rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.showcase-description h2 {
    margin-bottom: 1rem;
}

/* --- Agent + Lead Capture --- */
.showcase-agent-section {
    padding: 3rem 0;
}

.showcase-agent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.showcase-agent-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
}

.showcase-agent-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.showcase-agent-headshot,
.showcase-agent-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.showcase-agent-avatar {
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-space-blue) 100%);
}

.showcase-agent-card h3 {
    margin-bottom: 0.25rem;
}

.showcase-agent-brokerage {
    color: var(--medium-text);
    margin-bottom: 1rem;
}

.showcase-agent-logo {
    max-width: 150px;
    height: auto;
    margin: 1.5rem auto;
    display: block;
}

.showcase-agent-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* --- Agent Social Links --- */
.showcase-agent-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e0e0e0;
}

.showcase-agent-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--deep-space-blue);
    color: white;
    transition: background-color 0.2s, transform 0.2s;
}

.showcase-agent-social__link:hover {
    background-color: var(--mahogany-red);
    transform: scale(1.1);
}

.showcase-agent-social__link svg {
    width: 18px;
    height: 18px;
}

/* --- Lead Form --- */
.showcase-lead-form {
    background: white;
}

.showcase-lead-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.showcase-alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.showcase-alert--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.showcase-alert--success a {
    color: #155724;
    font-weight: bold;
}

.showcase-alert--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.showcase-form {
    display: flex;
    flex-direction: column;
}

.showcase-form__group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.showcase-form__group label {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--deep-space-blue);
    font-family: var(--font-heading);
}

.showcase-form__group input,
.showcase-form__group textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition);
}

.showcase-form__group input:focus,
.showcase-form__group textarea:focus {
    outline: none;
    border-color: var(--mahogany-red);
    box-shadow: 0 0 0 3px rgba(192, 17, 31, 0.1);
}

.showcase-form__group textarea {
    resize: vertical;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--mahogany-red);
    color: white;
    border-radius: var(--radius);
    border: none;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn:hover {
    background-color: var(--molten-lava);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--mahogany-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--molten-lava);
}

.btn-secondary {
    background-color: var(--steel-blue);
    color: white;
}

.btn-secondary:hover {
    background-color: #4a7a8d;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* --- Gallery Page --- */
.showcase-gallery-page h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.showcase-property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.showcase-property-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.showcase-property-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.showcase-property-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-space-blue) 100%);
}

.showcase-property-card__banner {
    position: absolute;
    top: 18px;
    left: -45px;
    z-index: 2;
    background-color: var(--mahogany-red);
    color: white;
    font-family: 'futura-pt', 'Futura', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.35rem 20px 0.35rem 0;
    width: 200px;
    transform: rotate(-35deg);
    transform-origin: center center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.showcase-property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.showcase-property-card:hover .showcase-property-card__image img {
    transform: scale(1.05);
}

.showcase-property-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--steel-blue) 0%, var(--deep-space-blue) 100%);
}

.showcase-property-card__content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.showcase-property-card__address {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--deep-space-blue);
}

.showcase-property-card__price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--mahogany-red);
    margin-bottom: 1rem;
}

.showcase-property-card__details {
    color: var(--medium-text);
    font-size: 0.9rem;
    margin: 0;
}

.showcase-empty {
    text-align: center;
    padding: 3rem;
    background: var(--off-white);
    border-radius: var(--radius);
}

.showcase-empty p {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
}

/* --- 404 --- */
.showcase-404 {
    padding: 5rem 0;
}

.showcase-404__content {
    text-align: center;
    background: var(--off-white);
    padding: 3rem;
    border-radius: var(--radius);
}

.showcase-404__content h1 {
    margin-bottom: 1rem;
}

.showcase-404__content p {
    margin-bottom: 2rem;
    color: var(--medium-text);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .showcase-hero {
        height: 450px;
    }

    .showcase-hero__address {
        font-size: 1.75rem;
    }

    .showcase-hero__price {
        font-size: 1.5rem;
    }

    .showcase-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .showcase-detail-item {
        padding: 0.75rem;
    }

    .showcase-detail-value {
        font-size: 1.25rem;
    }

    .showcase-photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.75rem;
    }

    .showcase-agent-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-header__top {
        flex-wrap: wrap;
    }

    .showcase-header__agent {
        width: 100%;
        justify-content: center;
        text-align: center;
        margin-top: 0.75rem;
    }

    .showcase-lightbox__prev,
    .showcase-lightbox__next {
        position: relative;
        left: auto;
        right: auto;
        width: auto;
        height: auto;
        background: rgba(255, 255, 255, 0.3) !important;
        margin: 0 1rem;
    }

    .showcase-property-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .showcase-property-card__banner {
        top: 14px;
        left: -50px;
        width: 180px;
        font-size: 0.55rem;
        padding: 0.3rem 18px 0.3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .showcase-hero {
        height: 250px;
        margin-bottom: 1rem;
    }

    .showcase-hero__overlay {
        padding: 2rem 1rem;
    }

    .showcase-hero__address {
        font-size: 1.25rem;
    }

    .showcase-hero__price {
        font-size: 1.25rem;
    }

    .showcase-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-detail-label {
        font-size: 0.75rem;
    }

    .showcase-detail-value {
        font-size: 1rem;
    }

    .showcase-photo-grid {
        grid-template-columns: 1fr;
    }

    .showcase-agent-headshot,
    .showcase-agent-avatar {
        width: 100px;
        height: 100px;
    }

    .showcase-agent-contact {
        margin-top: 1rem;
    }

    .showcase-property-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .showcase-property-card__banner {
        top: 20px;
        left: -40px;
        width: 200px;
        font-size: 0.65rem;
        padding: 0.35rem 20px 0.35rem 0;
    }

    .showcase-lightbox__container {
        width: 95%;
    }

    .showcase-lightbox__close {
        top: 10px;
        right: 10px;
    }
}
