@charset "UTF-8";

.search-results-item-title a {
    font-size: 1.25rem;
    text-decoration: none !important;
    font-weight:800;
}

.search-results-item-title a:hover {
    text-decoration: underline !important;
}

.search-results-item-url {
    font-style: italic;
    font-size: 0.875rem;
    opacity:0.5;
}

.search-results-item-description {
    word-break: break-word;
}

.container-search {
    background-color: #eeeeee;
    margin: 0 0 5rem 0;
    padding: 4rem 0 0 0;
    background-image: url(https://ph-wp2.clientsmaker.com/wp-content/uploads/2025/10/fern-dddddd.svg);
    background-size: cover;
    background-position: center;
}

@media (max-width: 991px) {
    .search-form {width:100%;}
}

.search-form {
    width:50%;
    margin-bottom:3rem;
}

.search-form form {
    display: flex;
    gap: 0.5rem;
    background: var(--white);
    border-radius: 10rem;
    padding: 2px;
    flex-wrap: nowrap;
    justify-content: center;
}

.search-form input[type="text"] {
    margin: 0;
    width: 100%;
    border-radius: 3px;
    border: none;
    background: #fff;
    color: #161616;
    padding: 1.125rem 1.5rem 1.125rem 1.5rem !important;
    font-size: 1rem;
    border-radius: 10rem;
    letter-spacing: 0.0125rem;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    line-height: 1;
}

.search-form input[type="submit"] {
    display: inline-block;
    font-family: "Mulish", sans-serif;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: var(--blue);
    border: 2px solid var(--blue);
    padding: 1rem 1.5rem 1rem 1.5rem !important;
    font-size: 1rem;
    border-radius: 10rem;
    transition: color .15s, background-color .15s, border-color .15s, box-shadow .15s;
    line-height: 1;
    white-space: nowrap;
}

.search-form input[type="submit"]:hover {
    color: var(--black);
    border: 2px solid var(--black);
    background: none;
}

.search-term-select {
    display: flex;
    flex-direction: row;
    gap:1rem;
}

.search-term-select a {
    font-size:1.125rem;
    padding: .5rem;
    font-weight: 700;
    position: relative;
    text-decoration: none;
    padding-bottom:30px;
    text-align:center;
    transition: all 0.2s;
}

.search-term-select a::after{
    background: var(--blue);
    height: 8px;
    width: 100%;
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    transition: all 0.2s;
    opacity: 0;
}

@media (max-width: 991px) {
    .search-term-select a {
        font-size:1rem;
        line-height:1.4;
    }
}

.search-term-select a.active, .search-term-select a:hover {
    color:var(--blue);
}

.search-term-select a:hover::after{
    background: var(--blue);
    height: 8px;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
    opacity:1;
}

.search-term-select a.active::after {
    background: var(--blue);
    height: 8px;
    width: 100%;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    transition: all 0.2s;
    opacity:1;
}

.pagination .nav-links {
    display: flex;
    gap: 0.5rem;
}