.single-category-card-row {
    .card {
        position: relative;
        margin-bottom: 25px;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease-in-out;
        background-color: #fff;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.1);
        
        &:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }
        
        .card__shadow--1 {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.15);
            transition: background-color 0.3s ease-in-out;
            z-index: 1;
        }
        
        &:hover .card__shadow--1 {
            background-color: rgba(0, 0, 0, 0.2);
        }

        .image__wrapper {
            position: relative;
            overflow: hidden;
        }

        img.card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
            
            &:hover {
                transform: scale(1.05);
            }
        }

        .card-body {
            padding: 15px;
            position: relative;
            z-index: 2;
        }

        a {
            color: inherit;
            text-decoration: none;
            
            &:hover {
                color: inherit;
            }

            h3.card-title {
                font-size: 1.15em;
                font-weight: 600;
                color: #333;
                margin-top: 10px;
                margin-bottom: 10px;
                line-height: 1.4;
                transition: color 0.3s ease;
                
                &:hover {
                    color: #007bff;
                }
            }

            p.card-description {
                font-size: 0.9em;
                color: #555;
                line-height: 1.5;
                margin-bottom: 0;
            }
        }
    }
}
