.content-box {
    background-color: #000 !important;
    padding: 0.625rem 0.5rem;
    margin: 0;
}

.search-box {
    padding: 2.5rem;
    background-color: #1a1a1a;
    border-radius: 0.4375rem;
    box-shadow: 0 0.625rem 1.5625rem rgba(0, 0, 0, 0.08);
    margin: 0 0 0.625rem 0;
}

.search-box__input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
    border: 0;
    border-radius: 0.75rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.search-box__input:focus {
    border-color: #4285f4;
}

.type_button {
    width: 100% !important;
    font-weight: 600;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #bdbdbd !important;
    padding: 1.25rem;
}

.button-link {
    width: 45%;
    background-color: #2c2c2c;
    border-radius: 0.4375rem;
    margin: auto;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.button-link:hover {
    background: #6e4f6f;
    color: #fcd5fd;
}

.search-box.search-type {
    padding: 1.8rem !important;
    display: flex !important;
    flex-direction: row !important;
}

.search-box__filters {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 1.25rem;
}

.search-box__filter-button {
    flex: 1;
    min-width: 6.875rem;
    padding: 0.75rem 1rem;
    text-align: center;
    font-weight: 600;
    background-color: #2c2c2c;
    border: none;
    border-radius: 0.4375rem;
    font-size: 1rem;
    cursor: pointer;
    color: #bdbdbd;
    transition: background-color 0.3s, color 0.3s;
}

.search-box__filter-button:hover {
    background: #6e4f6f;
    color: #fcd5fd;
}

.search-box__filter-button.selected-btn,
.button-link.selected-btn {
    background: #6e4f6f;
    color: #fcd5fd;
}

.search-box__filter-button.selected-btn:hover {
    background: #816c82;
    color: #fff;
}

.search-box__results-label {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 48rem) {
    .content-box {
        width: 100% !important;
        padding: 0 !important;
    }

    .articles-list {
        padding: 0 0.9375rem;
    }

    .result-title-box,
    .search-box {
        border-radius: 0 !important;
    }
}
