/* ==========================================================
   YOST - FOOTER
   ========================================================== */

.footerYost {
    width: 100%;
    padding: 48px 30px 28px;
    box-sizing: border-box;
    background: #181717;
    color: #fff;
}

.footerGridYost {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.footerColYost {
    min-width: 0;
}

.footerTitleYost {
    min-height: 30px;
    margin: 0 0 16px;
    padding: 0;
}

.footerTitleYost a {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
}

.footerTitleYost a:hover,
.footerTitleYost a:focus-visible {
    text-decoration: underline;
}

.footerListYost {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footerListYost li {
    position: relative;
    margin: 0;
    padding: 5px 0 5px 16px;
}

.footerListYost li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
}

.footerListYost a {
    color: #e8e8e8;
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
}

.footerListYost a:hover,
.footerListYost a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.footerBottomYost {
    width: 100%;
    max-width: 1200px;
    margin: 38px auto 0;
    padding-top: 24px;
    border-top: 1px solid #555;
    text-align: center;
}

.footerStatusYost {
    margin: 0 0 18px;
    padding: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.footerCookieYost {
    color: #e8e8e8;
    font-size: 14px;
    line-height: 1.5;
}

.footerCookieYost p {
    margin: 4px 0;
}

/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 900px) {

    .footerGridYost {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 30px;
    }
}

/* ==========================================================
   MOBILE
   ========================================================== */

@media screen and (max-width: 600px) {

    .footerYost {
        padding: 36px 22px 24px;
    }

    .footerGridYost {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footerTitleEmptyYost {
        display: none;
    }

    .footerBottomYost {
        margin-top: 30px;
    }
}