.site-footer {
    position: relative;
    color: #fff;
}

.site-footer .wp-block-group {
    width: 100%;
}

.site-footer .is-layout-constrained:first-child {
    padding-block: 32px;
}

.site-footer .bg-footer {
    position: absolute;
    width: 100%;
    top: 0;
    height: 100%;
    z-index: -1;
}

.site-footer .custom-logo-link {
    max-width: 270px;
    display: block;
}

.site-footer .custom-logo-link img {
    width: 100%;
    height: auto;
}

.site-footer p {
    margin: 0;
    padding: 0;
}

.site-footer .site-info {
    /* display: grid;
    grid-template-columns: 1fr; */
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer .menu .menu-item a {
    color: #fff;
}

.site-footer .menu .menu-item.menu-item-has-children .sub-menu {
    display: none;
}

.site-footer .search-box {
    max-width: 250px;
}

.site-footer  .search-title {
    margin-bottom: 10px;
}

.site-footer .search-form {
    display: flex;
    align-items: center;
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 6px 12px;
    background: transparent;
}

.site-footer .search-submit {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    margin-right: 10px;
}

.site-footer .search-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.site-footer .search-input {
    border: none;
    background: transparent;
    color: #fff;
    outline: none;
    width: 100%;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
}

.site-footer .search-input::placeholder {
    color: #fff;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
    opacity: 0.8;
}

.site-footer .group-footer-social-search {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.site-footer .title {
    margin-bottom: 8px;
}

.widget-copyright {
    background-color: #000;
    padding: 12px;
}

@media( min-width: 992px ) {
    .site-footer .site-info {
       flex-wrap: nowrap;
    }
}