/* Search */

.filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Listing */

.listing-card {
    /* width: 290px !important; */
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--Black);
}

.listing-card a {
    text-decoration: none;
    color: var(--Black);
}

.listing-card p {
    margin-top: 4px !important;
}

.listing-card img {
    width: 100%;
    border-radius: 1rem;
    border: 8px solid #fff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: var(--Light-Grey);
    box-shadow: 0px 4px 4px -1px rgba(48, 42, 38, 0.05), 0px 4px 4px -1px rgba(48, 42, 38, 0.025);
    transition: all 0.3s ease-out;
    cursor: pointer;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

.listing-card:hover img {
    box-shadow: 0px 6px 4px -1px rgba(48, 42, 38, 0.05), 0px 6px 4px -1px rgba(48, 42, 38, 0.025);
    transform: scale(1.02);
}

.listing-card .name {
    margin-top: 12px;
}

.listing-list {
    display: grid;
    column-gap: 2rem;
    row-gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    padding: 0;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
}

.listing-list li {
    list-style-type: none;
}

/* Navigation */

.navbar {
    display: flex;
    width: 100%;
    height: 96px;
    padding: 16px 80px;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    box-sizing: border-box;

    border-radius: 0 0 24px 24px;
    border-bottom: 1px solid var(--Neutral-Light-Grey, rgba(0, 0, 0, 0.12));
    background: var(--Branding-Beige, #FFFCF3);
}

.navbar ul {
    list-style-type: none;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 8px;
}

.navbar a {
    text-decoration: none;
    color: var(--Black);
}

.status-indicator.open {
    color: #108700 !important;
}

.status-indicator.closed {
    color: #E90303 !important;
}

.search-bar {
    background: var(--White);
    border-radius: 32px;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    /* margin: 0 auto; */
    margin-top: -60px;
    position: relative;
    border: 1px solid var(--Light-Grey);
    background: var(--White);
    box-shadow: 0px 3px 0px 0px rgba(255, 137, 10, 0.25);
    transition: all 0.3s ease-in-out;
}

.search-bar:hover {
    box-shadow: 0px 6px 0px 0px rgba(255, 137, 10, 0.25);
}

.search-bar-main {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-text-input {
    flex: 1;
    border: none;
    border-radius: 12px;
    font-size: 1.5rem;
    background: transparent;
    outline: none;
    letter-spacing: -0.03rem;
}

#search-btn {
    border-radius: 20px;
    width: 64px;
    height: 64px;
}

.search-bar-filters {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    border-top: 1px solid var(--Light-Grey);
    padding-top: 1.5rem;
}

.filter-summary {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.filter-label {
    font-weight: bold;
    font-size: 1rem;
    color: #222;
}

.filter-value {
    color: #B2AFAF;
    font-size: 0.98rem;
}

footer {
    height: 96px;
    padding: 40px 80px;
    display: flex;
    background-color: var(--Branding-Beige, #FFFCF3);
    border-top: 1px solid var(--Neutral-Light-Grey, rgba(0, 0, 0, 0.12));
    position: relative;
    justify-content: space-between;
}

footer ul {
    list-style-type: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    gap: 8px;
}