.blog-search {
    width: 100%;
    text-align: center;
}

.blog-search-input {
    position: relative;
    color: black;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    overflow: hidden;
    background: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-search-input:focus {
    outline: 1px solid #d53e07;
}

.sort-filter-form {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
}

.filter {
    display: flex;
    gap: 10px;
    align-items: center;
}

.filter label {
    font-size: 16px;
}

.category-btn {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: black;
    background: none;
    padding: 2px 10px;
    border-radius: 18px;
    cursor: pointer;
}

.category-btn.active {
    background: #d53e07;
    color: white;
    border-color: #d53e07;
}

.sort {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sort label{
    font-size: 16px;
}

.sort-select {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2px 10px;
    border-radius: 18px;
}

.blog-article-link {
    display: flex;
    color: black;
    width: 100%;
    border-bottom: 1px solid rgb(199, 199, 199);
    text-decoration: none;
    transition: .3s;
}

.blog-article-link:hover {
    background-color: #f6f6f6;
    border-color: white;
}

.blog-article {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 20px 0;
}

.blog-article-title {
    color: #d53e07;
    font-size: 22px;
}

.blog-article-meta {
    display: flex;
    color: #838383;
    gap: 10px;
    font-size: 13px;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.pagination a, .pagination span {
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination a.active, .pagination a:hover {
    background-color: #d53e07;
    color: #fff;
}

.pagination-prev.disabled, .pagination-next.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}


@media (max-width: 1055px) {
    .sort-filter-form {
        flex-direction: column;
        gap: 20px;
    }
    .filter {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .sort {
        justify-content: center;
    }
}