::deep .item-card {
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 450px;
    display: flex;
 
    flex-direction: column;
    cursor: pointer;
}

::deep .item-card * {
    cursor: pointer;
}

::deep .item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(66, 133, 244, 0.2);
}

.item-card{
    cursor:pointer !important;
}

::deep .item-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

::deep .item-title,
::deep .item-description,
.item-title,
.item-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

::deep .item-description,
.item-description {
    line-height: 1.4;
    max-height: calc(1.4em * 2);
}

::deep .view-details {
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor:pointer !important;
}

.card-media-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.card-overlay {
    position: absolute;
  
    bottom: 0;
    left: 0px;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 80%, transparent 100%);
    color: white;
    padding: 12px 16px;
    font-size: 0.875rem;
}

.card-overlay .mud-text {
    color: white !important;
}

.card-overlay .mud-icon {
    color: white !important;
}
