/* ARACNET — Recherche / archives. */
.search-page {
    padding: 38px 0 70px;
}

.search-page__head {
    max-width: 760px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--ink);
}

.search-page__head span {
    color: var(--faint);
    font-size: .57rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.search-page__head h1 {
    margin-top: 6px;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -.04em;
}

.search-page__form {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid var(--ink);
}

.search-page__form input {
    border: 0;
    outline: 0;
    background: transparent;
    padding: 10px 0;
    font-size: .85rem;
}

.search-page__form button {
    border: 0;
    background: transparent;
    padding: 0 4px;
    font-size: .62rem;
    cursor: pointer;
}

.search-page__results {
    max-width: 820px;
    margin-top: 28px;
}

.search-page__item {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 14px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.search-page__item h2 {
    font-size: .86rem;
    line-height: 1.22;
    font-weight: 590;
}

.search-page__item p {
    margin-top: 4px;
    color: var(--muted);
    font-size: .66rem;
    line-height: 1.45;
}

@media (max-width: 600px) {
    .search-page__item {
        grid-template-columns: 1fr;
    }
}
