/* SEARCH */

main {
    margin-top: 4rem;

    .resultsText {
        padding: 4rem 1rem 0;
    }

    h2 {
        font-weight: 300;

        span {
            font-weight: 700;
        }
    }

    .search {
        margin: 8rem 1rem 0;
        max-width: 40rem;
        margin-left: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        width: calc(100% - 2rem);
        border-bottom: 1px solid var(--black);
    
        .sf-field-submit {
            display: none;
        }
    }
    
    form {
        width: 100%;
        position: relative;
    
        ul {
            display: flex;
            flex-direction: row;
            width: 100%;
    
            .sf-field-search {
                width: 100%;
                padding: 4px 0;
                label { width: 100%;}
            }
        }
    
        input,
        button {
            width: 100%;
            border: none;
            background-color: transparent;
            color: var(--black);
        }
    
        input {
            padding: 10px 0;
            
            &:focus {
                outline: none;
            }
    
            &::placeholder {
                color: var(--black);
                opacity: 1;
            }
            
            &::-ms-input-placeholder {
                color: var(--black);
            }
        }
    
        button {
            position: absolute;
            inset: 0 0 0 auto;
            width: fit-content;
            cursor: pointer;
        }
    }
}