/* --- Blog Page Styles --- */

/* Blog section background override */
.blogs-section {
    background-color: var(--valley-mist);
}

/* Blog Filter Navigation (if used in future) */
.blog-filter {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 7rem;
    flex-wrap: wrap;
}

.filter-pill {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 12px 0;
    color: #999;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-pill::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background-color: var(--dzong-gold);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateX(-50%);
}

.filter-pill:hover,
.filter-pill.active {
    color: var(--mountain-dusk);
}

.filter-pill.active::after {
    width: 30px;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.page-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover,
.page-btn.active {
    background: var(--dzong-gold);
    color: white;
    border-color: var(--dzong-gold);
}
