.neomorphism-category-91-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.neomorphism-entry {
    width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 10px 10px 20px #d9d9d9, -10px -10px 20px #ffffff;
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
}

.neomorphism-entry:hover {
    transform: translateY(-5px);
}

.neomorphism-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.neomorphism-title {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.neomorphism-entry a {
    text-decoration: none;
    color: inherit;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .neomorphism-entry {
        width: calc(100% - 20px); /* Full width for mobile */
    }
}
