/* white you custom css code here. only css code will work */
/* Hide all 'See More' links within 'work-contents' */
.work-contents .case-btn {
    display: none !important; /* Using !important to ensure override if other styles conflict */
}

/* Disable clicking on the 'Product Showcase' link within 'work-contents' and change its color */
.work-contents .work-title a {
    pointer-events: none !important; /* Disables click events, using !important for strong override */
    /*color: #999 !important;  Changes color to indicate it's disabled, using !important */
    cursor: default !important; /* Changes cursor to default, indicating it's not clickable, using !important */
}

/* Disable clicking on the 'Product Showcase' link within 'work-contents' and change its color */
.work-contents .work-subtitle a {
    pointer-events: none !important; /* Disables click events, using !important for strong override */
    color: #999 !important; /* Changes color to indicate it's disabled, using !important */
    cursor: default !important; /* Changes cursor to default, indicating it's not clickable, using !important */
}

/* Hide all 'Explore' links */
.explore-btn {
    display: none !important; /* Hide all elements with the class 'explore-btn' */
}