.visually-hidden {
    position: absolute !important;
    margin: 0 0 0 -9999px !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    line-height: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
}

.waters-post-container {
    min-height: 340px;
}

#waters-filter-form,
#waters-filter-search-form {
    display: flex;
    gap: 25px;
    flex-direction: column;
    padding-bottom: 60px;
    margin: 0;
}

@media screen and (min-width: 1100px) {
    #waters-filter-form,
    #waters-filter-search-form {
        flex-direction: row;
    }
}

    .waters-filter-actions {
        display: flex;
        gap: 25px;
        justify-content: space-between;
    }

    #waters-filter-form select,
    #waters-filter-form option,
    #waters-filter-form button,
    #waters-filter-search-form select,
    #waters-filter-search-form option,
    #waters-filter-search-form button {
        background: #283D46;
        color: white;
        font-family: "TT Chocolates", Sans-serif;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        letter-spacing: 1.92px;
        text-transform: uppercase;
        border: 1px solid rgba(255, 255, 255, 0.28);
        padding: 15px 20px;
        border-radius: 0;
    }

    #waters-filter-form .select-default,
    #waters-filter-search-form .select-default {
        color: #d4d4d4;
    }

    #waters-filter-form select,
    #waters-filter-form button#filter-reset {
        padding-left: 45px;
    }

    #waters-filter-form option {
        text-transform: none;
    }

    #waters-filter-form select,
    #waters-filter-search-form select {
        appearance: none;
        background-image: url("assets/chevron-down.svg");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        background-size: 1em;
    }

.select-wrap {
    width: 100%;
    position: relative;
}

button#filter-reset {
    position: relative;
}

.select-wrap::before,
button#filter-reset::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

/* .select-wrap--bedroom::before {
    background-image: url('assets/bed-icon.svg');
}

.select-wrap--location::before {
    background-image: url('assets/map-pin.svg');
}

.select-wrap--style::before {
    background-image: url('assets/style.svg');
}

.select-wrap--cabin::before {
    background-image: url('assets/cabine-window.svg');
}

.select-wrap--rate::before {
    background-image: url('assets/dollar-sign.svg');
} */

button#filter-reset::before {
    background-image: url('assets/refresh-cw.svg');
} 

.waters-post-grid,
.fake-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
}    

@media screen and (max-width: 1362px) {
    .waters-post-grid {
        gap: 45px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 880px) {
    .waters-post-grid,
    .fake-posts {
        gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }
}

    .waters-post-grid a {
        text-decoration: none !important;
    }

.waters-post {
    display: flex;
    flex-direction: column;
}


    .waters-post .waters-post__title {
        color: #283D46;
        font-family: "Butler", Sans-serif;
        font-size: 1.5rem;
        line-height: 1;
        font-style: normal;
        font-weight: 300;
        transition: color 0.5s ease;
        margin-bottom: 10px;
        margin-top: 20px;
    }

    .waters-post .waters-post__excerpt {
        color: #283D46;
        font-family: "TT Chocolates", Sans-serif;
        font-size: 14px;
    }

    @media screen and (min-width: 552px) {
        .waters-post .waters-post__title {
            font-size: 1.5rem;
            line-height: 1em;
        }
    }

    .waters-post:hover .waters-post__title {
        color: #B37752;
        transition: color 0.5s ease;
    }

    .waters-post .waters-post__taxonomy {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        border-top: 1px solid black;
        padding-top: 10px;
    }

    .waters-post .waters-post__taxonomy div {
        text-transform: uppercase;
        letter-spacing: 1.1px;
        line-height: 21px;
        font-size: 13px;
        font-weight: 600;
        display: flex;
        align-content: center;
        gap: 5px;
    }

    .waters-post .waters-post__image {
        position: relative;
    }

    .waters-post .waters-post__image::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: black;
        opacity: 0;
        transition: opacity 1s ease;
    }

    .waters-post:hover .waters-post__image::before {
        opacity: 0.3;
        transition: opacity 1s ease;
    }

    .waters-post .waters-post__image {
        max-width: 100%;
        height: 275px;
        width: 100%;
    }

    @media screen and (max-width: 1362px) {
        .waters-post .waters-post__image {
            height: 202px;
        }
    }

    @media screen and (max-width: 880px) {
        .waters-post .waters-post__image {
            height: 35vh;
        }
    }

        

        .waters-post .waters-post__image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.waters-load-more {
    cursor: pointer;
    /* position: absolute; 
    bottom: -25px;
    left: 0;
    right: 0;
    */
    background-color: #283D46;
    color: white;
    font-family: "TT Chocolates", Sans-serif;
    text-transform: uppercase;
    font-size: 0.875em;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 20px auto;
    display: inline-block;
    display: block;
    padding: 8px 0;
    text-align: center;
    width: 128px;
}

#waters-loading {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: none;
}

/* Shimmer Animation */
@keyframes placeholderShimmer {
    0% {
      background-position: -468px 0;
    }
  
    100% {
      background-position: 468px 0;
    }
  }
  
  .shimmer-animation {
    background-color: #FDF7F3;
    background-image: linear-gradient(
        to right,
        #FDF7F3 0%,
        #FFF3EB 20%,
        #FDF7F3 40%,
        #FDF7F3 100%
    );
    background-repeat: no-repeat;
    background-size: 800px 104px;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeholderShimmer;
    animation-timing-function: linear;
}

/* Fake Posts */
.fake-posts {
    display: none;
    position: relative;
}

.shimmer-animation.waters-post__image {
    background-size: 462px 353px;
}

.fake-posts.waters-post__title {
    height: 40px;
}

.fake-posts .waters-post:hover .waters-post__image::before {
    opacity: 0;
    transition: opacity 1s ease;
}

.fake-posts .taxonomy-bedrooms {
    height: 21px;
    width: 130px;
    background-size: 130px 21px;
}

.fake-posts .taxonomy-locations {
    width: 70px;
    height: 21px;
    background-size: 70px 21px;
}

.fake-posts .waters-post .waters-post__taxonomy {
    border-top: 1px solid #eeeeee;
}

.waters-no-results {
    background: #FDF7F3;
    text-align: center;
    padding: 10px;
}

    .waters-no-results__border {
        padding: 85px 25px;
        border: 1px solid rgba(179, 119, 82, 0.21);
    }

    .waters-no-results__message {
        font-family: "Butler", Sans-serif;
        color: #283D46;
        margin-bottom: 0px !important;
        font-size: 24px;
        font-weight: 300;
        line-height: 24px;
    }