.content-wrapper {
    position: relative;
}

.search-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #fff;
    transition: height 0.3s ease;
    z-index: 1000;
}

.search-active .search-box {
    height: 70px; /* Ajuste conforme necessário */
}

.featured-posts-wrapper,
.posts-wrapper {
    transition: transform 0.3s ease;
}

.search-active .featured-posts-wrapper,
.search-active .posts-wrapper {
    transform: translateY(70px); /* Deve corresponder à altura da search-box */
}

/* Mantenha os estilos existentes para .featured-post, etc. */

.search-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.search-form {
    display: flex;
    width: 100%;
}

.search-field {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-right: none;
    padding: 10px 15px;
    font-size: 16px;
    outline: none;
}

.search-submit {
    color: #877272;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 13px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.search-submit:hover {
    background-color: #f0f0f0;
}

.search-results {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.search-results .page-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.search-results article {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.search-results .entry-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.search-results .entry-summary {
    font-size: 16px;
    line-height: 1.6;
}

.search-results .posts-navigation {
    margin-top: 30px;
}

.search .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search .search-results {
    margin-top: 40px;
}

.search-results-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

body.search-results-page,
.search-results-wrapper {
    padding: 0;
    margin: 0;
    width: 100%;
}

.search-results-page .content-area,
.search-results-page .site-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.search-results-list {
    width: 100%;
    max-width: 1200px; /* ou o valor que você preferir */
    margin: 0 auto;
    padding: 20px;
}
