/*
Theme Name:   GeneratePress Child
Template:     generatepress
Version:      1.0.0
Author:       Miguel Oduber
Author URI:   https://activeview.io
Description:  GeneratePress child theme developed by Miguel Oduber - Activeview (activeview.io)
*/

/* ──────────────────────────────────────────
   Search hero — after header (home only)
────────────────────────────────────────── */
.site-search-hero {
    background: #f2f2f7;
    padding: 48px 20px;
    text-align: center;
}

.site-search-inner {
    max-width: 780px;
    margin: 0 auto;
}

/* pill wrapper */
.ssb-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    padding: 8px 8px 8px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    gap: 8px;
}

/* lupa */
.ssb-icon {
    display: flex;
    align-items: center;
    color: #888;
    flex-shrink: 0;
}

/* campo de texto */
.ssb-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    font-size: 16px;
    color: #222;
    padding: 6px 0;
    min-width: 0;
}

.ssb-input::placeholder {
    color: #aaa;
}

/* botão */
.ssb-btn {
    flex-shrink: 0;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.ssb-btn:hover {
    background: #333;
}

@media (max-width: 480px) {
    .ssb-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
}

/* ──────────────────────────────────────────
   Home: post featured image full width
────────────────────────────────────────── */
.home .post-image {
    margin-bottom: 16px;
}

.home .post-image img {
    width: 100%;
    height: auto;
    display: block;
}
