/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/


/* ÚLTIMO WIDGET DO SIDEBAR FIXO */
@media (min-width: 769px) {
 .site-content {
	 display: flex;
	}
	.inside-right-sidebar {
		height: 100%;
	}
	.inside-right-sidebar aside:last-child {
		position: -webkit-sticky;
		position: sticky;
		top: 100px;
	 }
}

/* BOTÃO DO SEARCH PADRÃO DO WORDPRESS */
/* Wrapper em flex para alinhar tudo */
.wp-block-search__inside-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%; 
    box-sizing: border-box;
}

/* Input adaptável */
.wp-block-search__input {
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-right: none;
    flex: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Botão */
.wp-block-search__button {
    height: 48px;
    padding: 0 20px;
    background-color: #611b03 !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
}

/* Ícone */
.wp-block-search__button svg {
    fill: #fff;
}
/* Mobile fix – impede estouro lateral */
@media (max-width: 480px) {
    .wp-block-search__inside-wrapper {
        width: 100%;
    }

    .wp-block-search__button {
        padding: 0 16px; /* reduz um pouco no mobile */
        height: 44px;    /* mais proporcional no mobile */
    }

    .wp-block-search__input {
        height: 44px; /* acompanha o botão */
    }
}

/* #BOTÃO DO SEARCH PADRÃO DO WORDPRESS */

.size-auto, .size-full, .size-large, .size-medium, .size-thumbnail{
	margin-bottom: 20px;
}