#pbcategories a {
    padding: 1.5rem;
    border: 1px solid #cccccc;
    border-radius: 10px;
    position: relative;
    text-decoration: none;
    text-align: center;
    color: #181c1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    aspect-ratio: 2/1;
}

#pbcategories a:hover {
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.75);
}

#pbcategories a > img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    width: 100%;
    height: 100%;
}

#pbcategories a:has(> img)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    background-color: rgba(255, 255, 255, 0.65);
}

#pbcategories a > h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: bold;
}