/* =============================================================================
   FŐOLDALI INGATLAN "TOVÁBBI / KEVESEBB" RENDSZER
   -----------------------------------------------------------------------------
   A stílusok kizárólag a dinamikus bővítéshez kapcsolódnak.
   ============================================================================= */

.hi-home-property-hidden {
    display: none !important;
}

.hi-home-property-fade-in {
    animation: hiHomePropertyFadeIn 0.45s ease;
}

@keyframes hiHomePropertyFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hi-home-property-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

.hi-home-property-btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hi-home-property-btn:hover {
    transform: translateY(-1px);
}

.hi-home-property-btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

.hi-home-property-btn--more {
    background: #FB6A19;
    color: #ffffff;
}

.hi-home-property-btn--less {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid rgba(31, 41, 55, 0.12);
}

.hi-home-property-archive-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    background: #f5f7fb;
    color: #1f2937;
    font-weight: 600;
}

.hi-home-property-status {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}
