.box {
    margin: 8px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #54C2B8;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    user-select: none;
}

.box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    /* Avoid interaction with the image */
}

.box:focus img {
    opacity: 1;
}

.box:focus {
    outline: 2px solid #007BFF;
}

.box .text {
    display: flex;
    justify-content: center;
    position: absolute;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.box:focus .text {
    opacity: 0;
}

.row {
    display: flex;
    justify-content: center;
}

@media (max-width: 1023px) {
    #desktop{
        display: none;
    }
}
@media (min-width: 1024px) {
    #mobile{
        display: none;
    }
}


.title-mobile{
    font-size: 20px !important;
    padding: 6px;
}