/* Grid raspored - 3 kolone */
.bw-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bw-pages-grid a:hover {
    text-decoration: none;
}

/* Animacija */
.bw-page-item {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bw-page-item:hover {
    background-color: #fff;
    box-shadow: -10px 10px 15px 0 rgb(0 0 0 / 10%);
}

.bw-page-item.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Dugmad */
.bw-filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.bw-filter-btn {
    font-size: 1.2rem;
    font-weight: normal;
    padding: 5px 15px;
    background-color: #282828;
    color: #FFF;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.bw-filter-btn.active,
.bw-filter-btn:hover {
    background-color: #c09b80;
    color: #FFF;
    border-radius: 0;
    border: 0;
}

.bw-page-title {
    font-size: 1.8rem;
    font-weight: normal !important;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    padding: 10px;
    padding-bottom: 15px;
    margin: 0;
    color: #282827;
}

.bw-page-thumb img {
    width: 100%;
    min-height: 285px;
    height: auto;
}

@media (max-width: 768px) {
    .bw-pages-grid {
        display: block;
    }

    .bw-page-item {
        width: 100%;
    }

    .bw-page-thumb img {
        margin: 0 auto; 
        display: block;
    }
}
