.box-widget img {
    width: 100%;
    /* Ensures it fits within the container */
    height: auto;
    /* Keeps the image proportional */
    display: block;
    /* Removes inline-block spacing issues */
}

figure {
    max-width: 100%;
    overflow: hidden;
}

figure img {
    display: block;
    width: 100%;
    /* or max-width: 100%; */
    height: auto;
}

@media (min-width: 1024px) {
    .slider-section {
        height: 900px;
    }

    .hero-slider-item {
        height: 900px !important;
    }
}

#suggestions {
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    border-radius: 10px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #e0e0e0;
    justify-content: flex-start;
    /* Align items to the left */
}

.suggestion-item:hover {
    background-color: #f0f0f0;
}

